Paste #107568: Unnamed Server Log Paste

Date: 2023/03/19 02:47:12 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[08:10:39] [ServerMain/INFO]: Building unoptimized datafixer
[08:10:42] [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'
[08:10:46] [ServerMain/INFO]: Loaded 7 recipes
[08:10:47] [Server thread/INFO]: Starting minecraft server version 1.19.3
[08:10:47] [Server thread/INFO]: Loading properties
[08:10:47] [Server thread/INFO]: This server is running Pufferfish version git-Pufferfish-61 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 47c34ca on HEAD)
[08:10:47] [Server thread/INFO]: Server Ping Player Sample Count: 12
[08:10:47] [Server thread/INFO]: Using 4 threads for Netty based IO
[08:10:47] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[08:10:48] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[08:10:48] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[08:10:48] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[08:10:48] [Server thread/WARN]: [Pufferfish] Debug: Java: 17.0.6, test run: true
[08:10:48] [Server thread/INFO]: Default game type: SURVIVAL
[08:10:48] [Server thread/INFO]: Generating keypair
[08:10:48] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25579
[08:10:48] [Server thread/INFO]: Using epoll channel type
[08:10:48] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[08:10:48] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[08:10:48] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'DeluxeMenus' for files 'plugins/DeluxeMenus-1.13.6-Release.jar' and 'plugins/DeluxeMenus-1.13.6-Release (2).jar' in 'plugins'
[08:10:49] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[08:11:00] [Server thread/WARN]: Legacy plugin StrikePractice v3.6.3-SNAPSHOT does not specify an api-version.
[08:11:00] [Server thread/WARN]: Legacy plugin SuperbVote v0.5.2-1.12 does not specify an api-version.
[08:11:01] [Server thread/WARN]: Legacy plugin HealOnKill v1.2 does not specify an api-version.
[08:11:01] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.1
[08:11:01] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.1 is now loaded. Registering protocol transformers and injecting...
[08:11:02] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[08:11:02] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[08:11:02] [Server thread/INFO]: [ViaBackwards] Loading translations...
[08:11:02] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[08:11:02] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.55
[08:11:03] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[08:11:03] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.5.0
[08:11:04] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4ef078f6]
[08:11:04] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b612
[08:11:06] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[08:11:06] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.2
[08:11:06] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.6.1
[08:11:06] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[08:11:06] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.30-SNAPSHOT (build 2895)
[08:11:06] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[08:11:06] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+41-4dc994d
[08:11:06] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v14.2.4
[08:11:06] [Server thread/INFO]: [StrikePractice] Loading server plugin StrikePractice v3.6.3-SNAPSHOT
[08:11:06] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.1
[08:11:06] [Server thread/INFO]: [ActionHealth] Loading server plugin ActionHealth v3.5.8
[08:11:06] [Server thread/INFO]: [SuperbVote] Loading server plugin SuperbVote v0.5.2-1.12
[08:11:06] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.6-Release
[08:11:06] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[08:11:06] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[08:11:06] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[08:11:06] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 52c
[08:11:06] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.1
[08:11:06] [Server thread/INFO]: [zItemStacker] Loading server plugin zItemStacker v1.0.2.2
[08:11:06] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.14
[08:11:06] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.7.9
[08:11:06] [Server thread/INFO]: [HealOnKill] Loading server plugin HealOnKill v1.2
[08:11:06] [Server thread/INFO]: [Exyron-FastCrystals] Loading server plugin Exyron-FastCrystals v1.0
[08:11:06] [Server thread/INFO]: [AntiCombatLog] Loading server plugin AntiCombatLog v2.2.7
[08:11:06] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.2.1
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.6.6
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[08:11:06] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[08:11:06] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.7.1
[08:11:07] [Server thread/INFO]: [GadgetsMenu] Loading server plugin GadgetsMenu v4.7.10
[08:11:07] [Server thread/INFO]: [JPremium] Loading server plugin JPremium vCLEARED-Backend-1.16.2
[08:11:15] [Server thread/INFO]: [JPremium] [STDOUT]  Downloaded from https://directleaks.to 
[08:11:15] [Server thread/WARN]: Nag author(s): '[Jakubson]' of 'JPremium' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[08:11:15] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.30
[08:11:15] [Server thread/INFO]: [ChatManager] Loading server plugin ChatManager v3.7.7
[08:11:15] [Server thread/INFO]: [JSEngine] Loading server plugin JSEngine v3.1.1
[08:11:15] [Server thread/INFO]: [SnowballKB] Loading server plugin SnowballKB v1.0-SNAPSHOT
[08:11:15] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[08:11:15] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.55
[08:11:16] [Server thread/INFO]:         __    
[08:11:16] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.55
[08:11:16] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[08:11:16] [Server thread/INFO]: 
[08:11:16] [Server thread/INFO]: [LuckPerms] Loading configuration...
[08:11:17] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[08:11:18] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[08:11:18] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[08:11:18] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3776ms)
[08:11:18] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[08:11:19] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[08:11:19] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[08:11:19] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[08:11:19] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[08:11:19] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.0
[08:11:19] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[08:11:19] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[08:11:19] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[08:11:19] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[08:11:19] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[08:11:21] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] You are using a snapshot or a custom version of FAWE. This is not an official build distributed via https://www.spigotmc.org/resources/13932/
[08:11:21] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b612
[08:11:21] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.1.1
[08:11:21] [Server thread/INFO]: [JSEngine] JSEngine version 3.1.1 is Enabled
[08:11:21] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[08:11:21] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[08:11:21] [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.
[08:11:21] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[08:11:21] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[08:11:21] [Server thread/INFO]: Preparing level "spawn"
[08:11:22] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[08:11:22] [Server thread/INFO]: Time elapsed: 278 ms
[08:11:22] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.1
[08:11:22] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[08:11:23] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[08:11:23] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[08:11:23] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[08:11:23] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[08:11:23] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[08:11:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[08:11:23] [Server thread/INFO]: [WorldGuard] Loading region data...
[08:11:23] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[08:11:24] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[08:11:24] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.6.1
[08:11:24] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[08:11:24] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[08:11:24] [Server thread/INFO]: [Multiverse-Core] ?aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lobby_nether
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lobby_the_end
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: TheBridge-1
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: TheBridge-2
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: TheBridge-3
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/INFO]: Could not set generator for world 'pvpmaps': Plugin 'VoidGen' does not exist
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: pvpmaps
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: TheBridge-4
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arenaworld
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby
[08:11:24] [Server thread/INFO]: Time elapsed: 148 ms
[08:11:24] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is PERMITTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] (lobby) Fire spread is UNRESTRICTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/INFO]: Could not set generator for world 'spawn': Plugin 'VoidGen' does not exist
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn_the_end
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: crates
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: pvp_nether
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: pvp_the_end
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[08:11:24] [Server thread/INFO]: [WorldGuard] (parkour) TNT ignition is PERMITTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] (parkour) Lighters are PERMITTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] (parkour) Lava fire is PERMITTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] (parkour) Fire spread is UNRESTRICTED.
[08:11:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'parkour'
[08:11:24] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[08:11:24] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[08:11:24] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[08:11:24] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2895)
[08:11:24] [Server thread/INFO]: [Citizens] Loading external libraries
[08:11:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[08:11:25] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[08:11:25] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[08:11:25] [Server thread/INFO]: [Votifier] Loaded token for website: default
[08:11:26] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[08:11:26] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[08:11:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+41-4dc994d
[08:11:26] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:25600.
[08:11:26] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[08:11:26] [Server thread/INFO]: [Essentials] No kits found to migrate.
[08:11:27] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[08:11:27] [Server thread/INFO]: [Essentials] Using locale en_US
[08:11:27] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[08:11:27] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[08:11:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[08:11:27] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[08:11:27] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.4
[08:11:27] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_19_R2, using MappingSpigotSkinRefresher.
[08:11:27] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[08:11:27] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[08:11:27] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[08:11:27] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[08:11:27] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[08:11:27] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[08:11:27] [Server thread/INFO]: [StrikePractice] Enabling StrikePractice v3.6.3-SNAPSHOT*
[08:11:34] [Server thread/INFO]: ---------------------------------
[08:11:34] [Server thread/INFO]: Copied default config with comments to plugins/StrikePractice/default_config_with_comments_do_not_edit.yml
[08:11:34] [Server thread/INFO]: ---------------------------------
[08:11:34] [Server thread/ERROR]: Cannot load plugins/StrikePractice/messages.yml
org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
 in 'reader', line 1, column 1:
    English:
    ^
expected <block end>, but found '<block mapping start>'
 in 'reader', line 15, column 3:
      ranked-anyone: '&a ? searching f ... 
      ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:106) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:306) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at ga.strikepractice.a.A(FileManager.kt:64) ~[Strikepractice-3.6.3.jar:?]
    at ga.strikepractice.StrikePractice.onEnable(StrikePractice.java:220) ~[Strikepractice-3.6.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:310) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-61]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping
 in 'reader', line 1, column 1:
    English:
    ^
expected <block end>, but found '<block mapping start>'
 in 'reader', line 15, column 3:
      ranked-anyone: '&a ? searching f ... 
      ^

    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:559) ~[snakeyaml-1.33.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[08:11:34] [Server thread/WARN]: ga.strikepractice.nms.NMS_1_19_R2
[08:11:34] [Server thread/WARN]: StrikePractice >> No version specific support found (1_19_R2)! Using compatibility mode. Please report all version related issues.
[08:11:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: strikepractice [3.6.3-SNAPSHOT]
[08:11:34] [Server thread/INFO]: Player practice commands registered: night, day, sun, report, ping, practicecommands
[08:11:34] [Server thread/INFO]: Preparing start region for dimension minecraft:arenas
[08:11:34] [Server thread/INFO]: Time elapsed: 314 ms
[08:11:34] [Server thread/INFO]: [WorldGuard] (Arenas) TNT ignition is PERMITTED.
[08:11:34] [Server thread/INFO]: [WorldGuard] (Arenas) Lighters are PERMITTED.
[08:11:34] [Server thread/INFO]: [WorldGuard] (Arenas) Lava fire is PERMITTED.
[08:11:34] [Server thread/INFO]: [WorldGuard] (Arenas) Fire spread is UNRESTRICTED.
[08:11:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arenas'
[08:11:34] [Server thread/WARN]: Download BadlionClientTimerAPI to support cooldowns for BAC. https://github.com/BadlionNetwork/BadlionClientTimerAPI/releases
[08:11:34] [Server thread/WARN]: Failed to enable module for lunar client cooldowns. 
[08:11:34] [Server thread/INFO]: Scoreboard delay: 20, lobby: 100, syncSet: true
[08:11:35] [Server thread/INFO]: [StrikePractice] Preloading recorded matches in async thread...
[08:11:36] [Server thread/INFO]: Preparing start region for dimension minecraft:arenas_1
[08:11:38] [Server thread/INFO]: Time elapsed: 1963 ms
[08:11:38] [Server thread/INFO]: [WorldGuard] (Arenas_1) TNT ignition is PERMITTED.
[08:11:38] [Server thread/INFO]: [WorldGuard] (Arenas_1) Lighters are PERMITTED.
[08:11:38] [Server thread/INFO]: [WorldGuard] (Arenas_1) Lava fire is PERMITTED.
[08:11:38] [Server thread/INFO]: [WorldGuard] (Arenas_1) Fire spread is UNRESTRICTED.
[08:11:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arenas_1'
[08:11:38] [Server thread/INFO]: Copied 16 arenas to the new world.
[08:11:38] [Server thread/INFO]: Copied the worlds and the arenas in 3173 ms.
[08:11:39] [Server thread/INFO]: Preparing start region for dimension minecraft:arenas_2
[08:11:40] [Server thread/INFO]: Time elapsed: 101 ms
[08:11:40] [Server thread/INFO]: [WorldGuard] (Arenas_2) TNT ignition is PERMITTED.
[08:11:40] [Server thread/INFO]: [WorldGuard] (Arenas_2) Lighters are PERMITTED.
[08:11:40] [Server thread/INFO]: [WorldGuard] (Arenas_2) Lava fire is PERMITTED.
[08:11:40] [Server thread/INFO]: [WorldGuard] (Arenas_2) Fire spread is UNRESTRICTED.
[08:11:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arenas_2'
[08:11:40] [Server thread/INFO]: Copied 16 arenas to the new world.
[08:11:40] [Server thread/INFO]: Copied the worlds and the arenas in 1893 ms.
[08:11:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: strikepractice [3.6.3-SNAPSHOT]
[08:12:00] [ForkJoinPool.commonPool-worker-1/INFO]: Deleted 1 matches (older than 7.0 days)
[08:12:00] [ForkJoinPool.commonPool-worker-1/INFO]: Preloaded 2415 matches in 25 seconds.
[08:12:02] [Server thread/INFO]: Arenas_2:nethpot (ffa arena) has kit nethpot
[08:12:02] [Server thread/INFO]: Arenas_1:cartpvp (ffa arena) has kit cartpvp
[08:12:02] [Server thread/INFO]: Arenas_2:smp (ffa arena) has kit smpkit
[08:12:02] [Server thread/INFO]: tank (ffa arena) has kit tank
[08:12:02] [Server thread/INFO]: diapot (ffa arena) has kit diapot
[08:12:02] [Server thread/INFO]: Arenas_1:axe (ffa arena) has kit axe
[08:12:02] [Server thread/INFO]: Arenas_1:smp (ffa arena) has kit smpkit
[08:12:02] [Server thread/INFO]: Arenas_2:cartpvp (ffa arena) has kit cartpvp
[08:12:02] [Server thread/INFO]: Arenas_1:cpvp (ffa arena) has kit cpvp
[08:12:02] [Server thread/INFO]: Arenas_2:axe (ffa arena) has kit axe
[08:12:02] [Server thread/INFO]: Arenas_1:nethpot (ffa arena) has kit nethpot
[08:12:02] [Server thread/INFO]: nethpot (ffa arena) has kit nethpot
[08:12:02] [Server thread/INFO]: cartpvp (ffa arena) has kit cartpvp
[08:12:02] [Server thread/INFO]: Arenas_1:tank (ffa arena) has kit tank
[08:12:02] [Server thread/INFO]: cpvp (ffa arena) has kit cpvp
[08:12:02] [Server thread/INFO]: Arenas_2:diapot (ffa arena) has kit diapot
[08:12:02] [Server thread/INFO]: Arenas_2:tank (ffa arena) has kit tank
[08:12:02] [Server thread/INFO]: Arenas_1:diapot (ffa arena) has kit diapot
[08:12:02] [Server thread/INFO]: Arenas_2:cpvp (ffa arena) has kit cpvp
[08:12:02] [Server thread/INFO]: smp (ffa arena) has kit smpkit
[08:12:02] [Server thread/INFO]: axe (ffa arena) has kit axe
[08:12:02] [Server thread/WARN]: Failed to add automatic-events.brackets-kit in event kit selector
[08:12:02] [Server thread/WARN]: Failed to add automatic-events.lms-kit in event kit selector
[08:12:02] [Server thread/INFO]: Enabled (experimental) report replays. Disable with disable-report-replay: true
[08:12:02] [Server thread/INFO]: StrikePractice >> Performance mode enabled!
[08:12:02] [Server thread/INFO]: [StrikePractice] StrikePractice was enabled in 28377 ms.
[08:12:06] [Server thread/INFO]: [StrikePractice] [STDOUT]  Downloaded from https://directleaks.to 
[08:12:06] [Server thread/WARN]: Nag author(s): '[Toppe5]' of 'StrikePractice' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[08:12:06] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.1
[08:12:06] [Server thread/INFO]: [ActionHealth] Enabling ActionHealth v3.5.8
[08:12:06] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.2-1.12*
[08:12:06] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[08:12:06] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[08:12:06] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[08:12:06] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: requirements_menu already exists for another menu!
Skipping menu: requirements_menu
[08:12:06] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[08:12:06] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[08:12:06] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[08:12:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-Release]
[08:12:06] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[08:12:06] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[08:12:06] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[08:12:06] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52c
[08:12:06] [Server thread/INFO]: [UltimateAutoRestart] Build 52c, a free resource by Norska - Thanks for downloading!
[08:12:06] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[08:12:07] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.1
[08:12:12] [Server thread/INFO]: DungeonPVP ?  Successfully downloaded 12 languages from the cloud!
[08:12:12] [Server thread/INFO]: DungeonPVP ?  Loading EZColors v2.2.1!
[08:12:12] [Server thread/INFO]: DungeonPVP ?  Found a compatible version. Hooking into V1_19_R2!
[08:12:12] [Server thread/INFO]: DungeonPVP ?  Using HIGHEST as the Chat Listener.
[08:12:12] [Server thread/INFO]: DungeonPVP ?  Found PlaceholderAPI. Loading hook!
[08:12:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ezcolors [1.0.0]
[08:12:12] [Server thread/INFO]: DungeonPVP ?  Successfully Loaded EZColors v2.2.1 in 5547ms!
[08:12:12] [Server thread/INFO]: [zItemStacker] Enabling zItemStacker v1.0.2.2
[08:12:12] [Server thread/INFO]: [zItemStacker v1.0.2.2] === ENABLE START ===
[08:12:12] [Server thread/INFO]: [zItemStacker v1.0.2.2] Plugin Version V1.0.2.2
[08:12:13] [Server thread/INFO]: [zItemStacker v1.0.2.2] /home/container/plugins/zItemStacker/items.json loaded successfully !
[08:12:13] [Server thread/INFO]: [zItemStacker v1.0.2.2] /home/container/plugins/zItemStacker/config.json loaded successfully !
[08:12:13] [Server thread/INFO]: [zItemStacker v1.0.2.2] /home/container/plugins/zItemStacker/lang.json loaded successfully !
[08:12:13] [Server thread/INFO]: [zItemStacker v1.0.2.2] Loading 1 commands
[08:12:13] [Server thread/INFO]: [zItemStacker v1.0.2.2] === ENABLE DONE (668ms) ===
[08:12:13] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.14
[08:12:13] [Server thread/INFO]: [NametagEdit] Successfully loaded using bukkit version: v1_19_R2
[08:12:13] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[08:12:13] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.9
[08:12:13] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[08:12:13] [Server thread/INFO]: [HealOnKill] Enabling HealOnKill v1.2*
[08:12:13] [Server thread/INFO]: [Exyron-FastCrystals] Enabling Exyron-FastCrystals v1.0
[08:12:13] [Server thread/INFO]: [AntiCombatLog] Enabling AntiCombatLog v2.2.7
[08:12:13] [Server thread/INFO]: [AntiCombatLog] Starting AntiCombatLog V.2.2.7 by Badbird5907
[08:12:13] [Server thread/INFO]: [AntiCombatLog] Enabling plugin hooks...
[08:12:13] [Server thread/INFO]: [AntiCombatLog] Finished initializing AntiCombatLog (took 25 ms.)
[08:12:13] [Server thread/INFO]: [TAB] Enabling TAB v3.2.1
[08:12:13] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[08:12:13] [Server thread/INFO]: [TAB] Loaded NMS hook in 22ms
[08:12:13] [Server thread/INFO]: [TAB] Unlimited nametag mode is enabled as well as invisible nametags. These 2 options are mutually exclusive.
[08:12:13] [Server thread/INFO]: [TAB] If you want nametags to be invisible, you don't need unlimited nametag mode at all.
[08:12:13] [Server thread/INFO]: [TAB] If you want enhanced nametags without limits, making them invisible would defeat the purpose.
[08:12:13] [Server thread/INFO]: [TAB] Enabled in 139ms
[08:12:13] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.6
[08:12:14] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[08:12:14] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[08:12:14] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[08:12:14] [Server thread/INFO]: [ajLeaderboards] The columns already exist for superbvote_votes. Canceling updater and bumping DB version.
[08:12:14] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
[08:12:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.6]
[08:12:14] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[08:12:14] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[08:12:14] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.6 by ajgeiss0702 enabled!
[08:12:14] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.1
[08:12:15] [Server thread/INFO]: [Vulcan] Server Version: 1.19.3 detected!
[08:12:15] [Server thread/INFO]: [Vulcan] BStats enabled!
[08:12:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.1]
[08:12:15] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[08:12:15] [Server thread/INFO]: [GadgetsMenu] Enabling GadgetsMenu v4.7.10
[08:12:15] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[08:12:15] [Server thread/INFO]: [GadgetsMenu]        GadgetsMenu [Free] 4.7.10 is loading...
[08:12:15] [Server thread/INFO]: [GadgetsMenu]        [server: git-Pufferfish-61 (MC: 1.19.3)]
[08:12:15] [Server thread/INFO]: [GadgetsMenu]                  Running Java 17.0.6
[08:12:15] [Server thread/INFO]: [GadgetsMenu]                Plugin by Yap Zhen Yie.
[08:12:15] [Server thread/INFO]: [GadgetsMenu]             Date Modified: 31 January 2023
[08:12:15] [Server thread/INFO]: [GadgetsMenu]                            
[08:12:15] [Server thread/INFO]: [GadgetsMenu]              Initializing module v1_19_R2
[08:12:15] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[08:12:17] [Server thread/INFO]: [GadgetsMenu] Connecting to SQLite database...
[08:12:17] [Server thread/INFO]: [GadgetsMenu] Successfully connected to SQLite database!
[08:12:17] [Server thread/INFO]: [GadgetsMenu] Enabled Mystery Vault individual hologram.
[08:12:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gadgetsmenu [1.0.2]
[08:12:17] [Server thread/INFO]: [GadgetsMenu] [Placeholder] PlaceholderAPI hooked.
[08:12:17] [Server thread/INFO]: [JPremium] Enabling JPremium vCLEARED-Backend-1.16.2
[08:12:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: JPremium [SpigotVersion]
[08:12:17] [Server thread/INFO]: [spark] Enabling spark v1.10.30
[08:12:17] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[08:12:17] [Server thread/INFO]: [spark] Starting background profiler...
[08:12:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.30]
[08:12:18] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[08:12:18] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.7.7
[08:12:18] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.11.2
[08:12:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatmanager [3.7.7]
[08:12:18] [Server thread/INFO]: [ChatManager] Hooked into: Essentials v2.20.0-dev+41-4dc994d
[08:12:18] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.3-b131
[08:12:18] [Server thread/INFO]: [ChatManager] Hooked into: LuckPerms v5.4.55
[08:12:18] [Server thread/INFO]: [ChatManager] Plugin is up to date - v3.7.7
[08:12:18] [Server thread/INFO]: [ChatManager] Starting Metrics.
[08:12:18] [Server thread/INFO]: =========================
[08:12:18] [Server thread/INFO]: Chat Manager
[08:12:18] [Server thread/INFO]: Version 3.7.7
[08:12:18] [Server thread/INFO]: Author: H1DD3NxN1NJA
[08:12:18] [Server thread/INFO]: =========================
[08:12:18] [Server thread/INFO]: [SnowballKB] Enabling SnowballKB v1.0-SNAPSHOT
[08:12:18] [Server thread/INFO]: [SnowballKB] SnowballKB enabled
[08:12:19] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[08:12:19] [Server thread/INFO]: Running delayed init tasks
[08:12:19] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[08:12:19] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
[08:12:19] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[08:12:19] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[08:12:19] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[08:12:19] [Craft Scheduler Thread - 15 - GadgetsMenu/INFO]: [GadgetsMenu] Checking for updates...
[08:12:19] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[08:12:19] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 11 holograms!
[08:12:19] [Craft Scheduler Thread - 17 - Vault/INFO]: [Vault] Checking for Updates ... 
[08:12:19] [Craft Scheduler Thread - 15 - GadgetsMenu/INFO]: [GadgetsMenu] No update was found, you are running the latest version.
[08:12:19] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[08:12:19] [User Authenticator #11/INFO]: UUID of player Sh4rpn3ss_ is 0550dfdd-ca34-3b71-b81c-47d5691ce166
[08:12:19] [User Authenticator #7/INFO]: UUID of player SebbieWebble is bcf4eb5e-a410-34d8-ac2d-0712ff46da29
[08:12:19] [User Authenticator #15/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:12:19] [User Authenticator #8/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:12:19] [User Authenticator #12/INFO]: UUID of player GAMER_40_5 is f662d0a2-dcde-3aa6-acb6-80ca1c548ebc
[08:12:19] [User Authenticator #9/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:12:19] [User Authenticator #1/INFO]: UUID of player User is d9339978-2cae-306d-8225-4c6cc63aea77
[08:12:19] [User Authenticator #3/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:12:19] [User Authenticator #5/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:12:19] [User Authenticator #10/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:12:19] [User Authenticator #4/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:12:19] [User Authenticator #6/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:12:19] [User Authenticator #0/INFO]: UUID of player Sh4rpn3ss_ is 0550dfdd-ca34-3b71-b81c-47d5691ce166
[08:12:19] [User Authenticator #13/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:12:19] [User Authenticator #14/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:12:19] [Craft Scheduler Thread - 9 - SkinsRestorer/WARN]: [SkinsRestorer] Failed to get release info from api.github.com. 
 If this message is repeated a lot, please see http://skinsrestorer.net/firewall
[08:12:19] [Craft Scheduler Thread - 17 - Vault/INFO]: [Vault] No new version available
[08:12:19] [Craft Scheduler Thread - 8 - Essentials/WARN]: [Essentials] You're 4 EssentialsX dev build(s) out of date!
[08:12:19] [Craft Scheduler Thread - 8 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[08:12:20] [User Authenticator #2/INFO]: UUID of player FAHIMGAMING854 is 8dcb1ad2-8fc1-316e-a71e-aaf8c1b4c9b4
[08:12:20] [Craft Scheduler Thread - 10 - zItemStacker/INFO]: [zItemStacker v1.0.2.2] New update available. Your version: 1.0.2.2, latest version: 1.0.3.0
[08:12:20] [Craft Scheduler Thread - 10 - zItemStacker/INFO]: [zItemStacker v1.0.2.2] Download plugin here: https://groupez.dev/resources/15
[08:12:20] [Server thread/INFO]: [Citizens] Loaded 159 NPCs.
[08:12:20] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.3) is available at:
[08:12:20] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[08:12:20] [Server thread/INFO]: Done (93.181s)! For help, type "help"
[08:12:20] [Server thread/INFO]: Timings Reset
[08:12:20] [User Authenticator #2/INFO]: UUID of player Raider_op_gamer is 4d1c126a-bcc4-35aa-be4f-21610ddf658a
[08:12:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@38634ec[id=8dcb1ad2-8fc1-316e-a71e-aaf8c1b4c9b4,name=FAHIMGAMING854,properties={},legacy=false] (/182.54.152.61:46016) lost connection: Disconnected
[08:12:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@37686036[id=0550dfdd-ca34-3b71-b81c-47d5691ce166,name=Sh4rpn3ss_,properties={textures=[com.mojang.authlib.properties.Property@6728d183]},legacy=false] (/223.191.3.141:46010) lost connection: Disconnected
[08:12:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@da26910[id=d9339978-2cae-306d-8225-4c6cc63aea77,name=User,properties={textures=[com.mojang.authlib.properties.Property@50012a9d]},legacy=false] (/106.193.214.7:46028) lost connection: Disconnected
[08:12:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@8e79c35[id=8ecd399e-bd65-3ccf-97cd-1cb4400b168b,name=PronitXpro,properties={textures=[com.mojang.authlib.properties.Property@284f684]},legacy=false] (/103.47.17.126:43182) lost connection: Disconnected
[08:12:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@2cfb860a[id=f662d0a2-dcde-3aa6-acb6-80ca1c548ebc,name=GAMER_40_5,properties={textures=[com.mojang.authlib.properties.Property@1abbe2b1]},legacy=false] (/117.194.234.34:54844) lost connection: Disconnected
[08:12:21] [Server thread/WARN]: Some StrikePractice features might not work due to ViaVersion!
[08:12:21] [Netty Epoll Server IO #0/WARN]: [HolographicDisplays] Unexpected error while modifying the channel pipeline.
java.util.NoSuchElementException: packet_handler
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:248) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:237) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$injectPacketListener$0(VersionNMSManager.java:80) ~[HolographicDisplays (1).jar:?]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$modifyPipeline$2(VersionNMSManager.java:108) ~[HolographicDisplays (1).jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[08:12:21] [Server thread/INFO]: PronitXpro lost connection: Disconnected
[08:12:21] [ForkJoinPool.commonPool-worker-5/INFO]: Loaded PronitXpro's data in 116 ms.
[08:12:21] [Server thread/INFO]: PronitXpro left the game
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@441fca98[id=00915d80-8025-3d36-ad6f-1d82e2857ca2,name=BlueBell721,properties={textures=[com.mojang.authlib.properties.Property@55a82c35]},legacy=false] (/27.0.177.20:43190) lost connection: Disconnected
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@792b7721[id=00915d80-8025-3d36-ad6f-1d82e2857ca2,name=BlueBell721,properties={textures=[com.mojang.authlib.properties.Property@21312b03]},legacy=false] (/27.0.177.20:54824) lost connection: Disconnected
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@27839c07[id=8ecd399e-bd65-3ccf-97cd-1cb4400b168b,name=PronitXpro,properties={textures=[com.mojang.authlib.properties.Property@19881e51]},legacy=false] (/103.47.17.126:54808) lost connection: Disconnected
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@4944619b[id=bcf4eb5e-a410-34d8-ac2d-0712ff46da29,name=SebbieWebble,properties={textures=[com.mojang.authlib.properties.Property@13ac3b99]},legacy=false] (/223.191.3.141:54840) lost connection: Disconnected
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@73352921[id=8ecd399e-bd65-3ccf-97cd-1cb4400b168b,name=PronitXpro,properties={textures=[com.mojang.authlib.properties.Property@865907b]},legacy=false] (/103.47.17.126:47664) lost connection: Disconnected
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@5105ca19[id=8ecd399e-bd65-3ccf-97cd-1cb4400b168b,name=PronitXpro,properties={textures=[com.mojang.authlib.properties.Property@75f7303f]},legacy=false] (/103.47.17.126:54834) lost connection: Disconnected
[08:12:21] [Netty Epoll Server IO #3/WARN]: [HolographicDisplays] Unexpected error while modifying the channel pipeline.
java.util.NoSuchElementException: packet_handler
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:248) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:237) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$injectPacketListener$0(VersionNMSManager.java:80) ~[HolographicDisplays (1).jar:?]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$modifyPipeline$2(VersionNMSManager.java:108) ~[HolographicDisplays (1).jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[08:12:21] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[08:12:21] [Server thread/INFO]: BlueBell721 left the game
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@4ed766a8[id=0550dfdd-ca34-3b71-b81c-47d5691ce166,name=Sh4rpn3ss_,properties={textures=[com.mojang.authlib.properties.Property@b89cb13]},legacy=false] (/223.191.3.141:44052) lost connection: Disconnected
[08:12:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@3d995eae[id=00915d80-8025-3d36-ad6f-1d82e2857ca2,name=BlueBell721,properties={textures=[com.mojang.authlib.properties.Property@1cc8bf89]},legacy=false] (/27.0.177.20:44036) lost connection: Disconnected
[08:12:21] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded BlueBell721's data in 86 ms.
[08:12:21] [Netty Epoll Server IO #2/WARN]: [HolographicDisplays] Unexpected error while modifying the channel pipeline.
java.util.NoSuchElementException: packet_handler
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:248) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:237) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$injectPacketListener$0(VersionNMSManager.java:80) ~[HolographicDisplays (1).jar:?]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$modifyPipeline$2(VersionNMSManager.java:108) ~[HolographicDisplays (1).jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[08:12:21] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[08:12:21] [Server thread/WARN]: BlueBell721 left while LOADING_DATA was present but stats were loaded. If they have lost their stats please report it to Toppe
[08:12:21] [Server thread/INFO]: BlueBell721 left the game
[08:12:21] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded BlueBell721's data in 109 ms.
[08:12:21] [ForkJoinPool.commonPool-worker-1/INFO]: StrikePractice >> Creating a new playerdata file. UUID: 4d1c126a-bcc4-35aa-be4f-21610ddf658a
[08:12:21] [Server thread/INFO]: Raider_op_gamer joined the game
[08:12:22] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded Raider_op_gamer's data in 53 ms.
[08:12:22] [Server thread/INFO]: Raider_op_gamer[/103.211.53.88:53364] logged in with entity id 636 at ([spawn]-140.5, 145.0, 84.5)
[08:12:23] [Server thread/INFO]: Spawning a test npc 'steve' to fetch npcs' skin. The npc will be removed in 10 seconds.
[08:12:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52c]
[08:12:23] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[08:12:23] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[08:12:25] [User Authenticator #2/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:12:25] [Server thread/INFO]: PronitXpro joined the game
[08:12:25] [Server thread/INFO]: PronitXpro[/103.47.17.126:47338] logged in with entity id 646 at ([Arenas_2]381.62398247634695, 131.0, 345.34273835634775)
[08:12:25] [Server thread/INFO]: [Essentials] Created a User for steve (a420d575-9dd1-2728-bcc1-0cd5d367e77f) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:12:25] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded PronitXpro's data in 83 ms.
[08:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[08:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[08:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superbvote [1.3.1]
[08:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[08:12:26] [Server thread/INFO]: 4 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[08:12:30] [User Authenticator #2/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:12:30] [Server thread/INFO]: BlueBell721 joined the game
[08:12:30] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded BlueBell721's data in 62 ms.
[08:12:30] [Server thread/INFO]: BlueBell721[/27.0.177.20:47344] logged in with entity id 647 at ([spawn]-135.87925515997665, 145.0, 92.44133540750815)
[08:12:38] [User Authenticator #2/INFO]: UUID of player Sh4rpn3ss_ is 0550dfdd-ca34-3b71-b81c-47d5691ce166
[08:12:38] [Server thread/INFO]: Sh4rpn3ss_ joined the game
[08:12:38] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded Sh4rpn3ss_'s data in 13 ms.
[08:12:38] [Server thread/INFO]: Sh4rpn3ss_[/223.191.3.141:52940] logged in with entity id 648 at ([spawn]-134.6192821588508, 145.0, 92.72216456165827)
[08:12:38] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? BlueBell721 i need to talk to u
[08:12:43] [User Authenticator #2/INFO]: UUID of player SebbieWebble is bcf4eb5e-a410-34d8-ac2d-0712ff46da29
[08:12:43] [Server thread/INFO]: SebbieWebble joined the game
[08:12:43] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded SebbieWebble's data in 41 ms.
[08:12:43] [Server thread/INFO]: SebbieWebble[/223.191.3.141:52954] logged in with entity id 649 at ([spawn]-133.44832603218808, 145.0, 91.02165063128527)
[08:12:44] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? stay at spawn pls
[08:12:48] [User Authenticator #2/INFO]: UUID of player ToiviDev is b1077e18-c98e-36ee-b038-076b8626e611
[08:12:48] [Server thread/INFO]: ToiviDev joined the game
[08:12:48] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded ToiviDev's data in 13 ms.
[08:12:48] [Server thread/INFO]: ToiviDev[/223.236.251.64:60838] logged in with entity id 650 at ([spawn]-128.16851406384004, 145.0, 79.22466561455171)
[08:12:52] [Server thread/INFO]: Raider_op_gamer issued server command: /smp
[08:12:56] [User Authenticator #2/INFO]: UUID of player DavenMC is bd0f04ce-af11-3b66-9cc1-8e68a6f84a39
[08:12:56] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? check our pings
[08:12:56] [Server thread/INFO]: DavenMC joined the game
[08:12:56] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded DavenMC's data in 8 ms.
[08:12:56] [Server thread/INFO]: DavenMC[/39.37.228.90:60990] logged in with entity id 651 at ([spawn]-131.0239090842851, 145.0, 96.18254513650655)
[08:13:01] [Server thread/INFO]: DavenMC issued server command: /unranked
[08:13:02] [Async Chat Thread - #0/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? ping is fixed i think
[08:13:02] [Async Chat Thread - #1/INFO]: [Not Secure] Member  | Sh4rpn3ss_ Silver V ? kab hai event
[08:13:02] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? below 10
[08:13:05] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? lol
[08:13:08] [Server thread/INFO]: ToiviDev issued server command: /ping BlueBell721
[08:13:08] [User Authenticator #2/INFO]: UUID of player NOOB_PLAYSS is 34d3dbae-6e74-337d-a8db-d392061c7930
[08:13:08] [Server thread/INFO]: NOOB_PLAYSS joined the game
[08:13:08] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded NOOB_PLAYSS's data in 9 ms.
[08:13:08] [Server thread/INFO]: NOOB_PLAYSS[/117.228.190.219:40990] logged in with entity id 655 at ([spawn]-139.0, 145.0, 93.0)
[08:13:09] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? 7 ping
[08:13:10] [Async Chat Thread - #1/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? 15ms
[08:13:11] [Async Chat Thread - #0/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? 10 ms
[08:13:13] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:13:13] [Async Chat Thread - #1/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? 8 ms
[08:13:14] [Async Chat Thread - #0/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? damn
[08:13:17] [Server thread/INFO]: Raider_op_gamer lost connection: Disconnected
[08:13:17] [Server thread/INFO]: Raider_op_gamer left the game
[08:13:20] [Async Chat Thread - #1/INFO]: [Not Secure] Member  | Sh4rpn3ss_ Silver V ? TIME
[08:13:22] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? lowest ms server
[08:13:25] [Async Chat Thread - #0/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? blue bell
[08:13:26] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i can crystal so fast
[08:13:27] [Server thread/INFO]: DavenMC issued server command: /unranked
[08:13:28] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? in whole of asia i think
[08:13:38] [Server thread/INFO]: DavenMC issued server command: /unranked
[08:13:39] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:13:39] [Server thread/INFO]: DavenMC issued server command: /ranked
[08:13:43] [Async Chat Thread - #1/INFO]: [Not Secure] Member  | DavenMC Gold I ? q ranked nethpot
[08:13:45] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ayo ToiviDev i need to talk
[08:13:45] [Async Chat Thread - #1/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? but some of yall have like 130 ms
[08:13:49] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? BRO
[08:13:51] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? the crystals
[08:13:51] [Async Chat Thread - #1/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? which is like your own internet problem
[08:13:52] [Async Chat Thread - #1/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? blue bell how to get empror rank
[08:13:52] [Server thread/INFO]: SebbieWebble issued server command: /ranked
[08:13:52] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /ranked
[08:13:53] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /ranked
[08:13:55] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /ranked
[08:13:57] [Server thread/INFO]: SebbieWebble issued server command: /ranked
[08:13:58] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:14:01] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? get samurai rank
[08:14:02] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? then
[08:14:02] [Server thread/INFO]: ToiviDev issued server command: /fastcrystal
[08:14:03] [Server thread/INFO]: ToiviDev issued server command: /fastcrystal
[08:14:04] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /ranked
[08:14:05] [Server thread/INFO]: ToiviDev issued server command: /cpvp
[08:14:07] [Async Chat Thread - #1/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? OOOK
[08:14:08] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? if u win an event again
[08:14:08] [Server thread/INFO]: SebbieWebble issued server command: /ranked
[08:14:09] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? then
[08:14:13] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /queue leave
[08:14:13] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? ull get upgrage
[08:14:15] [Async Chat Thread - #0/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? event means pvp
[08:14:17] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /nethpot
[08:14:17] [Server thread/INFO]: SebbieWebble issued server command: /nethpot
[08:14:21] [Async Chat Thread - #1/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? brO
[08:14:25] [Async Chat Thread - #0/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? the crystal speeds
[08:14:27] [Server thread/INFO]: NOOB_PLAYSS issued server command: /unranked
[08:14:29] [Async Chat Thread - #1/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? its beyond imagination
[08:14:37] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? LEmme do butterfly XD
[08:14:41] [User Authenticator #16/INFO]: UUID of player Sqlmqn is 0c8f0762-625c-3b8a-9627-ac190c8c2b5d
[08:14:41] [Server thread/INFO]: Sqlmqn joined the game
[08:14:41] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded Sqlmqn's data in 16 ms.
[08:14:41] [Server thread/INFO]: Sqlmqn[/47.9.104.14:38778] logged in with entity id 812 at ([spawn]-139.0, 145.0, 93.0)
[08:14:43] [Server thread/INFO]: NOOB_PLAYSS issued server command: /cpvp
[08:14:44] [Server thread/INFO]: DavenMC issued server command: /nethpot
[08:14:52] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? dont ull die
[08:14:55] [Server thread/INFO]: [Essentials] Created a User for CLICK ME! (97e19684-7cfa-2b25-8d8b-1203c770bf90) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:15:01] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? ill kill myslef
[08:15:14] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? wait
[08:15:16] [User Authenticator #16/INFO]: UUID of player gamervardam is 8bcfb89e-435a-3239-b49c-8350cb8d2405
[08:15:16] [Server thread/INFO]: gamervardam joined the game
[08:15:16] [ForkJoinPool.commonPool-worker-4/INFO]: Loaded gamervardam's data in 13 ms.
[08:15:16] [Server thread/INFO]: gamervardam[/27.63.12.247:56578] logged in with entity id 878 at ([spawn]-139.0, 145.0, 93.0)
[08:15:16] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? OOF
[08:15:20] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? Lets try
[08:15:23] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? u stand
[08:15:25] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? still
[08:15:28] [Server thread/INFO]: DavenMC issued server command: /spanw
[08:15:28] [Server thread/INFO]: Sqlmqn issued server command: /ranked
[08:15:29] [Server thread/INFO]: [Anti-Swear Chat] PronitXpro: i am gonna hitcrystal the s h i t out of everyone
[08:15:29] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /kick PronitXpro Please do not swear in chat
[08:15:29] [Server thread/INFO]: PronitXpro lost connection: Please do not swear in chat
[08:15:29] [Server thread/INFO]: PronitXpro left the game
[08:15:29] [Server thread/INFO]: [Essentials] Player Console kicked PronitXpro for Please do not swear in chat.
[08:15:29] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:15:29] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? ill give u resistance
[08:15:32] [User Authenticator #16/INFO]: UUID of player PronitXpro is 8ecd399e-bd65-3ccf-97cd-1cb4400b168b
[08:15:32] [Server thread/INFO]: PronitXpro joined the game
[08:15:32] [Server thread/INFO]: PronitXpro[/103.47.17.126:52570] logged in with entity id 881 at ([spawn]-139.0, 145.0, 93.0)
[08:15:32] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded PronitXpro's data in 62 ms.
[08:15:38] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:15:38] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? PRonit
[08:15:39] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? come fast
[08:15:41] [Server thread/INFO]: DavenMC issued server command: /cpvp
[08:15:45] [Async Chat Thread - #1/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? IM Giving u resistance
[08:15:47] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? no u stand
[08:15:49] [Server thread/INFO]: ToiviDev issued server command: /version
[08:15:50] [Async Chat Thread - #0/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? ill make u fly now
[08:15:54] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i am better at hitcrystal than u
[08:15:57] [Server thread/INFO]: Sqlmqn issued server command: /unranked
[08:15:59] [Server thread/INFO]: Sqlmqn issued server command: /unranked
[08:16:00] [Server thread/INFO]: Sqlmqn issued server command: /unranked
[08:16:05] [Server thread/INFO]: Sqlmqn lost connection: Disconnected
[08:16:05] [Server thread/INFO]: Sqlmqn left the game
[08:16:06] [Server thread/INFO]: BlueBell721 issued server command: /effect give PronitXpro minecraft:resistance 1000 255
[08:16:06] [Server thread/INFO]: [BlueBell721: Applied effect Resistance to PronitXpro]
[08:16:06] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? tell me when ready
[08:16:12] [Server thread/INFO]: gamervardam issued server command: /smp
[08:16:20] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i am better at hitcrystal than u
[08:16:30] [Server thread/INFO]: ToiviDev issued server command: /citizens help
[08:16:34] [Async Chat Thread - #1/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? i am also trying
[08:16:34] [User Authenticator #17/INFO]: UUID of player hadixand is f4e9a984-b4a8-39f5-8b39-714b5ae0dd9f
[08:16:34] [Server thread/INFO]: hadixand joined the game
[08:16:34] [ForkJoinPool.commonPool-worker-4/INFO]: Loaded hadixand's data in 15 ms.
[08:16:34] [Server thread/INFO]: hadixand[/103.174.195.2:49866] logged in with entity id 926 at ([spawn]-139.0, 145.0, 93.0)
[08:16:37] [Server thread/INFO]: gamervardam lost connection: Disconnected
[08:16:37] [Server thread/INFO]: gamervardam left the game
[08:16:40] [Server thread/INFO]: NOOB_PLAYSS issued server command: /ranked
[08:16:41] [Server thread/INFO]: hadixand issued server command: /nethpot
[08:16:42] [Server thread/INFO]: NOOB_PLAYSS issued server command: /cpvp
[08:16:47] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? BlueBell721 give urself resistance
[08:16:54] [Async Chat Thread - #1/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ill hitcrystal u
[08:16:55] [User Authenticator #17/INFO]: UUID of player gamervardam is 8bcfb89e-435a-3239-b49c-8350cb8d2405
[08:16:55] [Server thread/INFO]: gamervardam joined the game
[08:16:55] [Server thread/INFO]: gamervardam[/27.63.12.247:44614] logged in with entity id 989 at ([spawn]-139.0, 145.0, 93.0)
[08:16:55] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded gamervardam's data in 19 ms.
[08:17:07] [Server thread/INFO]: [Essentials] Created a User for NOT FFA! (cf9cbc5b-e551-2306-b626-2ae1403b19a8) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:17:08] [Server thread/INFO]: gamervardam issued server command: /nethpot
[08:17:10] [Server thread/INFO]: [Essentials] Created a User for CLICK ME! (d78e1a6b-d5eb-29ba-afb1-7853f0b53688) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:17:19] [User Authenticator #17/INFO]: UUID of player priyanshu155 is 9e3de3e8-68a4-3c0b-80d6-03b10b0b7bab
[08:17:20] [Server thread/INFO]: priyanshu155 lost connection: Disconnected
[08:17:20] [Netty Epoll Server IO #1/WARN]: [HolographicDisplays] Unexpected error while modifying the channel pipeline.
java.util.NoSuchElementException: packet_handler
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:248) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:237) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$injectPacketListener$0(VersionNMSManager.java:80) ~[HolographicDisplays (1).jar:?]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$modifyPipeline$2(VersionNMSManager.java:108) ~[HolographicDisplays (1).jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[08:17:20] [Server thread/INFO]: priyanshu155 left the game
[08:17:20] [ForkJoinPool.commonPool-worker-4/INFO]: Loaded priyanshu155's data in 54 ms.
[08:17:25] [User Authenticator #17/INFO]: UUID of player Star_77 is 683a2273-ae5e-3968-96a5-1bd9a1b93a2d
[08:17:25] [Server thread/INFO]: Star_77 lost connection: Disconnected
[08:17:25] [Netty Epoll Server IO #2/WARN]: [HolographicDisplays] Unexpected error while modifying the channel pipeline.
java.util.NoSuchElementException: packet_handler
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:248) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:237) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$injectPacketListener$0(VersionNMSManager.java:80) ~[HolographicDisplays (1).jar:?]
    at me.filoghost.holographicdisplays.nms.v1_19_R2.VersionNMSManager.lambda$modifyPipeline$2(VersionNMSManager.java:108) ~[HolographicDisplays (1).jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[08:17:25] [Server thread/INFO]: Star_77 left the game
[08:17:25] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded Star_77's data in 71 ms.
[08:17:29] [User Authenticator #17/INFO]: UUID of player priyanshu155 is 9e3de3e8-68a4-3c0b-80d6-03b10b0b7bab
[08:17:29] [Server thread/INFO]: priyanshu155 joined the game
[08:17:29] [Server thread/INFO]: priyanshu155[/139.5.242.229:36068] logged in with entity id 1034 at ([spawn]-134.14876860931463, 145.0, 98.4591392939435)
[08:17:29] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded priyanshu155's data in 16 ms.
[08:17:34] [Async Chat Thread - #0/INFO]: [Not Secure] Mod | hadixand Gold II ? no freehit
[08:17:35] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:17:40] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:17:41] [Server thread/INFO]: priyanshu155 issued server command: /cpvp
[08:17:43] [Async Chat Thread - #1/INFO]: [Not Secure] Mod | hadixand Gold II ? its 1v1 gamervardam
[08:17:44] [Async Chat Thread - #0/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? this is so sexy
[08:17:45] [Server thread/INFO]: DavenMC issued server command: /unranked
[08:17:48] [Server thread/INFO]: DavenMC issued server command: /nethpot
[08:17:48] [Server thread/INFO]: BlueBell721 issued server command: /effect clear PronitXpro
[08:17:48] [Server thread/INFO]: [BlueBell721: Removed every effect from PronitXpro]
[08:17:56] [Async Chat Thread - #0/INFO]: [Not Secure] Mod | hadixand Gold II ? tp me to u
[08:17:58] [Async Chat Thread - #1/INFO]: [Not Secure] Mod | hadixand Gold II ? bluebell
[08:18:14] [Server thread/INFO]: NOOB_PLAYSS lost connection: Disconnected
[08:18:14] [Server thread/INFO]: NOOB_PLAYSS left the game
[08:18:18] [Server thread/INFO]: priyanshu155 issued server command: /unranked
[08:18:21] [Server thread/INFO]: priyanshu155 issued server command: /queue leave
[08:18:22] [Server thread/INFO]: priyanshu155 issued server command: /unranked
[08:18:25] [User Authenticator #17/INFO]: UUID of player NOOB_PLAYSS is 34d3dbae-6e74-337d-a8db-d392061c7930
[08:18:25] [Server thread/INFO]: NOOB_PLAYSS joined the game
[08:18:25] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded NOOB_PLAYSS's data in 8 ms.
[08:18:25] [Server thread/INFO]: NOOB_PLAYSS[/117.228.190.219:59084] logged in with entity id 1361 at ([spawn]-139.0, 145.0, 93.0)
[08:18:29] [Server thread/INFO]: priyanshu155 issued server command: /cpvp
[08:18:32] [Server thread/INFO]: NOOB_PLAYSS issued server command: /cpvp
[08:18:33] [Server thread/INFO]: hadixand lost connection: Disconnected
[08:18:33] [Server thread/INFO]: hadixand left the game
[08:18:45] [Server thread/INFO]: gamervardam lost connection: Disconnected
[08:18:45] [Server thread/INFO]: gamervardam left the game
[08:18:52] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:19:15] [Server thread/INFO]: Applied effect Night Vision to priyanshu155
[08:19:15] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:19:15] [Server thread/INFO]: Applied effect Night Vision to priyanshu155
[08:19:22] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:20:06] [Async Chat Thread - #2/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i blocked the anchor
[08:20:11] [Async Chat Thread - #3/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? still it damaged how ?
[08:20:12] [Server thread/INFO]: DavenMC lost connection: Disconnected
[08:20:12] [Server thread/INFO]: DavenMC left the game
[08:20:15] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:20:15] [Async Chat Thread - #3/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? I hit crystaled
[08:20:16] [Async Chat Thread - #3/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? u
[08:20:25] [Async Chat Thread - #2/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? nah before that
[08:20:48] [Async Chat Thread - #3/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? come back
[08:20:52] [Async Chat Thread - #2/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? and rekit
[08:20:54] [Craft Scheduler Thread - 39 - SkinsRestorer/WARN]: [SkinsRestorer] Failed to get release info from api.github.com. 
 If this message is repeated a lot, please see http://skinsrestorer.net/firewall
[08:20:58] [Server thread/INFO]: SebbieWebble issued server command: /nethpot
[08:21:01] [Async Chat Thread - #2/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? no
[08:21:03] [Async Chat Thread - #3/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? later
[08:21:05] [Server thread/INFO]: priyanshu155 lost connection: Disconnected
[08:21:05] [Server thread/INFO]: priyanshu155 left the game
[08:21:16] [Async Chat Thread - #2/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? this is so sexy
[08:21:21] [Server thread/INFO]: Sh4rpn3ss_ issued server command: /nethpot
[08:21:40] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[08:21:40] [Server thread/INFO]: BlueBell721 left the game
[08:22:36] [Async Chat Thread - #4/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? i want to learn cpvp
[08:22:38] [Async Chat Thread - #4/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ok
[08:22:40] [Server thread/INFO]: NOOB_PLAYSS issued server command: /cpvp
[08:22:41] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ill teach u
[08:22:43] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? come
[08:22:44] [Async Chat Thread - #5/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? yeah
[08:22:55] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? pc player or pojav ?
[08:23:01] [Async Chat Thread - #6/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? pc
[08:23:03] [Server thread/INFO]: ToiviDev issued server command: /list
[08:23:05] [Server thread/INFO]: ToiviDev issued server command: /ping ToiviDev
[08:23:10] [Server thread/INFO]: ToiviDev issued server command: /ping PronitXpro
[08:23:10] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? phew same now itll be easy for me
[08:23:12] [Server thread/INFO]: [Essentials] Created a User for CLICK ME! (e6eb409b-8793-2b27-b399-be55bea479fe) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:23:18] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? see lemme tell u what a crystal is
[08:23:18] [Async Chat Thread - #5/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? pronit has 12 ms ping
[08:23:20] [Async Chat Thread - #6/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? me too
[08:23:22] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? yea
[08:23:41] [Async Chat Thread - #5/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? tell me your slots
[08:23:41] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? heh why are my text not appearing green
[08:23:50] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? nah u have to make ur own or else u confused
[08:23:51] [Async Chat Thread - #6/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? 1 sword
[08:23:53] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? trust me
[08:23:57] [Async Chat Thread - #5/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? ok
[08:24:02] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? btw just to tell u i dont use keybinds
[08:24:17] [Server thread/INFO]: Sh4rpn3ss_ lost connection: Disconnected
[08:24:17] [Server thread/INFO]: Sh4rpn3ss_ left the game
[08:24:20] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? toivi
[08:24:23] [Async Chat Thread - #5/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? my simple settings
[08:24:31] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? wait go spawn
[08:24:34] [Server thread/INFO]: PronitXpro issued server command: /spawn
[08:24:44] [Server thread/INFO]: NOOB_PLAYSS issued server command: /spawn
[08:24:47] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ToiviDev u there ?
[08:24:48] [Server thread/INFO]: Applied effect Night Vision to NOOB_PLAYSS
[08:24:48] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:24:48] [Server thread/INFO]: Applied effect Night Vision to NOOB_PLAYSS
[08:24:49] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:24:49] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:24:49] [Server thread/INFO]: Applied effect Night Vision to NOOB_PLAYSS
[08:24:49] [Server thread/INFO]: SebbieWebble issued server command: /spawn
[08:24:55] [Server thread/INFO]: NOOB_PLAYSS issued server command: /unranked
[08:25:01] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? why arent my texts apeearing in a green font ? i mean i dont need it but
[08:25:07] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? wnhy ?
[08:25:14] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? NOOB_PLAYSS i am going to duel u cpvp
[08:25:15] [Server thread/INFO]: PronitXpro issued server command: /duel NOOB_PLAYSS
[08:25:19] [Async Chat Thread - #5/INFO]: [Not Secure] Member  | NOOB_PLAYSS Silver V ? ok
[08:25:20] [Server thread/INFO]: NOOB_PLAYSS issued server command: /duel accept PronitXpro
[08:25:30] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ok now , listen
[08:25:34] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? dont shoot
[08:25:41] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? or else i am bound to kill u
[08:25:45] [Server thread/INFO]: SebbieWebble issued server command: /ranked
[08:25:48] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? u want to learn ? or fight
[08:25:49] [Server thread/INFO]: [Anti-Swear Chat] NOOB_PLAYSS: kkkk
[08:25:49] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /kick NOOB_PLAYSS Please do not swear in chat
[08:25:49] [Server thread/INFO]: NOOB_PLAYSS lost connection: Please do not swear in chat
[08:25:49] [Server thread/INFO]: NOOB_PLAYSS left the game
[08:25:49] [Server thread/INFO]: [Essentials] Player Console kicked NOOB_PLAYSS for Please do not swear in chat.
[08:25:49] [Server thread/INFO]: No player was found
[08:25:49] [Server thread/INFO]: No player was found
[08:25:49] [Server thread/INFO]: No player was found
[08:25:49] [Server thread/INFO]: No player was found
[08:25:49] [Server thread/INFO]: No player was found
[08:25:49] [Server thread/INFO]: No player was found
[08:25:49] [Server thread/INFO]: No player was found
[08:26:07] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? my money dont jiggle jiggle it folds
[08:26:15] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? id like to see it wiggle wiggle for sure
[08:26:29] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? makes me wanna dribble dribble u know
[08:26:38] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i am getting 11 ms
[08:26:44] [Async Chat Thread - #5/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? SebbieWebble whats ur main
[08:26:48] [Async Chat Thread - #6/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? lets duel bro
[08:26:52] [Server thread/INFO]: PronitXpro issued server command: /duel SebbieWebble
[08:26:58] [Server thread/INFO]: PronitXpro issued server command: /duel SebbieWebble
[08:27:00] [Server thread/INFO]: [Essentials] Created a User for FFA! (66ffed88-fdc9-2e12-b5b1-16a2e829fd35) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:27:00] [Server thread/INFO]: SebbieWebble issued server command: /cpvp
[08:27:10] [Server thread/INFO]: PronitXpro issued server command: /tank
[08:27:13] [Server thread/INFO]: PronitXpro issued server command: /spawn
[08:27:16] [Server thread/INFO]: SebbieWebble lost connection: Disconnected
[08:27:16] [Server thread/INFO]: SebbieWebble left the game
[08:27:23] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:27:24] [Craft Scheduler Thread - 37 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[08:27:24] [Craft Scheduler Thread - 37 - Vulcan/INFO]: In the past 6 hours, [Cloudily] has punished 1385 players.
[08:27:24] [Craft Scheduler Thread - 37 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[08:27:49] [Server thread/INFO]: Error: You can only use that command in game
[08:27:49] [Server thread/INFO]: You whisper to PronitXpro: TECHNOBLADE NEVER DIES!
[08:28:21] [Async Chat Thread - #7/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? why did everyone leave ?
[08:28:27] [Server thread/INFO]: ToiviDev issued server command: /tps
[08:28:28] [Server thread/INFO]: ToiviDev issued server command: /mspt
[08:28:31] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? idk i need to talk to u
[08:28:45] [User Authenticator #18/INFO]: UUID of player NOTUDIT is 008ac025-5016-3c38-a2ea-ae1df9e79066
[08:28:45] [Server thread/INFO]: NOTUDIT joined the game
[08:28:45] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded NOTUDIT's data in 9 ms.
[08:28:45] [Server thread/INFO]: NOTUDIT[/110.235.237.223:54966] logged in with entity id 2318 at ([spawn]-140.3250618857269, 145.0, 95.91754869136365)
[08:28:51] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? lemme get straight to the point , we have to get a mindset making a pvp server isnt about boxes and all bro
[08:28:55] [Server thread/INFO]: NOTUDIT lost connection: Disconnected
[08:28:55] [Server thread/INFO]: NOTUDIT left the game
[08:28:59] [User Authenticator #18/INFO]: UUID of player MRRAFIYT is aae94498-b258-3e12-a5a0-96aa597d2bc5
[08:28:59] [Server thread/INFO]: MRRAFIYT joined the game
[08:28:59] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded MRRAFIYT's data in 74 ms.
[08:28:59] [Server thread/INFO]: MRRAFIYT[/27.147.201.110:54302] logged in with entity id 2319 at ([spawn]-139.0, 145.0, 93.0)
[08:29:00] [User Authenticator #18/INFO]: UUID of player SAVIOGAMEROP is 15f89502-98de-3a62-97e0-26a6d97be5f1
[08:29:00] [Server thread/INFO]: SAVIOGAMEROP joined the game
[08:29:00] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded SAVIOGAMEROP's data in 42 ms.
[08:29:00] [Server thread/INFO]: SAVIOGAMEROP[/103.51.72.172:54310] logged in with entity id 2320 at ([spawn]-139.0, 145.0, 93.0)
[08:29:03] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? u have got the best ms and we have to make the best outta it
[08:29:07] [Server thread/INFO]: SAVIOGAMEROP lost connection: Disconnected
[08:29:07] [Server thread/INFO]: SAVIOGAMEROP left the game
[08:29:13] [Server thread/INFO]: MRRAFIYT issued server command: /unranked
[08:29:15] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i think we all are going off track
[08:29:21] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? we need to build a pvp server
[08:29:24] [Async Chat Thread - #8/INFO]: [Not Secure] Member  | MRRAFIYT Silver V ? owner hi
[08:29:27] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? which is accessable to all
[08:29:34] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? like do u understand ?
[08:29:38] [User Authenticator #18/INFO]: UUID of player hadixand is f4e9a984-b4a8-39f5-8b39-714b5ae0dd9f
[08:29:38] [Server thread/INFO]: hadixand joined the game
[08:29:38] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded hadixand's data in 19 ms.
[08:29:38] [Server thread/INFO]: hadixand[/103.174.195.2:35774] logged in with entity id 2321 at ([spawn]-139.0, 145.0, 93.0)
[08:29:39] [User Authenticator #18/INFO]: UUID of player NOTUDIT is 008ac025-5016-3c38-a2ea-ae1df9e79066
[08:29:39] [Server thread/INFO]: NOTUDIT joined the game
[08:29:39] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded NOTUDIT's data in 6 ms.
[08:29:39] [Server thread/INFO]: NOTUDIT[/110.235.237.223:35786] logged in with entity id 2322 at ([spawn]-143.40574271173273, 145.0, 87.46689457778353)
[08:29:39] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? we are pretty much offtrack
[08:29:45] [Async Chat Thread - #8/INFO]: [Not Secure] Member  | MRRAFIYT Silver V ? tank queue
[08:29:49] [User Authenticator #18/INFO]: UUID of player DEVIL_KILLER is f2277b71-333b-349b-aeb7-1bd2458fe666
[08:29:49] [Server thread/INFO]: DEVIL_KILLER joined the game
[08:29:49] [Server thread/INFO]: DEVIL_KILLER[/103.251.19.10:38202] logged in with entity id 2323 at ([spawn]139.25456627175748, 37.0, 261.40588993727727)
[08:29:49] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded DEVIL_KILLER's data in 144 ms.
[08:29:59] [User Authenticator #18/INFO]: UUID of player Notyashlegend is 27b4e4fe-99ba-3e46-bb6b-fa11e6dc81d9
[08:29:59] [Server thread/INFO]: Notyashlegend joined the game
[08:29:59] [Server thread/INFO]: Notyashlegend[/27.63.71.190:44606] logged in with entity id 2324 at ([spawn]-138.79914398230434, 145.0, 93.05781307298902)
[08:29:59] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded Notyashlegend's data in 47 ms.
[08:30:04] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? we need to make crystal rtp , more kits like lifesteal and basically noy make these things like boxes votes etc
[08:30:07] [Async Chat Thread - #8/INFO]: [Not Secure] Member  | MRRAFIYT Silver V ? owner im youtuber give me rank of youtuber
[08:30:11] [User Authenticator #18/INFO]: UUID of player mai_hu_daku is ab7b5653-e0ef-3bf3-84f3-79cf47783f66
[08:30:11] [Server thread/INFO]: mai_hu_daku joined the game
[08:30:11] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? do u feel me like ? are u getting it ?
[08:30:11] [Server thread/INFO]: mai_hu_daku[/210.89.62.250:50764] logged in with entity id 2325 at ([spawn]-139.0, 145.0, 93.0)
[08:30:11] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded mai_hu_daku's data in 40 ms.
[08:30:14] [Server thread/INFO]: hadixand issued server command: /axe
[08:30:17] [Server thread/INFO]: hadixand lost connection: Disconnected
[08:30:17] [Server thread/INFO]: hadixand left the game
[08:30:20] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? pls dont tell me ur afx
[08:30:24] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? afk
[08:30:25] [Async Chat Thread - #7/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? restarting again
[08:30:27] [Server thread/INFO]: mai_hu_daku issued server command: /nethpot
[08:30:34] [Async Chat Thread - #8/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? huh nvm
[08:30:35] [Async Chat Thread - #7/INFO]: [Not Secure] Owner  | ToiviDev Silver V ? no need
[08:30:38] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? do u understand what i wrote ?
[08:30:38] [Server thread/INFO]: Notyashlegend issued server command: /cpvp
[08:30:42] [User Authenticator #18/INFO]: UUID of player GATRU__PLAYZ is 94e52312-fb27-36b6-bc6d-a460cf885d35
[08:30:42] [Server thread/INFO]: GATRU__PLAYZ joined the game
[08:30:42] [ForkJoinPool.commonPool-worker-9/INFO]: StrikePractice >> Creating a new playerdata file. UUID: 94e52312-fb27-36b6-bc6d-a460cf885d35
[08:30:42] [ForkJoinPool.commonPool-worker-11/INFO]: StrikePractice >> Creating a new playerdata file. UUID: 94e52312-fb27-36b6-bc6d-a460cf885d35
[08:30:42] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded GATRU__PLAYZ's data in 14 ms.
[08:30:42] [Server thread/INFO]: GATRU__PLAYZ[/122.162.144.159:60100] logged in with entity id 2328 at ([spawn]-136.5, 145.0, 94.5)
[08:30:49] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? arent we going offtrack ?
[08:30:55] [Async Chat Thread - #8/INFO]: [Not Secure] Member  | mai_hu_daku Silver V ? come nethpot
[08:30:56] [Server thread/INFO]: MRRAFIYT issued server command: /queue leave
[08:30:56] [Server thread/INFO]: MRRAFIYT issued server command: /unranked
[08:31:03] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? the server is so good still only 15 to 18 players
[08:31:23] [Async Chat Thread - #7/INFO]: [Not Secure] Member  | MRRAFIYT Silver V ? tank queue sword pls
[08:31:24] [Server thread/INFO]: Notyashlegend issued server command: /cpvp
[08:31:24] [Server thread/INFO]: DEVIL_KILLER issued server command: /unranked
[08:31:28] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? like we are going offtrack by making cosmetics boxes parkour and stuff
[08:31:28] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:31:41] [Server thread/INFO]: mai_hu_daku issued server command: /spawn
[08:31:49] [User Authenticator #19/INFO]: UUID of player SzPlayz is ab79f7fb-3e63-3cff-8ca7-cc587a148331
[08:31:49] [ForkJoinPool.commonPool-worker-7/INFO]: StrikePractice >> Creating a new playerdata file. UUID: ab79f7fb-3e63-3cff-8ca7-cc587a148331
[08:31:49] [Server thread/INFO]: SzPlayz joined the game
[08:31:49] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded SzPlayz's data in 12 ms.
[08:31:49] [Server thread/INFO]: SzPlayz[/49.36.203.39:33822] logged in with entity id 2392 at ([spawn]-130.5, 145.0, 94.5)
[08:31:54] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? this is a "pvp server" it should be expanded and have kits like lifesteal , lapata smp and even advertising
[08:32:02] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:32:09] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ToiviDev its time not to live upto some players
[08:32:16] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? why not make a community dude
[08:32:20] [Server thread/INFO]: mai_hu_daku issued server command: /nethpot
[08:32:20] [Server thread/INFO]: SzPlayz issued server command: /nethpot
[08:32:21] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:32:22] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:32:24] [Server thread/INFO]: Notyashlegend issued server command: /cpvp
[08:32:30] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? only 18 - 20 players like that even IN SUNDAY
[08:32:40] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? nah dude we have to expand we going offtrack
[08:32:48] [Server thread/INFO]: MRRAFIYT lost connection: Disconnected
[08:32:48] [Server thread/INFO]: MRRAFIYT left the game
[08:32:48] [Server thread/INFO]: DEVIL_KILLER issued server command: /unranked
[08:33:03] [Server thread/INFO]: DEVIL_KILLER issued server command: /cpvp
[08:33:06] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ok now lemme tell u some measures which will make the server good
[08:33:22] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? 1st - add kits like lifesteal , lapata smp kit , infuse smp kit etc
[08:33:33] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? 2nd - do regular advertising
[08:33:40] [Server thread/INFO]: Applied effect Night Vision to Notyashlegend
[08:33:40] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:33:40] [Server thread/INFO]: Applied effect Night Vision to Notyashlegend
[08:33:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:33:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:33:41] [Server thread/INFO]: Applied effect Night Vision to Notyashlegend
[08:33:43] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? bro ToiviDev are u even seeing this ?
[08:33:59] [Async Chat Thread - #7/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i am done lol all that stuff i just typed
[08:34:04] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? what a waste of time lol
[08:34:14] [User Authenticator #20/INFO]: UUID of player FAHIMGAMING854 is 8dcb1ad2-8fc1-316e-a71e-aaf8c1b4c9b4
[08:34:14] [Server thread/INFO]: FAHIMGAMING854 joined the game
[08:34:14] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded FAHIMGAMING854's data in 11 ms.
[08:34:14] [Server thread/INFO]: FAHIMGAMING854[/182.54.152.61:50410] logged in with entity id 2540 at ([spawn]-138.01775878426588, 145.0, 96.21589006809246)
[08:34:17] [Server thread/INFO]: Notyashlegend lost connection: Disconnected
[08:34:17] [Server thread/INFO]: Notyashlegend left the game
[08:34:17] [Server thread/INFO]: Unknown command. Type "/help" for help.
[08:34:17] [Server thread/INFO]: You whisper to PronitXpro: Do /vote --> Click on link and vote --> Get free MysteryDust --> Purchase cool Cosmetics!
[08:34:30] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:34:31] [Server thread/INFO]: PronitXpro issued server command: /warp parkour
[08:34:36] [Server thread/INFO]: PronitXpro issued server command: /spawb
[08:34:39] [Server thread/INFO]: PronitXpro issued server command: /spawn
[08:34:49] [Server thread/INFO]: FAHIMGAMING854 issued server command: /queue leave
[08:34:51] [Server thread/INFO]: PronitXpro issued server command: /warp spawn
[08:34:51] [Server thread/INFO]: FAHIMGAMING854 issued server command: /axe
[08:35:00] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:35:05] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? 1v1 notudit
[08:35:06] [Server thread/INFO]: PronitXpro issued server command: /unranked
[08:35:06] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:35:08] [Server thread/INFO]: FAHIMGAMING854 issued server command: /plugins
[08:35:09] [Server thread/INFO]: [Blocked-Cmd] FAHIMGAMING854: plugins
[08:35:09] [Server thread/INFO]: PronitXpro issued server command: /ranked
[08:35:10] [Server thread/INFO]: PronitXpro issued server command: /unranked
[08:35:26] [Async Chat Thread - #8/INFO]: [Not Secure] Member  | FAHIMGAMING854 Silver V ? come to axe pvp
[08:35:31] [Server thread/INFO]: PronitXpro issued server command: /axe
[08:35:50] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:35:54] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:35:57] [Server thread/INFO]: FAHIMGAMING854 issued server command: /ranked
[08:35:58] [Server thread/INFO]: PronitXpro issued server command: /spawn
[08:36:04] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:36:12] [Server thread/INFO]: DEVIL_KILLER issued server command: /spaw
[08:36:12] [Async Chat Thread - #9/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ToiviDev U THERE
[08:36:14] [Server thread/INFO]: FAHIMGAMING854 issued server command: /tank
[08:36:21] [Server thread/INFO]: SzPlayz issued server command: /spawn
[08:36:22] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? i just wrote a full para of stuff and u lol
[08:36:30] [Async Chat Thread - #9/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? bruh i am so frustrated rn
[08:36:32] [Server thread/INFO]: mai_hu_daku issued server command: /duel SzPlayz
[08:36:36] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? issok issok ill talk to u later ig
[08:36:39] [Server thread/INFO]: SzPlayz issued server command: /duel accept mai_hu_daku
[08:36:39] [Server thread/INFO]: SzPlayz issued server command: /duel accept mai_hu_daku
[08:36:45] [Server thread/INFO]: PronitXpro issued server command: /axe
[08:36:49] [Server thread/INFO]: PronitXpro issued server command: /spawn
[08:36:53] [User Authenticator #21/INFO]: UUID of player YOLO is 3385946b-bc45-3ccd-b201-244be822c585
[08:36:54] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? DEVIL_KILLER what kit
[08:36:54] [pool-72-thread-1/INFO]: [Vulcan] mai_hu_daku position was updated for being on a ghost block! (Arenas_1, 200, 117, 187) ?7[12]
[08:36:54] [Server thread/INFO]: YOLO joined the game
[08:36:54] [Server thread/INFO]: YOLO[/49.36.233.26:37668] logged in with entity id 3024 at ([spawn]-139.0, 145.0, 93.0)
[08:36:54] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded YOLO's data in 27 ms.
[08:37:00] [Server thread/INFO]: PronitXpro issued server command: /kiteditor
[08:37:11] [Async Chat Thread - #9/INFO]: [Not Secure] Member  | FAHIMGAMING854 Silver V ? come to tank pvp
[08:37:13] [Server thread/INFO]: PronitXpro issued server command: /unranked
[08:37:14] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:37:15] [Async Chat Thread - #8/INFO]: [Not Secure] Member  | YOLO Gold I ? cpvp someone?
[08:37:17] [Async Chat Thread - #9/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? me
[08:37:18] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:37:19] [User Authenticator #21/INFO]: UUID of player Suhaas3377 is cdec6bb3-100d-32a1-8558-ca5ef8afa533
[08:37:19] [Async Chat Thread - #9/INFO]: [Not Secure] Member  | YOLO Gold I ? Toivii
[08:37:20] [Server thread/INFO]: Suhaas3377 joined the game
[08:37:20] [Server thread/INFO]: Suhaas3377[/103.210.134.63:45414] logged in with entity id 3077 at ([spawn]-139.0, 145.0, 93.0)
[08:37:20] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded Suhaas3377's data in 100 ms.
[08:37:21] [Server thread/INFO]: Suhaas3377 lost connection: Disconnected
[08:37:21] [Server thread/INFO]: Suhaas3377 left the game
[08:37:22] [Server thread/INFO]: PronitXpro issued server command: /duel ToiviDev
[08:37:25] [Server thread/INFO]: PronitXpro issued server command: /duel YOLO
[08:37:26] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:37:29] [Server thread/INFO]: PronitXpro issued server command: /cpvp
[08:37:44] [User Authenticator #21/INFO]: UUID of player rajveer00007 is fece160c-189b-37fc-b638-4e6338b2cf3a
[08:37:45] [Server thread/INFO]: rajveer00007 joined the game
[08:37:45] [ForkJoinPool.commonPool-worker-12/INFO]: Loaded rajveer00007's data in 44 ms.
[08:37:45] [Server thread/INFO]: rajveer00007[/43.241.193.191:57110] logged in with entity id 3139 at ([spawn]-139.0, 145.0, 93.0)
[08:37:52] [Async Chat Thread - #9/INFO]: [Not Secure] Member  | FAHIMGAMING854 Silver V ? come to tank pvp any1
[08:37:57] [User Authenticator #21/INFO]: UUID of player HatLassyMC is c3ac6374-6b63-3781-843d-2c70a8010fb7
[08:37:57] [Server thread/INFO]: HatLassyMC joined the game
[08:37:57] [Server thread/INFO]: HatLassyMC[/49.36.121.87:56412] logged in with entity id 3162 at ([spawn]-139.0, 145.0, 93.0)
[08:37:57] [ForkJoinPool.commonPool-worker-12/INFO]: Loaded HatLassyMC's data in 39 ms.
[08:38:11] [Async Chat Thread - #8/INFO]: [Not Secure] Samurai  | PronitXpro Gold I ? ggs
[08:38:12] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:38:26] [Server thread/INFO]: FAHIMGAMING854 issued server command: /1v1 YOLO
[08:38:26] [Server thread/INFO]: HatLassyMC issued server command: /nethpot
[08:38:32] [Async Chat Thread - #9/INFO]: [Not Secure] Member  | rajveer00007 Silver V ? HI
[08:38:32] [User Authenticator #21/INFO]: UUID of player Suhaas3377 is cdec6bb3-100d-32a1-8558-ca5ef8afa533
[08:38:32] [Server thread/INFO]: Suhaas3377 joined the game
[08:38:32] [ForkJoinPool.commonPool-worker-12/INFO]: Loaded Suhaas3377's data in 10 ms.
[08:38:32] [Server thread/INFO]: Suhaas3377[/103.210.134.63:50176] logged in with entity id 3277 at ([spawn]-139.0, 145.0, 93.0)
[08:38:40] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:38:41] [Async Chat Thread - #9/INFO]: [Not Secure] Member  | rajveer00007 Silver V ? hi owner
[08:38:41] [Server thread/INFO]: FAHIMGAMING854 issued server command: /warps
[08:38:43] [Server thread/INFO]: GATRU__PLAYZ issued server command: /unranked
[08:38:46] [Server thread/INFO]: FAHIMGAMING854 issued server command: /warp
[08:38:46] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:38:47] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:38:47] [Server thread/INFO]: Suhaas3377 issued server command: /smp
[08:38:58] [Server thread/INFO]: Suhaas3377 issued server command: /spawn
[08:38:58] [Server thread/INFO]: HatLassyMC issued server command: /smp
[08:39:14] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel FAHIMGAMING854
[08:39:23] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:39:25] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel HatLassyMC
[08:39:29] [Server thread/INFO]: [Essentials] Created a User for CLICK ME! (baa19b7e-62b3-2320-b648-867729af9c89) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:39:41] [Server thread/INFO]: FAHIMGAMING854 lost connection: Disconnected
[08:39:41] [Server thread/INFO]: FAHIMGAMING854 left the game
[08:39:47] [User Authenticator #22/INFO]: UUID of player FAHIMGAMING854 is 8dcb1ad2-8fc1-316e-a71e-aaf8c1b4c9b4
[08:39:48] [Server thread/INFO]: FAHIMGAMING854 joined the game
[08:39:48] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded FAHIMGAMING854's data in 29 ms.
[08:39:48] [Server thread/INFO]: FAHIMGAMING854[/182.54.152.61:38702] logged in with entity id 3468 at ([spawn]-139.0, 145.0, 93.0)
[08:39:49] [Server thread/INFO]: PronitXpro issued server command: /spawn
[08:39:54] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:40:02] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:40:03] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:40:09] [Server thread/INFO]: Error: You can only use that command in game
[08:40:09] [Server thread/INFO]: You whisper to Suhaas3377: TECHNOBLADE NEVER DIES!
[08:40:10] [Server thread/INFO]: Error: You can only use that command in game
[08:40:10] [Server thread/INFO]: You whisper to Suhaas3377: TECHNOBLADE NEVER DIES!
[08:40:14] [Server thread/INFO]: [Essentials] Created a User for Dream (d6c93618-8b86-2b69-8744-eafd22bf207d) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:40:19] [Server thread/INFO]: Error: You can only use that command in game
[08:40:19] [Server thread/INFO]: You whisper to Suhaas3377: TECHNOBLADE NEVER DIES!
[08:40:25] [Server thread/INFO]: Suhaas3377 issued server command: /smp
[08:40:30] [Server thread/INFO]: Suhaas3377 issued server command: /spawn
[08:40:39] [Server thread/INFO]: DEVIL_KILLER issued server command: /cpvp
[08:40:43] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:40:43] [Server thread/INFO]: Suhaas3377 issued server command: /nethpot
[08:40:46] [Server thread/INFO]: mai_hu_daku lost connection: Disconnected
[08:40:46] [Server thread/INFO]: mai_hu_daku left the game
[08:40:47] [Server thread/INFO]: Suhaas3377 issued server command: /spawn
[08:40:47] [User Authenticator #22/INFO]: UUID of player EaglePlayzOG is 1155f112-6512-39be-9faa-d9c996c703a1
[08:40:48] [Server thread/INFO]: EaglePlayzOG joined the game
[08:40:48] [Server thread/INFO]: EaglePlayzOG[/132.154.39.34:55934] logged in with entity id 3554 at ([spawn]-138.47400085496497, 145.0, 93.16048133971279)
[08:40:48] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded EaglePlayzOG's data in 42 ms.
[08:40:49] [pool-71-thread-1/INFO]: ?b?l[Cloudily] DEVIL_KILLER failed Bad Packets (Type M) (1/5)
[08:40:57] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:40:57] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:40:58] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:40:59] [Server thread/INFO]: HatLassyMC issued server command: /ranked
[08:41:07] [Server thread/INFO]: HatLassyMC issued server command: /nethpot
[08:41:15] [Server thread/INFO]: EaglePlayzOG issued server command: /duel Pzy_
[08:41:15] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:41:15] [Async Chat Thread - #10/INFO]: [Not Secure] Member  | HatLassyMC Gold I ? anyone enth pot
[08:41:18] [Async Chat Thread - #10/INFO]: [Not Secure] Member  | HatLassyMC Gold I ? neth
[08:41:22] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:41:23] [User Authenticator #22/INFO]: UUID of player mai_hu_daku is ab7b5653-e0ef-3bf3-84f3-79cf47783f66
[08:41:23] [Server thread/INFO]: mai_hu_daku joined the game
[08:41:23] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded mai_hu_daku's data in 31 ms.
[08:41:23] [Server thread/INFO]: mai_hu_daku[/210.89.62.250:49192] logged in with entity id 3643 at ([spawn]-139.59830129419507, 145.0, 90.63172135439628)
[08:41:32] [Async Chat Thread - #11/INFO]: [Not Secure] Member  | DEVIL_KILLER Silver V ? cpvp
[08:41:36] [Server thread/INFO]: mai_hu_daku issued server command: /duel SzPlayz
[08:41:37] [Async Chat Thread - #10/INFO]: [Not Secure] Member  | DEVIL_KILLER Silver V ? come
[08:41:40] [Async Chat Thread - #11/INFO]: [Not Secure] Member  | FAHIMGAMING854 Silver V ? gg
[08:41:43] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:41:44] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:41:44] [Server thread/INFO]: SzPlayz issued server command: /duel accept mai_hu_daku
[08:41:44] [Server thread/INFO]: SzPlayz issued server command: /duel accept mai_hu_daku
[08:41:47] [Server thread/INFO]: Suhaas3377 issued server command: /ranked
[08:41:48] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:41:51] [Server thread/INFO]: EaglePlayzOG issued server command: /tank
[08:41:58] [Server thread/INFO]: EaglePlayzOG issued server command: /spawn
[08:42:04] [Server thread/INFO]: DEVIL_KILLER lost connection: Disconnected
[08:42:04] [Server thread/INFO]: DEVIL_KILLER left the game
[08:42:12] [Server thread/INFO]: HatLassyMC issued server command: /spanw
[08:42:14] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:42:18] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:42:18] [User Authenticator #22/INFO]: UUID of player Star_77 is 683a2273-ae5e-3968-96a5-1bd9a1b93a2d
[08:42:19] [Server thread/INFO]: Star_77 joined the game
[08:42:19] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded Star_77's data in 13 ms.
[08:42:19] [Server thread/INFO]: Star_77[/49.33.198.48:39718] logged in with entity id 3723 at ([spawn]-128.30441333879807, 145.0, 95.87203285458479)
[08:42:23] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:42:24] [Craft Scheduler Thread - 85 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[08:42:24] [Craft Scheduler Thread - 85 - Vulcan/INFO]: In the past 6 hours, [Cloudily] has punished 1385 players.
[08:42:24] [Craft Scheduler Thread - 85 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[08:42:24] [User Authenticator #22/INFO]: UUID of player FuzionHyper is 5c92bf33-fb5f-358e-a7e2-7c022786858b
[08:42:26] [Server thread/INFO]: FuzionHyper joined the game
[08:42:26] [pool-72-thread-1/INFO]: [Vulcan] EaglePlayzOG position was updated for being on a ghost block! (spawn, -147, 145, 85) ?7[37]
[08:42:26] [Server thread/INFO]: FuzionHyper[/122.162.144.199:35148] logged in with entity id 3724 at ([spawn]-138.47400085496497, 145.0, 93.20899772413625)
[08:42:26] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded FuzionHyper's data in 62 ms.
[08:42:29] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:42:30] [Server thread/INFO]: HatLassyMC issued server command: /ranked
[08:42:30] [Server thread/INFO]: EaglePlayzOG issued server command: /smp
[08:42:35] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:42:36] [Server thread/INFO]: Star_77 issued server command: /party create
[08:42:37] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:42:37] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:42:40] [Server thread/INFO]: Suhaas3377 issued server command: /unranked
[08:42:41] [Server thread/INFO]: FuzionHyper lost connection: Disconnected
[08:42:41] [Server thread/INFO]: FuzionHyper left the game
[08:42:42] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:42:43] [Server thread/INFO]: FAHIMGAMING854 issued server command: /replay c40e9ba4-fe2f-4a3d-b496-50879b22f5c5 killcam 20
[08:42:45] [Server thread/INFO]: Suhaas3377 issued server command: /smp
[08:42:46] [Async Chat Thread - #12/INFO]: [Not Secure] Member  | YOLO Gold I ? come cpvp
[08:42:52] [User Authenticator #22/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[08:42:52] [Server thread/INFO]: BlueBell721 joined the game
[08:42:52] [Server thread/INFO]: BlueBell721[/27.0.177.20:60604] logged in with entity id 3802 at ([spawn]-141.49564499867475, 145.0, 82.10734402427003)
[08:42:53] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded BlueBell721's data in 60 ms.
[08:42:54] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Suhaas3377 failed Fast Use (Type A) (1/5)
[08:42:54] [Server thread/INFO]: SzPlayz issued server command: /duel mai_hu_daku
[08:42:55] [Server thread/INFO]: rajveer00007 issued server command: /nethpot
[08:43:01] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:43:01] [Server thread/INFO]: mai_hu_daku issued server command: /duel accept SzPlayz
[08:43:04] [Server thread/INFO]: rajveer00007 lost connection: Disconnected
[08:43:04] [Server thread/INFO]: rajveer00007 left the game
[08:43:08] [User Authenticator #22/INFO]: UUID of player rajveer00007 is fece160c-189b-37fc-b638-4e6338b2cf3a
[08:43:08] [Server thread/INFO]: rajveer00007 joined the game
[08:43:08] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded rajveer00007's data in 21 ms.
[08:43:08] [Server thread/INFO]: rajveer00007[/43.241.193.191:47892] logged in with entity id 3810 at ([spawn]-139.0, 145.0, 93.0)
[08:43:09] [Server thread/INFO]: BlueBell721 issued server command: /gamemode creative
[08:43:12] [User Authenticator #22/INFO]: UUID of player FuzionHyper is 5c92bf33-fb5f-358e-a7e2-7c022786858b
[08:43:13] [Server thread/INFO]: FuzionHyper joined the game
[08:43:13] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded FuzionHyper's data in 53 ms.
[08:43:13] [Server thread/INFO]: FuzionHyper[/122.162.144.199:47904] logged in with entity id 3814 at ([spawn]-139.0, 145.0, 93.0)
[08:43:13] [Server thread/INFO]: Suhaas3377 lost connection: Disconnected
[08:43:13] [Server thread/INFO]: Suhaas3377 left the game
[08:43:19] [Server thread/INFO]: YOLO lost connection: Disconnected
[08:43:19] [Server thread/INFO]: YOLO left the game
[08:43:19] [Server thread/INFO]: FuzionHyper lost connection: Disconnected
[08:43:19] [Server thread/INFO]: FuzionHyper left the game
[08:43:20] [User Authenticator #22/INFO]: UUID of player Suhaas3377 is cdec6bb3-100d-32a1-8558-ca5ef8afa533
[08:43:20] [Server thread/INFO]: Suhaas3377 joined the game
[08:43:20] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded Suhaas3377's data in 16 ms.
[08:43:20] [Server thread/INFO]: Suhaas3377[/103.210.134.63:36562] logged in with entity id 3819 at ([spawn]-139.0, 145.0, 93.0)
[08:43:22] [Server thread/INFO]: rajveer00007 issued server command: /1v1 Star_77\
[08:43:27] [Server thread/INFO]: rajveer00007 issued server command: /1v1 Star_77
[08:43:41] [Server thread/INFO]: SzPlayz issued server command: /duel mai_hu_daku
[08:43:42] [Server thread/INFO]: mai_hu_daku issued server command: /duel SzPlayz
[08:43:44] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:43:44] [Server thread/INFO]: EaglePlayzOG lost connection: Disconnected
[08:43:44] [Server thread/INFO]: EaglePlayzOG left the game
[08:43:49] [Server thread/INFO]: BlueBell721 issued server command: /gamemode survival
[08:43:57] [Server thread/INFO]: mai_hu_daku issued server command: /duel accept SzPlayz
[08:44:11] [pool-71-thread-1/INFO]: ?b?l[Cloudily] FAHIMGAMING854 failed Aim (Type K) (1/15)
[08:44:27] [Async Chat Thread - #14/INFO]: [Not Secure] Member  | HatLassyMC Gold I ? gg
[08:44:36] [Async Chat Thread - #14/INFO]: [Not Secure] Member  | FAHIMGAMING854 Silver V ? good
[08:44:37] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:44:42] [Server thread/INFO]: HatLassyMC issued server command: /nethpot
[08:44:50] [Server thread/INFO]: [Essentials] Created a User for Technoblade (adf0a51e-cce9-25f6-a1f2-972353df9aa4) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:44:50] [User Authenticator #23/INFO]: UUID of player YOLO is 3385946b-bc45-3ccd-b201-244be822c585
[08:44:50] [Server thread/INFO]: YOLO joined the game
[08:44:51] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded YOLO's data in 35 ms.
[08:44:51] [Server thread/INFO]: YOLO[/49.36.233.26:60398] logged in with entity id 4073 at ([spawn]-139.0, 145.0, 93.0)
[08:44:56] [Server thread/INFO]: Star_77 issued server command: /diapot
[08:44:57] [Server thread/INFO]: Star_77 issued server command: /diapot
[08:44:58] [Server thread/INFO]: Star_77 issued server command: /cpvp
[08:44:59] [Server thread/INFO]: Star_77 issued server command: /cpvp
[08:45:01] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:45:02] [Async Chat Thread - #15/INFO]: [Not Secure] Member  | YOLO Gold I ? cpvp someone?
[08:45:03] [Server thread/INFO]: HatLassyMC issued server command: /sapwn
[08:45:06] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:45:06] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:45:13] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:45:16] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:45:18] [Server thread/INFO]: Star_77 issued server command: /cpvp
[08:45:19] [Server thread/INFO]: Star_77 issued server command: /cpvp
[08:45:19] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:45:21] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:45:23] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:45:23] [Async Chat Thread - #14/INFO]: [Not Secure] Member  | YOLO Gold I ? F
[08:45:26] [Server thread/INFO]: FAHIMGAMING854 issued server command: /warp parkour
[08:45:27] [Async Chat Thread - #15/INFO]: [Not Secure] Member  | YOLO Gold I ? laggg
[08:45:28] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:45:34] [Server thread/INFO]: SzPlayz issued server command: /duel mai_hu_daku
[08:45:40] [Server thread/INFO]: YOLO lost connection: Disconnected
[08:45:40] [Server thread/INFO]: YOLO left the game
[08:45:45] [Server thread/INFO]: mai_hu_daku issued server command: /duel accept SzPlayz
[08:45:46] [User Authenticator #23/INFO]: UUID of player YOLO is 3385946b-bc45-3ccd-b201-244be822c585
[08:45:47] [Server thread/INFO]: YOLO joined the game
[08:45:47] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded YOLO's data in 42 ms.
[08:45:47] [Server thread/INFO]: YOLO[/49.36.233.26:44750] logged in with entity id 4443 at ([spawn]-138.79475868746286, 145.0, 93.2796182365525)
[08:45:47] [pool-72-thread-1/INFO]: [Vulcan] NOTUDIT position was updated for being on a ghost block! (Arenas_2, -185, 5, 283) ?7[12]
[08:45:49] [Server thread/INFO]: [Essentials] Created a User for BOT_Star_77 (a10d32b9-712b-2013-a0f0-321d72507cfb) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:45:52] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:45:54] [User Authenticator #23/INFO]: UUID of player DavenMC is bd0f04ce-af11-3b66-9cc1-8e68a6f84a39
[08:45:55] [Server thread/INFO]: DavenMC joined the game
[08:45:55] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded DavenMC's data in 22 ms.
[08:45:55] [Server thread/INFO]: DavenMC[/39.36.240.228:50414] logged in with entity id 4457 at ([spawn]-139.0, 145.0, 93.0)
[08:45:56] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:45:58] [Server thread/INFO]: HatLassyMC issued server command: /ranked
[08:46:03] [Server thread/INFO]: HatLassyMC issued server command: /afk
[08:46:03] [Server thread/INFO]: [Essentials] HatLassyMC was denied access to command.
[08:46:06] [Server thread/INFO]: rajveer00007 issued server command: /axe
[08:46:09] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:46:12] [Server thread/INFO]: HatLassyMC issued server command: /nethpot
[08:46:15] [Server thread/INFO]: DavenMC issued server command: /nethpot
[08:46:41] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:46:41] [Server thread/INFO]: GATRU__PLAYZ issued server command: /unranked
[08:46:48] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:46:55] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:47:00] [Async Chat Thread - #17/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? the crsytals are superdfast now
[08:47:07] [Async Chat Thread - #17/INFO]: [Not Secure] Member  | YOLO Gold I ? ikr
[08:47:23] [Server thread/INFO]: YOLO lost connection: Disconnected
[08:47:23] [Server thread/INFO]: YOLO left the game
[08:47:33] [Server thread/INFO]: Applied effect Night Vision to BlueBell721
[08:47:33] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:47:33] [Server thread/INFO]: Applied effect Night Vision to BlueBell721
[08:47:37] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:47:41] [User Authenticator #24/INFO]: UUID of player YOLO is 3385946b-bc45-3ccd-b201-244be822c585
[08:47:41] [Server thread/INFO]: YOLO joined the game
[08:47:41] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded YOLO's data in 15 ms.
[08:47:41] [Server thread/INFO]: YOLO[/49.36.233.26:40080] logged in with entity id 4831 at ([spawn]-139.0, 145.0, 93.0)
[08:47:42] [Server thread/INFO]: Star_77 issued server command: /party disband
[08:47:43] [Server thread/INFO]: Star_77 issued server command: /unranked
[08:47:45] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:47:48] [Server thread/INFO]: rajveer00007 lost connection: Disconnected
[08:47:48] [Server thread/INFO]: rajveer00007 left the game
[08:48:01] [Server thread/INFO]: YOLO issued server command: /kiteditor
[08:48:01] [Async Chat Thread - #16/INFO]: [Not Secure] Member  | YOLO Gold I ? Lag-
[08:48:02] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:48:10] [Async Chat Thread - #16/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? idont think so
[08:48:10] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type I) (1/8)
[08:48:29] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type I) (2/8)
[08:48:37] [Async Chat Thread - #16/INFO]: [Not Secure] Member  | FAHIMGAMING854 Silver V ? gg
[08:48:39] [Async Chat Thread - #17/INFO]: [Not Secure] Member  | YOLO Gold I ? damn my sword-
[08:48:40] [Server thread/INFO]: Star_77 issued server command: /unranked
[08:48:42] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:48:47] [Server thread/INFO]: FAHIMGAMING854 issued server command: /warp parkour
[08:48:47] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[08:48:50] [Server thread/INFO]: FAHIMGAMING854 issued server command: /warp parkour
[08:48:58] [Server thread/INFO]: YOLO lost connection: Disconnected
[08:48:58] [Server thread/INFO]: YOLO left the game
[08:49:00] [Server thread/INFO]: Star_77 issued server command: /queue leave
[08:49:05] [Server thread/INFO]: Star_77 issued server command: /party create
[08:49:07] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:49:08] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:49:13] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[08:49:14] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:49:15] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:49:18] [Server thread/INFO]: Star_77 issued server command: /2v2 ranked
[08:49:20] [Server thread/INFO]: Star_77 issued server command: /party chat
[08:49:30] [Server thread/INFO]: Star_77 issued server command: /cpvp
[08:49:31] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:49:48] [Server thread/INFO]: [Essentials] Created a User for BOT_Star_77 (93b7ced4-fb5a-24b7-87d4-27795321a2f2) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:49:52] [Server thread/INFO]: BlueBell721 issued server command: /nethpot
[08:49:53] [User Authenticator #25/INFO]: UUID of player priyanshu155 is 9e3de3e8-68a4-3c0b-80d6-03b10b0b7bab
[08:49:53] [Server thread/INFO]: priyanshu155 joined the game
[08:49:53] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded priyanshu155's data in 11 ms.
[08:49:53] [Server thread/INFO]: priyanshu155[/139.5.242.229:58358] logged in with entity id 5928 at ([spawn]-137.50605033001256, 145.0, 98.14713966755237)
[08:50:01] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type K) (1/15)
[08:50:03] [Server thread/INFO]: priyanshu155 issued server command: /smp
[08:50:19] [Server thread/INFO]: Star_77 issued server command: /2v2
[08:50:21] [Server thread/INFO]: Star_77 issued server command: /party fight
[08:50:24] [Server thread/INFO]: Star_77 issued server command: /party settings
[08:50:25] [Server thread/INFO]: Star_77 issued server command: /party disband
[08:50:27] [Server thread/INFO]: Star_77 issued server command: /unranked
[08:50:29] [Server thread/INFO]: Star_77 issued server command: /ranked
[08:50:31] [Async Chat Thread - #18/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? anyone
[08:50:32] [Server thread/INFO]: Star_77 issued server command: /unranked
[08:50:33] [Async Chat Thread - #18/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? nethpot?
[08:50:44] [Server thread/INFO]: Star_77 issued server command: /smp
[08:50:45] [User Authenticator #25/INFO]: UUID of player arsh_ikram is 58dcbe73-c88e-3506-9757-a24305b5059c
[08:50:45] [ForkJoinPool.commonPool-worker-7/INFO]: StrikePractice >> Creating a new playerdata file. UUID: 58dcbe73-c88e-3506-9757-a24305b5059c
[08:50:45] [Server thread/INFO]: arsh_ikram joined the game
[08:50:45] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded arsh_ikram's data in 4 ms.
[08:50:45] [Server thread/INFO]: arsh_ikram[/103.167.99.215:51260] logged in with entity id 5993 at ([spawn]-142.5, 145.0, 101.5)
[08:50:45] [Server thread/INFO]: ---------------[ Player List ]---------------
[08:50:45] [Server thread/INFO]: Online Players 14/90: ToiviDev, PronitXpro, Suhaas3377, SzPlayz, mai_hu_daku, HatLassyMC, DavenMC, FAHIMGAMING854, NOTUDIT, GATRU__PLAYZ, BlueBell721, priyanshu155, Star_77, arsh_ikram
[08:50:46] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type K) (2/15)
[08:50:47] [User Authenticator #25/INFO]: UUID of player YOLO is 3385946b-bc45-3ccd-b201-244be822c585
[08:50:47] [Server thread/INFO]: YOLO joined the game
[08:50:47] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded YOLO's data in 13 ms.
[08:50:47] [Server thread/INFO]: YOLO[/49.36.233.26:51274] logged in with entity id 5995 at ([spawn]-139.0, 145.0, 93.0)
[08:50:51] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:50:55] [User Authenticator #25/INFO]: UUID of player Blissolic is 41649d7a-c725-3485-985f-604471a8cc94
[08:50:55] [Server thread/INFO]: Blissolic joined the game
[08:50:55] [Server thread/INFO]: Blissolic[/103.190.228.68:56084] logged in with entity id 6001 at ([spawn]129.70709726852613, 38.0, 216.001359258653)
[08:50:55] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded Blissolic's data in 32 ms.
[08:50:57] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type W) (1/5)
[08:50:57] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type I) (3/8)
[08:50:57] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type K) (3/15)
[08:51:00] [Async Chat Thread - #19/INFO]: [Not Secure] Member  | YOLO Gold I ? DAMN MY NET IS so f trash
[08:51:09] [Async Chat Thread - #19/INFO]: [Not Secure] Member  | YOLO Gold I ? blue come cpvp
[08:51:11] [Server thread/INFO]: BlueBell721 issued server command: /chatcolor dark_red
[08:51:14] [User Authenticator #25/INFO]: UUID of player aayu52232 is ff3fd8f6-e5ab-3b66-978a-aa544c80d7cb
[08:51:14] [ForkJoinPool.commonPool-worker-2/INFO]: StrikePractice >> Creating a new playerdata file. UUID: ff3fd8f6-e5ab-3b66-978a-aa544c80d7cb
[08:51:14] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded aayu52232's data in 2 ms.
[08:51:14] [Server thread/INFO]: aayu52232 joined the game
[08:51:14] [Server thread/INFO]: aayu52232[/45.115.107.36:46726] logged in with entity id 6064 at ([spawn]-142.5, 145.0, 89.5)
[08:51:17] [Async Chat Thread - #18/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? k
[08:51:17] [Server thread/INFO]: arsh_ikram issued server command: /tank
[08:51:19] [Server thread/INFO]: priyanshu155 lost connection: Disconnected
[08:51:19] [Server thread/INFO]: priyanshu155 left the game
[08:51:20] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[08:51:27] [Server thread/INFO]: aayu52232 issued server command: /unranked
[08:51:32] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:51:39] [Server thread/INFO]: aayu52232 issued server command: /queue leave
[08:51:42] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:51:48] [Server thread/INFO]: [Essentials] Created a User for FFA (854d166b-4201-255e-85a3-56b27290fa11) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:51:50] [Server thread/INFO]: YOLO issued server command: /stats
[08:51:51] [Server thread/INFO]: aayu52232 issued server command: /smp
[08:51:55] [Async Chat Thread - #19/INFO]: [Not Secure] Member  | YOLO Gold I ? woah-
[08:51:56] [Server thread/INFO]: BlueBell721 issued server command: /kick YOLO
[08:51:56] [Server thread/INFO]: YOLO lost connection: Kicked from server.
[08:51:56] [Server thread/INFO]: YOLO left the game
[08:51:56] [Server thread/INFO]: [Essentials] Player BlueBell721 kicked YOLO for Kicked from server..
[08:51:56] [Async Chat Thread - #19/INFO]: [Not Secure] Member  | HatLassyMC Gold I ? wait
[08:51:58] [Async Chat Thread - #18/INFO]: [Not Secure] Member  | DavenMC Gold I ? ok
[08:52:00] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:52:02] [User Authenticator #25/INFO]: UUID of player YOLO is 3385946b-bc45-3ccd-b201-244be822c585
[08:52:02] [Server thread/INFO]: YOLO joined the game
[08:52:02] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded YOLO's data in 11 ms.
[08:52:02] [Server thread/INFO]: YOLO[/49.36.233.26:57124] logged in with entity id 6413 at ([spawn]-139.0, 145.0, 93.0)
[08:52:07] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:52:08] [Async Chat Thread - #18/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? dont spawntrap
[08:52:10] [Async Chat Thread - #18/INFO]: [Not Secure] Member  | YOLO Gold I ? sorrry
[08:52:11] [User Authenticator #25/INFO]: UUID of player IndiaLuxYT is 16b33485-429e-360d-87bc-6eeb9cd22d3e
[08:52:12] [Server thread/INFO]: IndiaLuxYT joined the game
[08:52:12] [Server thread/INFO]: IndiaLuxYT[/45.115.107.36:47284] logged in with entity id 6570 at ([spawn]-138.47400085496497, 145.0, 93.20899772413625)
[08:52:12] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded IndiaLuxYT's data in 42 ms.
[08:52:18] [Server thread/INFO]: Blissolic issued server command: /unranked
[08:52:20] [Server thread/INFO]: IndiaLuxYT issued server command: /smp
[08:52:21] [Server thread/INFO]: Blissolic issued server command: /unranked
[08:52:22] [Server thread/INFO]: arsh_ikram issued server command: /duel mai_hu_daku
[08:52:22] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type K) (4/15)
[08:52:22] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type I) (4/8)
[08:52:22] [Server thread/INFO]: Blissolic issued server command: /ranked
[08:52:23] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type H) (1/8)
[08:52:23] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type K) (5/15)
[08:52:24] [Server thread/INFO]: arsh_ikram issued server command: /spawn
[08:52:26] [Server thread/INFO]: Blissolic issued server command: /unranked
[08:52:29] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:52:29] [Async Chat Thread - #19/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? star_77
[08:52:30] [Async Chat Thread - #18/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? aimbot
[08:52:35] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:52:37] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:52:37] [Server thread/INFO]: arsh_ikram issued server command: /cpvp
[08:52:39] [Async Chat Thread - #18/INFO]: [Not Secure] Member  | YOLO Gold I ? lol
[08:52:40] [Async Chat Thread - #20/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? stop it
[08:52:41] [Async Chat Thread - #20/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? or ban
[08:52:42] [Async Chat Thread - #18/INFO]: [Not Secure] Member  | HatLassyMC Gold I ? k go
[08:52:47] [Server thread/INFO]: Blissolic issued server command: /queue leave
[08:52:50] [Server thread/INFO]: Blissolic issued server command: /cpvp
[08:52:52] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:52:53] [Server thread/INFO]: DavenMC issued server command: /ranked
[08:53:02] [Server thread/INFO]: DavenMC issued server command: /axe
[08:53:05] [Server thread/INFO]: HatLassyMC issued server command: /smp
[08:53:06] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:53:13] [Server thread/INFO]: DavenMC issued server command: /spanw
[08:53:14] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:53:33] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[08:53:52] [Server thread/INFO]: FAHIMGAMING854 issued server command: /party create
[08:54:00] [Server thread/INFO]: FAHIMGAMING854 issued server command: /party disband
[08:54:03] [Server thread/INFO]: Star_77 issued server command: /axe
[08:54:21] [Server thread/INFO]: FAHIMGAMING854 issued server command: /kiteditor
[08:54:40] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:54:40] [Server thread/INFO]: DavenMC issued server command: /smp
[08:54:40] [Server thread/INFO]: mai_hu_daku lost connection: Disconnected
[08:54:40] [Server thread/INFO]: mai_hu_daku left the game
[08:54:48] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:54:49] [Server thread/INFO]: SzPlayz issued server command: /tank
[08:54:51] [Server thread/INFO]: Applied effect Night Vision to Blissolic
[08:54:51] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:54:51] [Server thread/INFO]: Applied effect Night Vision to Blissolic
[08:54:52] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:54:52] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:54:52] [Server thread/INFO]: Applied effect Night Vision to Blissolic
[08:54:52] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[08:54:52] [Server thread/INFO]: BlueBell721 left the game
[08:54:54] [Server thread/INFO]: SzPlayz issued server command: /spawn
[08:54:56] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:54:56] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:54:56] [Server thread/INFO]: Applied effect Night Vision to Blissolic
[08:54:58] [Server thread/INFO]: arsh_ikram issued server command: /tank
[08:55:05] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[08:55:16] [Async Chat Thread - #21/INFO]: [Not Secure] Member  | YOLO Gold I ? stop running
[08:55:18] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[08:55:22] [Server thread/INFO]: [Essentials] Created a User for CIT-d2a8e3b75f0f (d2a8e3b7-5f0f-2224-bbfe-3e51e817047d) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:55:25] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[08:55:26] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[08:55:29] [Server thread/INFO]: aayu52232 issued server command: /smp
[08:55:32] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[08:55:38] [Server thread/INFO]: SzPlayz issued server command: /spaw
[08:55:44] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:55:47] [Async Chat Thread - #22/INFO]: [Not Secure] Member  | YOLO Gold I ? wtf
[08:55:48] [Server thread/INFO]: [Essentials] Created a User for CIT-8b1a078e3cc0 (8b1a078e-3cc0-2530-a1ed-aea2e6060bab) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:55:54] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[08:56:04] [Server thread/INFO]: FAHIMGAMING854 issued server command: /kiteditor
[08:56:07] [Server thread/INFO]: Star_77 issued server command: /botduel
[08:56:10] [Server thread/INFO]: Star_77 issued server command: /botduel
[08:56:12] [Server thread/INFO]: Star_77 issued server command: /unranked
[08:56:13] [Server thread/INFO]: IndiaLuxYT issued server command: /cpvp
[08:56:16] [Server thread/INFO]: Star_77 issued server command: /ranked
[08:56:17] [Server thread/INFO]: Blissolic issued server command: /nethpot
[08:56:17] [luckperms-command-executor/INFO]: [LP] Set gadgetsmenu.cloaks.icewings to true for davenmc in context global.
[08:56:25] [Server thread/INFO]: Star_77 issued server command: /warp parkour
[08:56:25] [Async Chat Thread - #22/INFO]: [Not Secure] Member  | YOLO Gold I ? F
[08:56:29] [Async Chat Thread - #21/INFO]: [Not Secure] Member  | YOLO Gold I ? Bruhh
[08:56:34] [Server thread/INFO]: arsh_ikram lost connection: Disconnected
[08:56:34] [Server thread/INFO]: arsh_ikram left the game
[08:56:34] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:34] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:34] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:35] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:35] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:35] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:36] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:36] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:36] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:36] [Server thread/INFO]: DavenMC issued server command: /smp
[08:56:37] [Async Chat Thread - #21/INFO]: [Not Secure] Member  | YOLO Gold I ? Blueeeee
[08:56:37] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:37] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:37] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:37] [Server thread/INFO]: YOLO issued server command: /cpvp
[08:56:38] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (1/25)
[08:56:38] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (2/25)
[08:56:38] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:38] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:38] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:39] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:39] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:39] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:39] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (3/25)
[08:56:39] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (4/25)
[08:56:39] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (5/25)
[08:56:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:56:41] [Server thread/INFO]: Applied effect Night Vision to IndiaLuxYT
[08:56:48] [Server thread/INFO]: Unknown command. Type "/help" for help.
[08:56:48] [Server thread/INFO]: SzPlayz issued server command: /unranked
[08:56:48] [Server thread/INFO]: You whisper to SzPlayz: Do /vote --> Click on link and vote --> Get free MysteryDust --> Purchase cool Cosmetics!
[08:56:52] [Server thread/INFO]: SzPlayz issued server command: /unranked
[08:56:54] [Server thread/INFO]: aayu52232 issued server command: /cpvp
[08:56:59] [Server thread/INFO]: SzPlayz issued server command: /warp parkour
[08:56:59] [Server thread/INFO]: SzPlayz issued server command: /unranked
[08:57:14] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (6/25)
[08:57:14] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (7/25)
[08:57:14] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (8/25)
[08:57:14] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (9/25)
[08:57:14] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (10/25)
[08:57:15] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (11/25)
[08:57:18] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (12/25)
[08:57:18] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (13/25)
[08:57:18] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (14/25)
[08:57:19] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (15/25)
[08:57:19] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (16/25)
[08:57:19] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Jump (Type A) (17/25)
[08:57:19] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Blissolic failed Improbable (Type B) (1/1)
[08:57:20] [pool-71-thread-1/INFO]: ---?--*-------------------------------------*--?---
[08:57:20] [pool-71-thread-1/INFO]: ?[Cloudily] has detected Blissolic to be cheating and has removed them from the network.
[08:57:20] [pool-71-thread-1/INFO]: ---?--*-------------------------------------*--?---
[08:57:20] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /tempban Blissolic 3h [Cloudily] Unfair Advantage
[08:57:20] [Server thread/INFO]: Blissolic lost connection: You have been temporarily banned for 3 hours:
[Cloudily] Unfair Advantage
[08:57:20] [Server thread/INFO]: Blissolic left the game
[08:57:20] [Server thread/INFO]: [Essentials] Player Console temporarily banned Blissolic for 3 hours: [Cloudily] Unfair Advantage.
[08:57:24] [Craft Scheduler Thread - 101 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[08:57:24] [Craft Scheduler Thread - 101 - Vulcan/INFO]: In the past 6 hours, [Cloudily] has punished 1386 players.
[08:57:24] [Craft Scheduler Thread - 101 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[08:57:26] [Server thread/INFO]: FAHIMGAMING854 issued server command: /sprac setediting
[08:57:30] [Server thread/INFO]: FAHIMGAMING854 issued server command: /kiteditor
[08:57:34] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:57:35] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[08:57:39] [Server thread/INFO]: IndiaLuxYT issued server command: /hub
[08:57:39] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[08:57:42] [Server thread/INFO]: DavenMC issued server command: /spawn
[08:57:46] [pool-71-thread-1/INFO]: ?b?l[Cloudily] Star_77 failed Aim (Type K) (6/15)
[08:57:56] [Server thread/INFO]: [Essentials] Created a User for CIT-a45955c7a59d (a45955c7-a59d-2331-8138-bc29249810f5) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:57:57] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:58:01] [Server thread/INFO]: Applied effect Night Vision to aayu52232
[08:58:01] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:01] [Server thread/INFO]: Applied effect Night Vision to aayu52232
[08:58:04] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:04] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:04] [Server thread/INFO]: Applied effect Night Vision to aayu52232
[08:58:04] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[08:58:04] [Server thread/INFO]: DavenMC issued server command: /unranked
[08:58:06] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:06] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:06] [Server thread/INFO]: Applied effect Night Vision to aayu52232
[08:58:07] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:07] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:07] [Server thread/INFO]: Applied effect Night Vision to aayu52232
[08:58:08] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:08] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[08:58:08] [Server thread/INFO]: Applied effect Night Vision to aayu52232
[08:58:08] [Server thread/INFO]: IndiaLuxYT issued server command: /ranked
[08:58:12] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[08:58:22] [Server thread/INFO]: DavenMC issued server command: /stats hatlassy
[08:58:27] [Server thread/INFO]: HatLassyMC issued server command: /nethpot
[08:58:27] [Server thread/INFO]: [Essentials] Created a User for CIT-a929fd766654 (a929fd76-6654-209a-954c-d751fbfc48ef) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[08:58:31] [Server thread/INFO]: IndiaLuxYT issued server command: /duel aayu52232
[08:58:34] [Server thread/INFO]: DavenMC issued server command: /stats pronit
[08:58:35] [Server thread/INFO]: aayu52232 issued server command: /ok
[08:58:37] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:58:40] [Server thread/INFO]: aayu52232 issued server command: /duel accept IndiaLuxYT
[08:58:43] [Server thread/INFO]: DavenMC issued server command: /ranked
[08:58:50] [Server thread/INFO]: DavenMC issued server command: /unranked
[08:58:51] [Server thread/INFO]: HatLassyMC issued server command: /smp
[08:58:54] [Server thread/INFO]: DavenMC lost connection: Disconnected
[08:58:54] [Server thread/INFO]: DavenMC left the game
[08:59:06] [Server thread/INFO]: NOTUDIT issued server command: /spectate GATRU__PLAYZ
[08:59:12] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:59:17] [User Authenticator #26/INFO]: UUID of player herovrine is 50bd27d6-dcde-3337-8dfe-ddb0e4f27383
[08:59:17] [Server thread/INFO]: herovrine joined the game
[08:59:17] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded herovrine's data in 13 ms.
[08:59:17] [Server thread/INFO]: herovrine[/110.235.237.101:37046] logged in with entity id 8601 at ([spawn]-136.7274262926527, 145.0, 109.79026812707977)
[08:59:20] [Server thread/INFO]: HatLassyMC issued server command: /spawn
[08:59:28] [Server thread/INFO]: HatLassyMC issued server command: /unranked
[08:59:38] [Server thread/INFO]: herovrine issued server command: /duel GATRU__PLAYZ
[08:59:41] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[08:59:44] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[08:59:48] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept herovrine
[08:59:48] [Server thread/INFO]: NOTUDIT issued server command: /gmenu main
[08:59:49] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[08:59:51] [Server thread/INFO]: NOTUDIT issued server command: /gmenu main
[08:59:53] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[08:59:53] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[08:59:55] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[08:59:55] [Server thread/INFO]: NOTUDIT issued server command: /spectate GATRU__PLAYZ
[08:59:59] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[09:00:00] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:00:02] [Server thread/INFO]: HatLassyMC issued server command: /gmenu main
[09:00:07] [Async Chat Thread - #23/INFO]: [Not Secure] Member  | YOLO Gold I ? cpvp someone?
[09:00:08] [Async Chat Thread - #23/INFO]: [Not Secure] Member  | IndiaLuxYT Silver V ? gg
[09:00:12] [Server thread/INFO]: HatLassyMC issued server command: /nethpot
[09:00:12] [Server thread/INFO]: IndiaLuxYT issued server command: /duel aayu52232
[09:00:19] [Server thread/INFO]: Star_77 lost connection: Disconnected
[09:00:19] [Server thread/INFO]: Star_77 left the game
[09:00:20] [Server thread/INFO]: [Essentials] Created a User for CIT-0c0dd01c1cb3 (0c0dd01c-1cb3-2d39-b910-4b38c01f8086) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:00:27] [Server thread/INFO]: HatLassyMC lost connection: Disconnected
[09:00:27] [Server thread/INFO]: HatLassyMC left the game
[09:00:34] [Async Chat Thread - #23/INFO]: [Not Secure] Member  | YOLO Gold I ? someone cpvp?
[09:00:38] [Server thread/INFO]: IndiaLuxYT issued server command: /kill
[09:00:38] [Server thread/INFO]: [Essentials] IndiaLuxYT was denied access to command.
[09:00:40] [Server thread/INFO]: IndiaLuxYT lost connection: Disconnected
[09:00:40] [Server thread/INFO]: IndiaLuxYT left the game
[09:00:40] [Server thread/INFO]: No player was found
[09:00:40] [Server thread/INFO]: No player was found
[09:00:40] [Server thread/INFO]: No player was found
[09:00:40] [Server thread/INFO]: No player was found
[09:00:40] [Server thread/INFO]: No player was found
[09:00:40] [Server thread/INFO]: No player was found
[09:00:40] [Server thread/INFO]: No player was found
[09:00:44] [User Authenticator #27/INFO]: UUID of player IndiaLuxYT is 16b33485-429e-360d-87bc-6eeb9cd22d3e
[09:00:44] [Server thread/INFO]: IndiaLuxYT joined the game
[09:00:44] [Server thread/INFO]: IndiaLuxYT[/45.115.107.36:53258] logged in with entity id 9110 at ([Arenas_2]730.3415222633743, 5.814938903658573, -519.6539321068885)
[09:00:44] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded IndiaLuxYT's data in 36 ms.
[09:00:45] [Server thread/INFO]: aayu52232 lost connection: Disconnected
[09:00:45] [Server thread/INFO]: aayu52232 left the game
[09:00:48] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[09:00:51] [Server thread/INFO]: IndiaLuxYT issued server command: /duel aayu52232
[09:00:54] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:00:55] [User Authenticator #27/INFO]: UUID of player aayu52232 is ff3fd8f6-e5ab-3b66-978a-aa544c80d7cb
[09:00:56] [Server thread/INFO]: aayu52232 joined the game
[09:00:56] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded aayu52232's data in 31 ms.
[09:00:56] [Server thread/INFO]: aayu52232[/45.115.107.36:40898] logged in with entity id 9121 at ([spawn]-139.0, 145.0, 93.0)
[09:00:58] [Server thread/INFO]: IndiaLuxYT issued server command: /duel aayu52232
[09:01:07] [Async Chat Thread - #23/INFO]: [Not Secure] Member  | YOLO Gold I ? \cpvp sopmeone?
[09:01:11] [Server thread/INFO]: [Essentials] Created a User for CIT-bb304ed117b1 (bb304ed1-17b1-218d-acf1-86ab39f23b88) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:01:14] [Server thread/INFO]: aayu52232 issued server command: /duel accept IndiaLuxYT
[09:01:18] [User Authenticator #27/INFO]: UUID of player Krush1298F is 7cad3671-e0ce-3595-857e-da218fef5381
[09:01:18] [Server thread/INFO]: Krush1298F joined the game
[09:01:18] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded Krush1298F's data in 12 ms.
[09:01:18] [Server thread/INFO]: Krush1298F[/103.198.99.215:37866] logged in with entity id 9129 at ([spawn]-139.0, 145.0, 93.0)
[09:01:22] [Server thread/INFO]: SzPlayz issued server command: /spawn
[09:01:23] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[09:01:24] [Server thread/INFO]: YOLO lost connection: Disconnected
[09:01:24] [Server thread/INFO]: YOLO left the game
[09:01:24] [Server thread/INFO]: Krush1298F issued server command: /smp
[09:01:25] [Server thread/INFO]: SzPlayz issued server command: /warp spawn
[09:01:25] [pool-72-thread-1/INFO]: [Vulcan] herovrine position was updated for being on a ghost block! (Arenas_1, 274, 154, -21) ?7[13]
[09:01:36] [Server thread/INFO]: SzPlayz lost connection: Disconnected
[09:01:36] [Server thread/INFO]: SzPlayz left the game
[09:01:44] [User Authenticator #27/INFO]: UUID of player FZ_ITACHI69 is 22770da4-db40-367f-acb5-83da89764db3
[09:01:45] [Server thread/INFO]: FZ_ITACHI69 joined the game
[09:01:45] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded FZ_ITACHI69's data in 14 ms.
[09:01:45] [Server thread/INFO]: FZ_ITACHI69[/42.109.222.4:42662] logged in with entity id 9148 at ([spawn]-132.38235611610472, 145.0, 110.48144955184057)
[09:01:50] [Server thread/INFO]: FAHIMGAMING854 issued server command: /kiteditor
[09:01:52] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:01:59] [User Authenticator #27/INFO]: UUID of player DavenMC is bd0f04ce-af11-3b66-9cc1-8e68a6f84a39
[09:01:59] [Server thread/INFO]: DavenMC joined the game
[09:02:00] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded DavenMC's data in 23 ms.
[09:02:00] [Server thread/INFO]: DavenMC[/39.36.240.228:32830] logged in with entity id 9151 at ([spawn]-137.00932118742128, 145.41680087548002, 85.17196471778655)
[09:02:09] [Server thread/INFO]: [Essentials] Created a User for CIT-3895c71c5688 (3895c71c-5688-2ae2-8cae-8387f4a88f3b) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:02:12] [Server thread/INFO]: FZ_ITACHI69 issued server command: /nethpot
[09:02:16] [Server thread/INFO]: DavenMC issued server command: /smp
[09:02:31] [User Authenticator #27/INFO]: UUID of player _NotAdi669 is ae0fb921-cb7f-3812-9e5d-f008ca08df54
[09:02:31] [Server thread/INFO]: _NotAdi669 joined the game
[09:02:31] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded _NotAdi669's data in 48 ms.
[09:02:31] [Server thread/INFO]: _NotAdi669[/49.33.203.220:33280] logged in with entity id 9217 at ([spawn]-139.0, 145.0, 93.0)
[09:02:31] [Server thread/INFO]: FAHIMGAMING854 issued server command: /unranked
[09:02:37] [Server thread/INFO]: Krush1298F issued server command: /smp
[09:02:38] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:03:01] [Server thread/INFO]: [Essentials] Created a User for CIT-82016c055889 (82016c05-5889-2e46-a6c2-61fb5168deea) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:03:04] [User Authenticator #27/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[09:03:04] [Server thread/INFO]: BlueBell721 joined the game
[09:03:04] [Server thread/INFO]: BlueBell721[/27.0.177.20:43958] logged in with entity id 9496 at ([spawn]-139.0, 145.0, 93.0)
[09:03:04] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded BlueBell721's data in 58 ms.
[09:03:23] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[09:03:26] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:03:33] [Server thread/INFO]: Krush1298F issued server command: /smp
[09:03:41] [Server thread/INFO]: [Essentials] Created a User for CIT-5d8568897a06 (5d856889-7a06-21e7-b540-065eac4e263e) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:03:41] [Server thread/INFO]: Applied effect Night Vision to BlueBell721
[09:03:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:03:41] [Server thread/INFO]: Applied effect Night Vision to BlueBell721
[09:03:45] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[09:03:59] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:04] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:07] [Server thread/INFO]: FZ_ITACHI69 issued server command: /hub
[09:04:12] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:12] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:04:14] [Server thread/INFO]: FZ_ITACHI69 issued server command: /lobby
[09:04:20] [User Authenticator #28/INFO]: UUID of player JAY15122004 is 2f54bc52-6f3f-3df1-9400-4711957670c3
[09:04:20] [Server thread/INFO]: JAY15122004 joined the game
[09:04:20] [Server thread/INFO]: JAY15122004[/49.34.195.131:33282] logged in with entity id 9653 at ([spawn]-139.0, 145.0, 93.0)
[09:04:20] [ForkJoinPool.commonPool-worker-12/INFO]: Loaded JAY15122004's data in 71 ms.
[09:04:22] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:30] [Server thread/INFO]: [Essentials] Created a User for CIT-644576bfc647 (644576bf-c647-2719-b85b-c739f8bc0272) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:04:35] [Server thread/INFO]: JAY15122004 lost connection: Disconnected
[09:04:35] [Server thread/INFO]: JAY15122004 left the game
[09:04:35] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[09:04:41] [Server thread/INFO]: FAHIMGAMING854 issued server command: /botduel
[09:04:44] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:46] [Server thread/INFO]: [Essentials] Created a User for Cosmetics (3ba4f125-b8b4-280f-90f4-f2eaf1408d26) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:04:47] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:49] [Server thread/INFO]: herovrine issued server command: /gmenu main
[09:04:49] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:04:50] [Server thread/INFO]: FZ_ITACHI69 issued server command: /help
[09:04:50] [Server thread/INFO]: [Essentials] FZ_ITACHI69 was denied access to command.
[09:04:55] [User Authenticator #28/INFO]: UUID of player JAY15122004 is 2f54bc52-6f3f-3df1-9400-4711957670c3
[09:04:55] [Server thread/INFO]: JAY15122004 joined the game
[09:04:55] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded JAY15122004's data in 12 ms.
[09:04:55] [Server thread/INFO]: JAY15122004[/49.34.195.131:43710] logged in with entity id 9699 at ([spawn]-139.0, 145.0, 93.0)
[09:04:57] [Server thread/INFO]: [Essentials] Created a User for CIT-c1744fb81047 (c1744fb8-1047-28dd-bf37-72acbadf3613) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:05:01] [Server thread/INFO]: herovrine issued server command: /nethpot
[09:05:06] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[09:05:09] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:05:12] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:05:17] [Server thread/INFO]: [Essentials] Created a User for MYSTERYDUST! (268026bf-57e3-230a-8d77-f76e053ca88f) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:05:25] [Server thread/INFO]: FAHIMGAMING854 issued server command: /ranked
[09:05:28] [Server thread/INFO]: DavenMC issued server command: /spawn
[09:05:32] [Server thread/INFO]: Krush1298F issued server command: /axe
[09:05:36] [Server thread/INFO]: BlueBell721 issued server command: /nethpot
[09:05:37] [Server thread/INFO]: _NotAdi669 issued server command: /unranked
[09:05:38] [Server thread/INFO]: FAHIMGAMING854 issued server command: /nethpot
[09:05:40] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:05:41] [Server thread/INFO]: JAY15122004 issued server command: /warp parkour
[09:05:52] [Server thread/INFO]: herovrine issued server command: /spawn
[09:05:55] [Server thread/INFO]: DavenMC issued server command: /nethpot
[09:05:58] [Server thread/INFO]: IndiaLuxYT issued server command: /duel aayu52232
[09:06:00] [Server thread/INFO]: _NotAdi669 issued server command: /unranked
[09:06:01] [Async Chat Thread - #25/INFO]: [Not Secure] Member  | FZ_ITACHI69 Silver V ? spectate notudit
[09:06:03] [Server thread/INFO]: Krush1298F lost connection: Disconnected
[09:06:03] [Server thread/INFO]: Krush1298F left the game
[09:06:12] [Server thread/INFO]: herovrine issued server command: /duel FZ_ITACHI69
[09:06:12] [Server thread/INFO]: FAHIMGAMING854 lost connection: Disconnected
[09:06:12] [Server thread/INFO]: FAHIMGAMING854 left the game
[09:06:13] [Server thread/INFO]: FZ_ITACHI69 issued server command: /spectate notudit
[09:06:14] [Server thread/INFO]: DavenMC issued server command: /spawn
[09:06:19] [Server thread/INFO]: FZ_ITACHI69 issued server command: /duel accept herovrine
[09:06:22] [Server thread/INFO]: _NotAdi669 issued server command: /unranked
[09:06:28] [Server thread/INFO]: BlueBell721 issued server command: /tp herovrine
[09:06:36] [Async Chat Thread - #26/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? areelol
[09:06:42] [Async Chat Thread - #25/INFO]: [Not Secure] Emperor  | herovrine Gold I ? lol
[09:06:44] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:06:45] [Server thread/INFO]: BlueBell721 issued server command: /gamemode spectator
[09:06:49] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:06:52] [Server thread/INFO]: DavenMC issued server command: /nethpot
[09:06:59] [Async Chat Thread - #25/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? anyone
[09:07:00] [Async Chat Thread - #26/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? duel
[09:07:00] [User Authenticator #29/INFO]: UUID of player gamervardam is 8bcfb89e-435a-3239-b49c-8350cb8d2405
[09:07:00] [Server thread/INFO]: gamervardam joined the game
[09:07:00] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded gamervardam's data in 11 ms.
[09:07:00] [Server thread/INFO]: gamervardam[/27.63.12.233:50256] logged in with entity id 10231 at ([spawn]-139.0, 145.0, 93.0)
[09:07:03] [Server thread/INFO]: DavenMC issued server command: /spawn
[09:07:03] [User Authenticator #29/INFO]: UUID of player Craniax_6 is a9d3a37b-5a8d-3a4a-80ac-bbd3286070f2
[09:07:03] [Server thread/INFO]: Craniax_6 joined the game
[09:07:03] [ForkJoinPool.commonPool-worker-1/INFO]: StrikePractice >> Creating a new playerdata file. UUID: a9d3a37b-5a8d-3a4a-80ac-bbd3286070f2
[09:07:03] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded Craniax_6's data in 3 ms.
[09:07:03] [Server thread/INFO]: Craniax_6[/49.34.115.223:50266] logged in with entity id 10232 at ([spawn]-137.5, 145.0, 93.5)
[09:07:11] [Server thread/INFO]: DavenMC issued server command: /ranked
[09:07:12] [Server thread/INFO]: DavenMC issued server command: /unranked
[09:07:16] [Server thread/INFO]: _NotAdi669 issued server command: /party create
[09:07:20] [Server thread/INFO]: DavenMC issued server command: /smp
[09:07:25] [Server thread/INFO]: DavenMC issued server command: /spawn
[09:07:26] [Server thread/INFO]: DavenMC issued server command: /papi
[09:07:29] [Async Chat Thread - #25/INFO]: [Not Secure] Member  | _NotAdi669 Silver V ? party invite Craniax_6
[09:07:30] [Server thread/INFO]: DavenMC issued server command: /kiteditor
[09:07:32] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:07:35] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[09:07:36] [Server thread/INFO]: IndiaLuxYT issued server command: /unranked
[09:07:37] [Async Chat Thread - #26/INFO]: [Not Secure] Member  | _NotAdi669 Silver V ? nvmmm
[09:07:37] [Server thread/INFO]: DavenMC issued server command: /lp editor
[09:07:39] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:07:40] [Server thread/INFO]: IndiaLuxYT issued server command: /queue leave
[09:07:42] [Server thread/INFO]: IndiaLuxYT issued server command: /duel aayu52232
[09:07:42] [Server thread/INFO]: DavenMC issued server command: /lp editor
[09:07:46] [Server thread/INFO]: _NotAdi669 issued server command: /party inviteCraniax_6
[09:07:48] [Server thread/INFO]: DavenMC issued server command: /lp user
[09:07:48] [Server thread/INFO]: aayu52232 issued server command: /duel accept IndiaLuxYT
[09:07:48] [Server thread/INFO]: aayu52232 issued server command: /duel accept IndiaLuxYT
[09:07:51] [Async Chat Thread - #26/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? 400 ping
[09:07:59] [Server thread/INFO]: gamervardam issued server command: /ranked
[09:08:06] [Server thread/INFO]: _NotAdi669 issued server command: /party invite Craniax_6
[09:08:21] [Async Chat Thread - #25/INFO]: [Not Secure] Member  | _NotAdi669 Silver V ? accept
[09:08:21] [Server thread/INFO]: BlueBell721 issued server command: /nethpot
[09:08:23] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:08:25] [Server thread/INFO]: JAY15122004 issued server command: /unranked
[09:08:26] [Async Chat Thread - #25/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? rejoin krta hu
[09:08:27] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:08:28] [Server thread/INFO]: Craniax_6 lost connection: Disconnected
[09:08:28] [Server thread/INFO]: Craniax_6 left the game
[09:08:34] [Async Chat Thread - #26/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? herovrine
[09:08:37] [Async Chat Thread - #26/INFO]: [Not Secure] Emperor  | herovrine Gold I ? ha?
[09:08:38] [Async Chat Thread - #25/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? nethpot ffa aja
[09:08:39] [Server thread/INFO]: gamervardam issued server command: /smp
[09:08:40] [Server thread/INFO]: JAY15122004 issued server command: /queue leave
[09:08:42] [Server thread/INFO]: JAY15122004 issued server command: /ranked
[09:08:42] [Async Chat Thread - #26/INFO]: [Not Secure] Emperor  | herovrine Gold I ? wai
[09:08:44] [User Authenticator #30/INFO]: UUID of player Craniax_6 is a9d3a37b-5a8d-3a4a-80ac-bbd3286070f2
[09:08:44] [Server thread/INFO]: Craniax_6 joined the game
[09:08:44] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded Craniax_6's data in 16 ms.
[09:08:44] [Server thread/INFO]: Craniax_6[/157.32.100.135:51810] logged in with entity id 10372 at ([spawn]-139.5507799063172, 145.0, 97.01158716967687)
[09:08:49] [Server thread/INFO]: JAY15122004 issued server command: /unranked
[09:08:53] [Server thread/INFO]: JAY15122004 issued server command: /warp spawn
[09:08:57] [Server thread/INFO]: _NotAdi669 issued server command: /party invite Craniax_6
[09:09:00] [Server thread/INFO]: Craniax_6 issued server command: /party join _NotAdi669
[09:09:02] [Server thread/INFO]: JAY15122004 issued server command: /axe
[09:09:03] [Server thread/INFO]: _NotAdi669 issued server command: /party fight
[09:09:27] [Server thread/INFO]: ToiviDev issued server command: /ping PronitXpro
[09:09:47] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[09:09:48] [Server thread/INFO]: BlueBell721 left the game
[09:09:49] [User Authenticator #31/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[09:09:49] [Server thread/INFO]: BlueBell721 joined the game
[09:09:49] [Server thread/INFO]: BlueBell721[/27.0.177.20:55520] logged in with entity id 10405 at ([spawn]-139.0, 145.0, 93.0)
[09:09:49] [Server thread/INFO]: JAY15122004 issued server command: /1v1 _NotAdi669
[09:09:49] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded BlueBell721's data in 143 ms.
[09:09:51] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[09:09:51] [Server thread/INFO]: BlueBell721 left the game
[09:09:52] [User Authenticator #31/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[09:09:52] [Server thread/INFO]: BlueBell721 joined the game
[09:09:52] [Server thread/INFO]: BlueBell721[/27.0.177.20:55532] logged in with entity id 10406 at ([spawn]-139.0, 145.0, 93.0)
[09:09:52] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded BlueBell721's data in 89 ms.
[09:09:57] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? gg
[09:09:58] [Async Chat Thread - #28/INFO]: [Not Secure] Member  | _NotAdi669 Silver V ? lagg
[09:10:02] [Server thread/INFO]: ToiviDev issued server command: /list
[09:10:03] [Server thread/INFO]: ToiviDev issued server command: /tps
[09:10:04] [Server thread/INFO]: ToiviDev issued server command: /mspt
[09:10:08] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | _NotAdi669 Silver V ? 112 ping lock?
[09:10:14] [Server thread/INFO]: _NotAdi669 issued server command: /party fight
[09:10:16] [Async Chat Thread - #28/INFO]: [Not Secure] Member  | JAY15122004 Silver V ? pls anyone come in diamond pot
[09:10:23] [Server thread/INFO]: BlueBell721 issued server command: /staffchat
[09:10:24] [Server thread/INFO]: [StaffChat] BlueBell721 > hm
[09:10:26] [Server thread/INFO]: [StaffChat] BlueBell721 > toivi
[09:10:27] [User Authenticator #31/INFO]: UUID of player smth_dumb is 2079da62-702f-37f1-9ed3-986438ae2bb2
[09:10:27] [Server thread/INFO]: smth_dumb joined the game
[09:10:27] [Server thread/INFO]: smth_dumb[/47.15.42.9:34260] logged in with entity id 10433 at ([spawn]-139.0, 145.0, 93.0)
[09:10:27] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded smth_dumb's data in 29 ms.
[09:10:32] [Server thread/INFO]: ToiviDev issued server command: /staffchat
[09:10:34] [Server thread/INFO]: [StaffChat] BlueBell721 > the ping is a LOT better
[09:10:35] [Server thread/INFO]: [StaffChat] ToiviDev > i am dying do
[09:10:35] [Server thread/INFO]: [StaffChat] BlueBell721 > but
[09:10:36] [Server thread/INFO]: [StaffChat] BlueBell721 > its
[09:10:41] [Server thread/INFO]: [StaffChat] BlueBell721 > unstable
[09:10:43] [Server thread/INFO]: [StaffChat] ToiviDev > the server is having unstable ping
[09:10:44] [Server thread/INFO]: gamervardam lost connection: Disconnected
[09:10:44] [Server thread/INFO]: gamervardam left the game
[09:10:47] [Server thread/INFO]: [StaffChat] ToiviDev > i am getting ddosed
[09:10:52] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:10:53] [Server thread/INFO]: [StaffChat] ToiviDev > and the main control panel is fucked
[09:10:54] [Server thread/INFO]: [StaffChat] BlueBell721 > yeah i thought so
[09:10:56] [Server thread/INFO]: smth_dumb lost connection: Disconnected
[09:10:56] [Server thread/INFO]: smth_dumb left the game
[09:10:57] [Async Chat Thread - #28/INFO]: [Not Secure] Member  | JAY15122004 Silver V ? pls anyone come pls
[09:10:58] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:11:11] [Async Chat Thread - #28/INFO]: [Not Secure] Member  | JAY15122004 Silver V ? pls anyone come in diamond pot
[09:11:12] [Server thread/INFO]: [StaffChat] BlueBell721 > should we just close the server
[09:11:23] [Server thread/INFO]: [StaffChat] BlueBell721 > like it will put bad imprssion on players
[09:11:27] [User Authenticator #32/INFO]: UUID of player Hell_ki_Gaming is 195807d4-9a85-35e3-84b2-452229b0888f
[09:11:27] [Server thread/INFO]: Hell_ki_Gaming joined the game
[09:11:27] [Server thread/INFO]: Hell_ki_Gaming[/119.73.103.127:54178] logged in with entity id 10486 at ([spawn]-139.0, 145.0, 93.0)
[09:11:27] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded Hell_ki_Gaming's data in 27 ms.
[09:11:35] [Server thread/INFO]: _NotAdi669 issued server command: /2v2 ranked
[09:11:35] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? lag
[09:11:37] [Server thread/INFO]: [StaffChat] BlueBell721 > balanced did this only whenever they got ddosed
[09:11:38] [Server thread/INFO]: _NotAdi669 issued server command: /party fight
[09:11:39] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? mere pe ek server hai
[09:11:43] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? dc pr bhejta hu
[09:11:46] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | JAY15122004 Silver V ? pls anyone come in diamond pot aajao koi
[09:11:47] [Server thread/INFO]: [StaffChat] BlueBell721 > yeah
[09:11:49] [Server thread/INFO]: Hell_ki_Gaming issued server command: /gmenu main
[09:11:49] [Server thread/INFO]: Hell_ki_Gaming issued server command: /unranked
[09:11:50] [Server thread/INFO]: [StaffChat] BlueBell721 > see that
[09:11:51] [Server thread/INFO]: Hell_ki_Gaming issued server command: /gmenu main
[09:11:51] [Async Chat Thread - #28/INFO]: [Not Secure] Member  | _NotAdi669 Silver V ? ok
[09:11:54] [Async Chat Thread - #27/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? dc pr bhejta hu.........................
[09:12:01] [Server thread/INFO]: Hell_ki_Gaming issued server command: /diapot
[09:12:04] [Server thread/INFO]: [StaffChat] BlueBell721 > bad impression ;/
[09:12:05] [Async Chat Thread - #28/INFO]: [Not Secure] Member  | Craniax_6 Silver V ? chat dekhle
[09:12:11] [Server thread/INFO]: JAY15122004 lost connection: Disconnected
[09:12:11] [Server thread/INFO]: JAY15122004 left the game
[09:12:12] [Server thread/INFO]: Hell_ki_Gaming issued server command: /spawn
[09:12:14] [Server thread/INFO]: Craniax_6 lost connection: Disconnected
[09:12:14] [Server thread/INFO]: Craniax_6 left the game
[09:12:14] [Server thread/INFO]: No player was found
[09:12:14] [Server thread/INFO]: No player was found
[09:12:24] [Craft Scheduler Thread - 159 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[09:12:24] [Craft Scheduler Thread - 159 - Vulcan/INFO]: In the past 6 hours, [Cloudily] has punished 1386 players.
[09:12:24] [Craft Scheduler Thread - 159 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[09:12:28] [Server thread/INFO]: Hell_ki_Gaming issued server command: /nethpot
[09:12:32] [Server thread/INFO]: Hell_ki_Gaming issued server command: /spawn
[09:12:34] [Server thread/INFO]: FZ_ITACHI69 lost connection: Disconnected
[09:12:34] [Server thread/INFO]: FZ_ITACHI69 left the game
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: No player was found
[09:12:34] [Server thread/INFO]: Unknown command. Type "/help" for help.
[09:12:35] [Server thread/INFO]: You whisper to BlueBell721: Do /vote --> Click on link and vote --> Get free MysteryDust --> Purchase cool Cosmetics!
[09:12:56] [User Authenticator #33/INFO]: UUID of player NotAnisur25 is 4800ca50-84da-3d84-a118-8c3070261a4d
[09:12:56] [pool-72-thread-1/INFO]: [Vulcan] BlueBell721 position was updated for being on a ghost block! (spawn, -141, 145, 88) ?7[12]
[09:12:57] [Server thread/INFO]: NotAnisur25 joined the game
[09:12:57] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded NotAnisur25's data in 66 ms.
[09:12:57] [Server thread/INFO]: NotAnisur25[/47.11.200.213:44358] logged in with entity id 10530 at ([spawn]-135.21102786483587, 145.0, 97.10954959251616)
[09:13:12] [Server thread/INFO]: DavenMC lost connection: Disconnected
[09:13:12] [Server thread/INFO]: DavenMC left the game
[09:13:13] [Server thread/INFO]: Hell_ki_Gaming issued server command: /vote
[09:13:30] [Server thread/INFO]: _NotAdi669 lost connection: Disconnected
[09:13:30] [Server thread/INFO]: _NotAdi669 left the game
[09:13:32] [Server thread/INFO]: Hell_ki_Gaming issued server command: /vote
[09:13:32] [Server thread/INFO]: Unknown command. Type "/help" for help.
[09:13:32] [Server thread/INFO]: You whisper to BlueBell721: Do /vote --> Click on link and vote --> Get free MysteryDust --> Purchase cool Cosmetics!
[09:13:37] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:13:45] [User Authenticator #33/INFO]: UUID of player AumGamingYT is c35ed50d-e3d3-31eb-90f2-ce7fec243617
[09:13:45] [Server thread/INFO]: AumGamingYT joined the game
[09:13:45] [Server thread/INFO]: AumGamingYT[/42.105.172.17:45914] logged in with entity id 10571 at ([parkour]-328.30955435440166, 56.23203083827442, -73.31243957555422)
[09:13:45] [ForkJoinPool.commonPool-worker-7/INFO]: Loaded AumGamingYT's data in 55 ms.
[09:13:47] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:13:56] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:14:00] [Server thread/INFO]: NotAnisur25 issued server command: /nethpot
[09:14:03] [Server thread/INFO]: herovrine lost connection: Disconnected
[09:14:03] [Server thread/INFO]: herovrine left the game
[09:14:07] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:14:07] [Server thread/INFO]: NotAnisur25 issued server command: /spawn
[09:14:15] [Async Chat Thread - #28/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? hlooo
[09:14:22] [Server thread/INFO]: [StaffChat] BlueBell721 > should i whitelist?
[09:14:24] [Server thread/INFO]: NotAnisur25 issued server command: /1v1 NOTUDIT
[09:14:25] [Server thread/INFO]: BlueBell721 issued server command: /staffchat
[09:14:27] [Async Chat Thread - #29/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? hii
[09:14:37] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:14:38] [Async Chat Thread - #28/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? blue abhi video bana le?
[09:14:59] [Server thread/INFO]: Hell_ki_Gaming issued server command: /vote
[09:15:00] [Server thread/INFO]: BlueBell721 issued server command: /msg AumGamingYT toivi se pucho abhi server mai prob ho rha
[09:15:11] [Server thread/INFO]: Hell_ki_Gaming issued server command: /vote
[09:15:14] [Server thread/INFO]: BlueBell721 issued server command: /gmenu main
[09:15:17] [Server thread/INFO]: AumGamingYT issued server command: /msg BlueBell721 hmm k
[09:15:39] [Async Chat Thread - #30/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? i cant msg
[09:15:46] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:15:47] [Server thread/INFO]: Hell_ki_Gaming issued server command: /gmenu main
[09:15:47] [Server thread/INFO]: Hell_ki_Gaming issued server command: /unranked
[09:15:47] [Server thread/INFO]: BlueBell721 issued server command: /party create
[09:15:49] [Server thread/INFO]: Hell_ki_Gaming issued server command: /gmenu main
[09:15:50] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:15:52] [Server thread/INFO]: BlueBell721 issued server command: /party invite AumGamingYT
[09:15:54] [pool-71-thread-1/INFO]: ?b?l[Cloudily] aayu52232 failed Auto Clicker (Type C) (1/25)
[09:15:59] [pool-71-thread-1/INFO]: ?b?l[Cloudily] aayu52232 failed Auto Clicker (Type C) (2/25)
[09:16:04] [Server thread/INFO]: AumGamingYT issued server command: /party join BlueBell721
[09:16:04] [Server thread/INFO]: AumGamingYT issued server command: /party join BlueBell721
[09:16:05] [Server thread/INFO]: BlueBell721 issued server command: /staffchat
[09:16:08] [Server thread/INFO]: [StaffChat] BlueBell721 > this is bad
[09:16:09] [Server thread/INFO]: AumGamingYT issued server command: /p chat
[09:16:10] [Server thread/INFO]: [StaffChat] BlueBell721 > toivi
[09:16:20] [Server thread/INFO]: [StaffChat] BlueBell721 > players getting 500+ping
[09:16:21] [Server thread/INFO]: Hell_ki_Gaming issued server command: /cpvp
[09:16:39] [Async Chat Thread - #30/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? guys come in cpvp
[09:16:54] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:16:59] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:17:07] [User Authenticator #34/INFO]: UUID of player herovrine is 50bd27d6-dcde-3337-8dfe-ddb0e4f27383
[09:17:07] [Server thread/INFO]: herovrine joined the game
[09:17:07] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded herovrine's data in 29 ms.
[09:17:07] [Server thread/INFO]: herovrine[/110.235.237.101:42768] logged in with entity id 11323 at ([spawn]-140.42180272277778, 145.0, 108.09440351779199)
[09:17:15] [Server thread/INFO]: NotAnisur25 issued server command: /nethpot
[09:17:16] [Server thread/WARN]: AumGamingYT moved too quickly! 0.692861249732573,1.1661092609382138,10.20781031134591
[09:17:21] [Server thread/INFO]: NotAnisur25 issued server command: /spawn
[09:17:22] [Async Chat Thread - #31/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? guys come in cpvp.
[09:17:38] [Server thread/INFO]: NotAnisur25 issued server command: /1v1 herovrine
[09:17:44] [Server thread/INFO]: herovrine issued server command: /duel accept NotAnisur25
[09:17:48] [Server thread/INFO]: BlueBell721 issued server command: /party chat
[09:17:50] [Server thread/INFO]: Hell_ki_Gaming issued server command: /spawn
[09:17:50] [Server thread/INFO]: [StaffChat] BlueBell721 > server
[09:17:53] [pool-71-thread-1/INFO]: ?b?l[Cloudily] aayu52232 failed Auto Clicker (Type C) (3/25)
[09:17:55] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:17:56] [Server thread/INFO]: GATRU__PLAYZ issued server command: /unranked
[09:17:59] [Server thread/INFO]: GATRU__PLAYZ issued server command: /duel accept NOTUDIT
[09:18:08] [Server thread/INFO]: BlueBell721 issued server command: /staffchat
[09:18:12] [Server thread/INFO]: Hell_ki_Gaming issued server command: /smp
[09:18:19] [Server thread/INFO]: Hell_ki_Gaming issued server command: /spawn
[09:18:20] [pool-71-thread-1/INFO]: ?b?l[Cloudily] aayu52232 failed Auto Clicker (Type C) (4/25)
[09:18:32] [Server thread/INFO]: Hell_ki_Gaming issued server command: /nethpot
[09:18:32] [Server thread/INFO]: BlueBell721 issued server command: /mysterydust add AumGamingYT 40
[09:18:35] [Server thread/INFO]: Hell_ki_Gaming issued server command: /spawn
[09:18:35] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[09:18:36] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[09:18:37] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[09:18:38] [Server thread/INFO]: AumGamingYT issued server command: /gmenu main
[09:18:38] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[09:18:39] [Server thread/INFO]: BlueBell721 issued server command: /nethpot
[09:18:40] [Server thread/INFO]: BlueBell721 issued server command: /warp parkour
[09:18:47] [luckperms-command-executor/INFO]: [LP] Set gadgetsmenu.suits.thor.helmet to true for aumgamingyt in context global.
[09:18:47] [Server thread/INFO]: Hell_ki_Gaming issued server command: /warp parkour
[09:18:48] [Server thread/INFO]: Hell_ki_Gaming issued server command: /unranked
[09:18:51] [Server thread/INFO]: AumGamingYT issued server command: /gmenu main
[09:18:55] [Server thread/INFO]: AumGamingYT issued server command: /gmenu main
[09:18:58] [Server thread/INFO]: BlueBell721 issued server command: /gamemode spectator
[09:19:03] [Server thread/INFO]: NOTUDIT issued server command: /duel GATRU__PLAYZ
[09:19:04] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[09:19:11] [Server thread/INFO]: GATRU__PLAYZ lost connection: Disconnected
[09:19:11] [Server thread/INFO]: GATRU__PLAYZ left the game
[09:19:16] [Server thread/INFO]: BlueBell721 issued server command: /npc select
[09:19:27] [Server thread/INFO]: BlueBell721 issued server command: /npc rename &6PARKOUR!
[09:19:35] [User Authenticator #35/INFO]: UUID of player MRVIPERYT14 is c552f2bc-0eaa-3eb2-93bc-7727330ae230
[09:19:35] [Server thread/INFO]: MRVIPERYT14 joined the game
[09:19:35] [Server thread/INFO]: MRVIPERYT14[/49.36.192.203:55180] logged in with entity id 11736 at ([spawn]-139.0, 145.0, 93.0)
[09:19:35] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded MRVIPERYT14's data in 41 ms.
[09:19:37] [Server thread/INFO]: BlueBell721 issued server command: /party disband
[09:19:38] [Server thread/INFO]: MRVIPERYT14 issued server command: /unranked
[09:19:42] [Server thread/INFO]: MRVIPERYT14 issued server command: /smp
[09:19:54] [Async Chat Thread - #32/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? wth herovrine
[09:19:54] [Server thread/INFO]: AumGamingYT lost connection: Timed out
[09:19:54] [Server thread/INFO]: AumGamingYT left the game
[09:19:58] [Server thread/INFO]: MRVIPERYT14 issued server command: /axe
[09:20:00] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? guys server is having some problems
[09:20:02] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? till then
[09:20:07] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? play our parkou
[09:20:08] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? r
[09:20:11] [Async Chat Thread - #33/INFO]: [Not Secure] Emperor  | herovrine Gold I ? BYEE
[09:20:12] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? its released nwo
[09:20:28] [Server thread/INFO]: NOTUDIT issued server command: /warp parkour
[09:20:28] [User Authenticator #35/INFO]: UUID of player AumGamingYT is c35ed50d-e3d3-31eb-90f2-ce7fec243617
[09:20:29] [Server thread/INFO]: AumGamingYT joined the game
[09:20:29] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded AumGamingYT's data in 38 ms.
[09:20:29] [Server thread/INFO]: AumGamingYT[/106.76.88.10:39764] logged in with entity id 11937 at ([spawn]-132.92630777055018, 145.0, 106.5696572148478)
[09:20:30] [Server thread/INFO]: herovrine lost connection: Disconnected
[09:20:30] [Server thread/INFO]: herovrine left the game
[09:20:34] [Server thread/INFO]: BlueBell721 issued server command: /broadcastworld PARKOUR RELEASED!
[09:20:38] [Server thread/INFO]: AumGamingYT issued server command: /gmenu main
[09:20:45] [Server thread/INFO]: AumGamingYT issued server command: /gmenu main
[09:20:49] [Server thread/INFO]: BlueBell721 issued server command: /broadcast PARKOUR RELEASED!
[09:20:59] [Server thread/INFO]: MRVIPERYT14 issued server command: /botduel
[09:21:06] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? kese krte h
[09:21:09] [Server thread/INFO]: [Essentials] Created a User for PARKOUR! (29d677de-5f62-2aab-a19d-e5572ee632de) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:21:10] [Server thread/INFO]: NotAnisur25 issued server command: /warp parkour
[09:21:17] [Server thread/INFO]: [Essentials] Created a User for BOT_MRVIPERYT14 (f425619a-d3fa-2a41-b3a8-139b1a7838ea) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:21:18] [Server thread/INFO]: aayu52232 issued server command: /warp parkour
[09:21:18] [Server thread/INFO]: aayu52232 issued server command: /unranked
[09:21:19] [Server thread/INFO]: IndiaLuxYT issued server command: /warp parkour
[09:21:20] [Server thread/INFO]: IndiaLuxYT issued server command: /warp parkour
[09:21:21] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? come in parkour guys
[09:21:24] [Server thread/INFO]: AumGamingYT issued server command: /warp parkour
[09:21:26] [Server thread/INFO]: NotAnisur25 lost connection: Disconnected
[09:21:26] [Server thread/INFO]: NotAnisur25 left the game
[09:21:26] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[09:21:29] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? first one to complete it
[09:21:31] [Server thread/INFO]: MRVIPERYT14 issued server command: /botduel
[09:21:33] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? slow falling hata de
[09:21:34] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? gets samurai rank
[09:21:35] [Server thread/INFO]: BlueBell721 issued server command: /warp parkour
[09:21:36] [Server thread/INFO]: MRVIPERYT14 issued server command: /botduel
[09:21:51] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? slow falling hat a
[09:21:52] [Server thread/INFO]: [Essentials] Created a User for BOT_MRVIPERYT14 (17768225-3357-2e62-b05b-d6e8976874ae) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:21:59] [User Authenticator #36/INFO]: UUID of player NotAnisur25 is 4800ca50-84da-3d84-a118-8c3070261a4d
[09:21:59] [Server thread/INFO]: NotAnisur25 joined the game
[09:21:59] [ForkJoinPool.commonPool-worker-9/INFO]: Loaded NotAnisur25's data in 7 ms.
[09:21:59] [Server thread/INFO]: NotAnisur25[/47.11.200.213:59234] logged in with entity id 12018 at ([parkour]-360.7567591387469, 56.41999998688698, -67.3477395167077)
[09:22:12] [Server thread/INFO]: NotAnisur25 issued server command: /warp parkour
[09:22:30] [Server thread/INFO]: NotAnisur25 lost connection: Disconnected
[09:22:30] [Server thread/INFO]: NotAnisur25 left the game
[09:22:33] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? blue
[09:22:42] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? hn
[09:22:51] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? mera chat colour
[09:22:54] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? ik
[09:22:57] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? lol
[09:23:00] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? me tooo
[09:23:08] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? mera slow falling hata
[09:23:08] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? ye kya hogya blue bhai
[09:23:17] [Server thread/INFO]: BlueBell721 issued server command: /effect clear AumGamingYT
[09:23:17] [Server thread/INFO]: [BlueBell721: Removed every effect from AumGamingYT]
[09:23:34] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? mera rainbow 1 chat colour do bluebell
[09:23:45] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? muje bhi
[09:23:52] [Server thread/INFO]: MRVIPERYT14 issued server command: /botduel
[09:23:56] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? so
[09:23:56] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? wait
[09:24:00] [Server thread/INFO]: MRVIPERYT14 issued server command: /unranked
[09:24:03] [Server thread/INFO]: IndiaLuxYT lost connection: Disconnected
[09:24:03] [Server thread/INFO]: IndiaLuxYT left the game
[09:24:03] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? lemme do this slow falling thing
[09:24:04] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? dedo
[09:24:06] [Server thread/INFO]: MRVIPERYT14 issued server command: /cpvp
[09:24:11] [Server thread/INFO]: BlueBell721 issued server command: /effect clear @a
[09:24:11] [Server thread/INFO]: [BlueBell721: Removed every effect from 9 targets]
[09:24:17] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? bhai mera colour chat kab milega
[09:24:22] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? blue bhai bolo
[09:24:24] [Server thread/INFO]: MRVIPERYT14 issued server command: /warp parkour
[09:24:29] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? maintanance is going on
[09:24:34] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | NOTUDIT Silver V ? aacha
[09:24:35] [Server thread/INFO]: NOTUDIT lost connection: Disconnected
[09:24:35] [Server thread/INFO]: NOTUDIT left the game
[09:24:57] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? slow falling hata
[09:25:13] [User Authenticator #37/INFO]: UUID of player NotAnisur25 is 4800ca50-84da-3d84-a118-8c3070261a4d
[09:25:14] [Server thread/INFO]: NotAnisur25 joined the game
[09:25:14] [Server thread/INFO]: NotAnisur25[/47.11.200.213:51462] logged in with entity id 12286 at ([parkour]-364.5, 55.51031320626975, -67.5)
[09:25:14] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded NotAnisur25's data in 38 ms.
[09:25:19] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? slow falling ki 123
[09:25:20] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? its part of parkour
[09:25:41] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? this is annoying
[09:25:42] [User Authenticator #37/INFO]: UUID of player GamerHD is 6f3df733-5cb6-35d1-bd81-eea9adb2842b
[09:25:42] [Server thread/INFO]: GamerHD joined the game
[09:25:42] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded GamerHD's data in 14 ms.
[09:25:42] [Server thread/INFO]: GamerHD[/103.182.10.169:47266] logged in with entity id 12290 at ([spawn]-138.612001337672, 145.0, 101.42218472046947)
[09:25:50] [Server thread/INFO]: GamerHD issued server command: /hd
[09:25:54] [Async Chat Thread - #32/INFO]: [Not Secure] Member  | aayu52232 Silver V ? slime block ka part kasa karange
[09:25:59] [User Authenticator #37/INFO]: UUID of player IshantSenpai is 4fa75a88-6005-3517-b615-4af103c1ae5b
[09:25:59] [Server thread/INFO]: IshantSenpai joined the game
[09:25:59] [Server thread/INFO]: IshantSenpai[/112.79.57.136:60886] logged in with entity id 12297 at ([spawn]-139.0, 145.0, 93.0)
[09:25:59] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded IshantSenpai's data in 14 ms.
[09:26:00] [Server thread/INFO]: NotAnisur25 lost connection: Disconnected
[09:26:00] [Server thread/INFO]: NotAnisur25 left the game
[09:26:04] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:26:05] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? lemme see
[09:26:07] [Server thread/INFO]: BlueBell721 issued server command: /gamemode creative
[09:26:07] [Server thread/INFO]: GamerHD issued server command: /smp
[09:26:09] [Server thread/INFO]: BlueBell721 issued server command: /gamemode spectator
[09:26:12] [Server thread/INFO]: aayu52232 issued server command: /
[09:26:15] [Server thread/INFO]: BlueBell721 issued server command: /gamemode creative
[09:26:20] [Async Chat Thread - #32/INFO]: [Not Secure] Member  | aayu52232 Silver V ? kar diya
[09:26:24] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? nice
[09:26:27] [Async Chat Thread - #33/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? slime block pe jump nhi karo
[09:26:34] [User Authenticator #37/INFO]: UUID of player rajveer00007 is fece160c-189b-37fc-b638-4e6338b2cf3a
[09:26:34] [Server thread/INFO]: rajveer00007 joined the game
[09:26:34] [Server thread/INFO]: rajveer00007[/43.241.194.200:54614] logged in with entity id 12301 at ([spawn]-139.0, 145.0, 93.0)
[09:26:34] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded rajveer00007's data in 62 ms.
[09:26:35] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? USE YR BRAINSSSSS
[09:26:38] [Server thread/INFO]: BlueBell721 issued server command: /gamemode adventure
[09:26:42] [Server thread/INFO]: BlueBell721 issued server command: /gamemode spectator
[09:26:49] [Server thread/INFO]: BlueBell721 issued server command: /gamemode adventure
[09:26:49] [User Authenticator #37/INFO]: UUID of player Itzdevelop is e36ecae1-6902-3ac2-b6bc-7b0f8bbf980a
[09:26:51] [Server thread/INFO]: Itzdevelop joined the game
[09:26:51] [ForkJoinPool.commonPool-worker-2/INFO]: Loaded Itzdevelop's data in 54 ms.
[09:26:51] [Server thread/INFO]: Itzdevelop[/49.32.176.123:33914] logged in with entity id 12304 at ([spawn]-139.0, 145.0, 93.0)
[09:27:11] [Async Chat Thread - #33/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? BlueBell721 slow falling hata
[09:27:18] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:27:22] [Server thread/INFO]: Hell_ki_Gaming issued server command: /unranked
[09:27:23] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? nhi
[09:27:24] [Craft Scheduler Thread - 179 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[09:27:24] [Craft Scheduler Thread - 179 - Vulcan/INFO]: In the past 6 hours, [Cloudily] has punished 1386 players.
[09:27:24] [Craft Scheduler Thread - 179 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[09:27:28] [Async Chat Thread - #32/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? Q
[09:27:29] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? mere pe tp kr blue
[09:27:30] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:27:37] [Async Chat Thread - #33/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? its annoying
[09:27:37] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? its part of parkour
[09:27:39] [Async Chat Thread - #32/INFO]: [Not Secure] Member  | GamerHD Silver V ? come to smp kit
[09:27:40] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? jaldi tp kr
[09:27:41] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:27:43] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? nhi
[09:27:46] [Server thread/INFO]: Itzdevelop issued server command: /tank
[09:27:47] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? ye bug h
[09:27:49] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? atmanirbhar ban
[09:27:58] [Server thread/INFO]: BlueBell721 issued server command: /effect clear @a
[09:27:58] [Server thread/INFO]: [BlueBell721: Removed every effect from 12 targets]
[09:28:10] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[09:28:10] [Server thread/INFO]: BlueBell721 left the game
[09:28:12] [User Authenticator #38/INFO]: UUID of player BlueBell721 is 00915d80-8025-3d36-ad6f-1d82e2857ca2
[09:28:12] [Server thread/INFO]: BlueBell721 joined the game
[09:28:12] [Server thread/INFO]: BlueBell721[/27.0.177.20:58070] logged in with entity id 12322 at ([parkour]-254.4380762467622, 56.0, -134.9187323350311)
[09:28:12] [ForkJoinPool.commonPool-worker-11/INFO]: Loaded BlueBell721's data in 101 ms.
[09:28:12] [Server thread/INFO]: AumGamingYT issued server command: /kiteditor
[09:28:14] [Server thread/INFO]: IshantSenpai issued server command: /warp parkour
[09:28:14] [Server thread/INFO]: AumGamingYT issued server command: /events
[09:28:18] [Server thread/INFO]: AumGamingYT issued server command: /events
[09:28:19] [Server thread/INFO]: AumGamingYT issued server command: /events
[09:28:25] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? blue
[09:28:29] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? tp ke muje
[09:28:33] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:28:33] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? mtlb
[09:28:37] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? tu mere pass a
[09:28:39] [Server thread/INFO]: rajveer00007 issued server command: /cpvp
[09:28:41] [Async Chat Thread - #33/INFO]: [Not Secure] Member  | Itzdevelop Silver V ? anyone tank ffa
[09:28:44] [Server thread/INFO]: rajveer00007 lost connection: Disconnected
[09:28:44] [Server thread/INFO]: rajveer00007 left the game
[09:28:51] [Async Chat Thread - #33/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? server is going in maintanance
[09:28:52] [Async Chat Thread - #33/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? blue
[09:28:54] [Server thread/INFO]: GamerHD issued server command: /n
[09:28:57] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? muje tp kr
[09:28:58] [Async Chat Thread - #32/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? till then enjoy in parkour
[09:29:02] [Server thread/INFO]: BlueBell721 issued server command: /tp AumGamingYT
[09:29:04] [Async Chat Thread - #32/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? jaldi
[09:29:15] [Server thread/INFO]: BlueBell721 issued server command: /gamemode creative
[09:29:23] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:29:24] [Server thread/INFO]: BlueBell721 issued server command: /gamemode survival
[09:29:27] [Async Chat Thread - #35/INFO]: [Not Secure] Member  | Hell_ki_Gaming Silver V ? slow falling is very annoying
[09:29:39] [Server thread/INFO]: Itzdevelop issued server command: /warp parkour
[09:29:41] [pool-72-thread-1/INFO]: [Vulcan] Itzdevelop position was updated for being on a ghost block! (parkour, -131, 146, 81) ?7[7]
[09:29:41] [pool-72-thread-1/INFO]: [Vulcan] Itzdevelop position was updated for being on a ghost block! (parkour, -131, 146, 81) ?7[8]
[09:29:49] [Server thread/INFO]: Itzdevelop issued server command: /ranked
[09:29:59] [Server thread/INFO]: Itzdevelop issued server command: /unranked
[09:30:05] [Async Chat Thread - #33/INFO]: [Not Secure] Member  | GamerHD Silver V ? lobby
[09:30:14] [User Authenticator #39/INFO]: UUID of player NOTUDIT is 008ac025-5016-3c38-a2ea-ae1df9e79066
[09:30:15] [Server thread/INFO]: NOTUDIT joined the game
[09:30:15] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded NOTUDIT's data in 19 ms.
[09:30:15] [Server thread/INFO]: NOTUDIT[/110.235.237.223:60752] logged in with entity id 12353 at ([parkour]-253.6051968118767, 56.0, -77.30000001192093)
[09:30:16] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:30:18] [Server thread/INFO]: GamerHD issued server command: /spawn
[09:30:20] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:30:26] [Server thread/INFO]: aayu52232 lost connection: Disconnected
[09:30:26] [Server thread/INFO]: aayu52232 left the game
[09:30:27] [Server thread/INFO]: NOTUDIT lost connection: Disconnected
[09:30:27] [Server thread/INFO]: NOTUDIT left the game
[09:30:27] [Server thread/INFO]: Itzdevelop issued server command: /unranked
[09:30:28] [Server thread/INFO]: GamerHD issued server command: /smp
[09:30:33] [User Authenticator #39/INFO]: UUID of player NOTUDIT is 008ac025-5016-3c38-a2ea-ae1df9e79066
[09:30:33] [Server thread/INFO]: NOTUDIT joined the game
[09:30:33] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded NOTUDIT's data in 7 ms.
[09:30:33] [Server thread/INFO]: NOTUDIT[/110.235.237.223:58196] logged in with entity id 12354 at ([spawn]-140.56600983486908, 145.0, 91.22464903630451)
[09:30:40] [User Authenticator #39/INFO]: UUID of player MC_ThunderXD is 0991aaed-f355-3e1b-9d7c-f5277ae9a8a8
[09:30:40] [Server thread/INFO]: MC_ThunderXD joined the game
[09:30:40] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded MC_ThunderXD's data in 35 ms.
[09:30:40] [Server thread/INFO]: MC_ThunderXD[/106.211.33.58:37496] logged in with entity id 12355 at ([spawn]-134.87878291151597, 145.0, 89.59237051927278)
[09:30:58] [Server thread/INFO]: Itzdevelop issued server command: /queue leave
[09:31:02] [Server thread/INFO]: Itzdevelop issued server command: /unranked
[09:31:02] [Server thread/INFO]: NOTUDIT issued server command: /duel MC_ThunderXD
[09:31:02] [Server thread/INFO]: PronitXpro lost connection: Timed out
[09:31:02] [Server thread/INFO]: PronitXpro left the game
[09:31:31] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[09:31:44] [User Authenticator #40/INFO]: UUID of player rajveer00007 is fece160c-189b-37fc-b638-4e6338b2cf3a
[09:31:44] [Server thread/INFO]: rajveer00007 joined the game
[09:31:44] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded rajveer00007's data in 15 ms.
[09:31:44] [Server thread/INFO]: rajveer00007[/43.241.194.200:38510] logged in with entity id 12359 at ([spawn]-139.0, 145.0, 93.0)
[09:31:45] [Server thread/INFO]: NOTUDIT issued server command: /duel MC_ThunderXD
[09:31:47] [Server thread/INFO]: BlueBell721 issued server command: /gamemode creative
[09:31:48] [Server thread/INFO]: MC_ThunderXD issued server command: /duel accept NOTUDIT
[09:31:52] [Server thread/INFO]: rajveer00007 issued server command: /axe
[09:31:56] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:31:56] [Server thread/INFO]: Hell_ki_Gaming lost connection: Disconnected
[09:31:56] [Server thread/INFO]: Hell_ki_Gaming left the game
[09:31:59] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:32:00] [Server thread/INFO]: [Essentials] Created a User for NOT FFA! (9b5f8547-01f3-2e6d-9152-54d5133b378f) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:32:04] [Server thread/INFO]: Itzdevelop issued server command: /tank
[09:32:08] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:32:15] [User Authenticator #40/INFO]: UUID of player LUFFY_XD is 3edf00ab-254f-3425-9507-8040794446d8
[09:32:15] [Server thread/INFO]: LUFFY_XD joined the game
[09:32:15] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded LUFFY_XD's data in 36 ms.
[09:32:15] [Server thread/INFO]: LUFFY_XD[/27.34.49.8:53276] logged in with entity id 12403 at ([spawn]-138.47400085496497, 145.0, 93.20899772413625)
[09:32:23] [Async Chat Thread - #37/INFO]: [Not Secure] Member  | Itzdevelop Silver V ? tank aajao dosto
[09:32:24] [Async Chat Thread - #36/INFO]: [Not Secure] Member  | GamerHD Silver V ? come to smo
[09:32:31] [Async Chat Thread - #37/INFO]: [Not Secure] Member  | GamerHD Silver V ? come to smp
[09:32:35] [Server thread/INFO]: rajveer00007 lost connection: Disconnected
[09:32:35] [Server thread/INFO]: rajveer00007 left the game
[09:32:39] [User Authenticator #40/INFO]: UUID of player rajveer00007 is fece160c-189b-37fc-b638-4e6338b2cf3a
[09:32:39] [Server thread/INFO]: rajveer00007 joined the game
[09:32:39] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded rajveer00007's data in 11 ms.
[09:32:39] [Server thread/INFO]: rajveer00007[/43.241.194.200:48382] logged in with entity id 12478 at ([spawn]-139.0, 145.0, 93.0)
[09:32:46] [Server thread/INFO]: LUFFY_XD issued server command: /nethpot
[09:32:50] [Server thread/INFO]: IshantSenpai issued server command: /nethpot
[09:32:54] [Server thread/INFO]: IshantSenpai lost connection: Disconnected
[09:32:54] [Server thread/INFO]: IshantSenpai left the game
[09:32:55] [Server thread/INFO]: BlueBell721 issued server command: /broadcastworld SERVER IN MAINTANANCE GUYS
[09:32:56] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:33:04] [User Authenticator #40/INFO]: UUID of player IshantSenpai is 4fa75a88-6005-3517-b615-4af103c1ae5b
[09:33:04] [Server thread/INFO]: IshantSenpai joined the game
[09:33:04] [Server thread/INFO]: IshantSenpai[/112.79.57.136:35378] logged in with entity id 12484 at ([spawn]-139.0, 145.0, 93.0)
[09:33:04] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded IshantSenpai's data in 22 ms.
[09:33:09] [Server thread/INFO]: Itzdevelop issued server command: /ranked
[09:33:11] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:33:11] [Server thread/INFO]: Itzdevelop issued server command: /smp
[09:33:14] [Server thread/INFO]: GamerHD issued server command: /spawn
[09:33:15] [Server thread/INFO]: BlueBell721 issued server command: /broadcastworld SERVER WILL BE ONLINE THOUGH, SO ENJOY OUR PARKOUR
[09:33:19] [Server thread/INFO]: rajveer00007 issued server command: /tank
[09:33:21] [Server thread/INFO]: GamerHD issued server command: /botduel
[09:33:28] [Server thread/INFO]: rajveer00007 lost connection: Disconnected
[09:33:28] [Server thread/INFO]: rajveer00007 left the game
[09:33:31] [User Authenticator #40/INFO]: UUID of player NotAnisur25 is 4800ca50-84da-3d84-a118-8c3070261a4d
[09:33:31] [Server thread/INFO]: NotAnisur25 joined the game
[09:33:31] [ForkJoinPool.commonPool-worker-14/INFO]: Loaded NotAnisur25's data in 20 ms.
[09:33:31] [Server thread/INFO]: NotAnisur25[/47.11.200.213:41660] logged in with entity id 12504 at ([spawn]-138.57299300319906, 145.0, 88.55772809417454)
[09:33:33] [Server thread/INFO]: [Essentials] Created a User for BOT_GamerHD (cd502b7f-b181-2d46-9992-26070282fbb7) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:33:38] [Server thread/INFO]: BlueBell721 issued server command: /broadcastworld Players who will beat the map will get special rank and perms
[09:33:41] [Server thread/WARN]: NPC was null in NPCDeathEvent!
[09:33:45] [Server thread/INFO]: BlueBell721 issued server command: /warp parkour
[09:33:47] [Server thread/INFO]: GamerHD issued server command: /replay 9d8fed7c-0447-4c0a-8eb2-73dc2d3c3db8 killcam 20
[09:33:48] [Server thread/INFO]: NotAnisur25 issued server command: /warp parkour
[09:33:53] [Server thread/INFO]: BlueBell721 issued server command: /gamemode spectator
[09:33:54] [Server thread/INFO]: MRVIPERYT14 issued server command: /warp spawn
[09:34:04] [Server thread/INFO]: GamerHD issued server command: /botduel
[09:34:04] [Server thread/INFO]: IshantSenpai issued server command: /queue leave
[09:34:09] [Server thread/INFO]: MRVIPERYT14 lost connection: Disconnected
[09:34:09] [Server thread/INFO]: MRVIPERYT14 left the game
[09:34:13] [Server thread/INFO]: IshantSenpai issued server command: /unranked
[09:34:14] [Server thread/INFO]: [Essentials] Created a User for BOT_GamerHD (df54bdfe-f189-23df-bc38-5dc88615bd72) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:34:16] [Server thread/INFO]: BlueBell721 issued server command: /tp AumGamingYT
[09:34:24] [Server thread/INFO]: IshantSenpai issued server command: /warp parkour
[09:34:25] [Server thread/INFO]: GamerHD issued server command: /botduel
[09:34:32] [Server thread/WARN]: Itzdevelop moved wrongly!
[09:34:33] [Server thread/INFO]: BlueBell721 issued server command: /tp IshantSenpai
[09:34:35] [Server thread/INFO]: [Essentials] Created a User for BOT_GamerHD (f83eacf5-cc15-296d-b7a7-1812aa035d95) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:34:50] [Server thread/INFO]: GamerHD issued server command: /botduel
[09:34:55] [Async Chat Thread - #38/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? Aum gaming is presently at the highest level
[09:35:01] [Server thread/INFO]: [Essentials] Created a User for BOT_GamerHD (aeedba85-2e09-26e5-9078-a71e914322bd) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[09:35:05] [Async Chat Thread - #39/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? in where
[09:35:08] [Async Chat Thread - #39/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? at where
[09:35:09] [Async Chat Thread - #39/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? parkour
[09:35:13] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? ohh
[09:35:22] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:35:30] [Server thread/INFO]: Itzdevelop issued server command: /spawn
[09:35:34] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? which level
[09:35:42] [Server thread/INFO]: LUFFY_XD issued server command: /spawn
[09:35:43] [Async Chat Thread - #38/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? behind them are notanisur and Ishantsenpai
[09:35:46] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? and total how many level
[09:35:48] [User Authenticator #41/INFO]: UUID of player HarOP is 8f7dcefe-a390-376e-8303-70868b1f3089
[09:35:48] [Server thread/INFO]: HarOP joined the game
[09:35:48] [Server thread/INFO]: HarOP[/103.179.103.136:38590] logged in with entity id 12890 at ([spawn]0.49244144472279294, -33.0, -10.538450092538378)
[09:35:48] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded HarOP's data in 26 ms.
[09:35:52] [Async Chat Thread - #39/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? 100LEVELS
[09:35:53] [Server thread/INFO]: Itzdevelop issued server command: /cpvp
[09:36:03] [Async Chat Thread - #39/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? and where am i
[09:36:06] [Async Chat Thread - #39/INFO]: [Not Secure] Member  | Itzdevelop Silver V ? anyone crystal??
[09:36:07] [Server thread/INFO]: LUFFY_XD issued server command: /smp
[09:36:11] [Server thread/INFO]: MC_ThunderXD lost connection: Disconnected
[09:36:11] [Server thread/INFO]: MC_ThunderXD left the game
[09:36:15] [Server thread/INFO]: NOTUDIT lost connection: Disconnected
[09:36:15] [Server thread/INFO]: NOTUDIT left the game
[09:36:16] [Async Chat Thread - #39/INFO]: [Not Secure] Admin  | BlueBell721 Gold II ? yes im coming in crystal wait
[09:36:19] [Server thread/INFO]: BlueBell721 issued server command: /spawm
[09:36:22] [Server thread/INFO]: BlueBell721 issued server command: /kill BlueBell721
[09:36:27] [Server thread/INFO]: BlueBell721 issued server command: /cpvp
[09:36:28] [Async Chat Thread - #39/INFO]: [Not Secure] Member  | GamerHD Silver V ? aumGamingYT what is your YouTube channel name
[09:36:37] [Server thread/INFO]: LUFFY_XD lost connection: Disconnected
[09:36:37] [Server thread/INFO]: LUFFY_XD left the game
[09:36:47] [User Authenticator #41/INFO]: UUID of player LUFFY_XD is 3edf00ab-254f-3425-9507-8040794446d8
[09:36:47] [Server thread/INFO]: LUFFY_XD joined the game
[09:36:47] [ForkJoinPool.commonPool-worker-12/INFO]: Loaded LUFFY_XD's data in 25 ms.
[09:36:47] [Server thread/INFO]: LUFFY_XD[/27.34.49.8:49580] logged in with entity id 12942 at ([spawn]-139.0, 145.0, 93.0)
[09:36:48] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Jump (Type A) (1/25)
[09:37:05] [Server thread/INFO]: GamerHD issued server command: /diapot
[09:37:06] [Server thread/INFO]: LUFFY_XD issued server command: /diapot
[09:37:17] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (1/8)
[09:37:18] [Server thread/INFO]: HarOP lost connection: Disconnected
[09:37:18] [Server thread/INFO]: HarOP left the game
[09:37:20] [Async Chat Thread - #39/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? bro
[09:37:24] [Server thread/INFO]: Itzdevelop lost connection: Disconnected
[09:37:24] [Server thread/INFO]: Itzdevelop left the game
[09:37:26] [Server thread/INFO]: IshantSenpai issued server command: /queue leave
[09:37:29] [Async Chat Thread - #39/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? suno hum ek sath
[09:37:34] [Async Chat Thread - #38/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? jayenge
[09:37:39] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? nahi
[09:37:44] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (2/8)
[09:37:52] [User Authenticator #42/INFO]: UUID of player NOT_VISHU is ed8aae1a-7e0b-3eaa-b263-77c095abd1b0
[09:37:53] [Server thread/INFO]: NOT_VISHU joined the game
[09:37:53] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded NOT_VISHU's data in 46 ms.
[09:37:53] [Server thread/INFO]: NOT_VISHU[/106.214.119.56:43030] logged in with entity id 13063 at ([spawn]-139.0, 145.0, 95.38981990735019)
[09:38:00] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? this level is immpossible
[09:38:06] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type I) (1/8)
[09:38:25] [Async Chat Thread - #38/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? ajao ishant
[09:38:39] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type W) (1/5)
[09:38:40] [Server thread/INFO]: NOT_VISHU issued server command: /cpvp
[09:38:48] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type H) (1/8)
[09:38:48] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type W) (1/5)
[09:38:52] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (3/8)
[09:39:01] [Async Chat Thread - #39/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? guys
[09:39:04] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type K) (1/15)
[09:39:05] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type K) (2/15)
[09:39:08] [Async Chat Thread - #38/INFO]: [Not Secure] Member  | IshantSenpai Silver V ? come
[09:39:09] [Async Chat Thread - #38/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? why i am having
[09:39:10] [Async Chat Thread - #38/INFO]: [Not Secure] Member  | NOT_VISHU Silver V ? cpvp
[09:39:14] [Async Chat Thread - #38/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? slow falling
[09:39:16] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? blue tp me quick
[09:39:27] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:27] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:27] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:29] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:29] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:29] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:30] [Async Chat Thread - #38/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? blue i am having slowfalling
[09:39:31] [Server thread/INFO]: BlueBell721 lost connection: Disconnected
[09:39:31] [Server thread/INFO]: BlueBell721 left the game
[09:39:32] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:32] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:32] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:34] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:34] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:34] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:39] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:39] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:39] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:40] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? its a part of game
[09:39:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:41] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:41] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:42] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:42] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:42] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:44] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:44] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:44] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:49] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type W) (2/5)
[09:39:51] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:51] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:51] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:51] [Async Chat Thread - #38/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? slowfalling
[09:39:53] [Async Chat Thread - #39/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? i m at level 36
[09:39:53] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:53] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:53] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:54] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:54] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:39:54] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:39:55] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type I) (2/8)
[09:39:56] [Async Chat Thread - #38/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? yea
[09:39:56] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (4/8)
[09:40:11] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type I) (3/8)
[09:40:19] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type W) (2/5)
[09:40:20] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type I) (4/8)
[09:40:22] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type H) (2/8)
[09:40:28] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type I) (5/8)
[09:40:28] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type K) (3/15)
[09:40:33] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (5/8)
[09:40:33] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (6/8)
[09:40:38] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (7/8)
[09:40:38] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type H) (3/8)
[09:40:39] [pool-71-thread-1/INFO]: ?b?l[Cloudily] GamerHD failed Aim (Type I) (8/8)
[09:40:40] [pool-71-thread-1/INFO]: ---?--*-------------------------------------*--?---
[09:40:40] [pool-71-thread-1/INFO]: ?[Cloudily] has detected GamerHD to be cheating and has removed them from the network.
[09:40:40] [pool-71-thread-1/INFO]: ---?--*-------------------------------------*--?---
[09:40:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /tempban GamerHD 3h [Cloudily] Unfair Advantage
[09:40:40] [Server thread/INFO]: GamerHD lost connection: You have been temporarily banned for 3 hours:
[Cloudily] Unfair Advantage
[09:40:40] [Server thread/INFO]: GamerHD left the game
[09:40:40] [Server thread/INFO]: [Essentials] Player Console temporarily banned GamerHD for 3 hours: [Cloudily] Unfair Advantage.
[09:40:52] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:40:52] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:40:52] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:40:53] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:40:53] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:40:53] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:40:54] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:40:54] [Server thread/INFO]: Unable to apply this effect (target is either immune to effects, or has something stronger)
[09:40:54] [Server thread/INFO]: Applied effect Night Vision to NOT_VISHU
[09:41:02] [User Authenticator #43/INFO]: UUID of player GamerHD is 6f3df733-5cb6-35d1-bd81-eea9adb2842b
[09:41:02] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@760c30ca[id=6f3df733-5cb6-35d1-bd81-eea9adb2842b,name=GamerHD,properties={textures=[com.mojang.authlib.properties.Property@b00c237]},legacy=false] (/103.182.10.169:39078): You are banned from this server for 2 hours 59 minutes 38 seconds. Reason: [Cloudily] Unfair Advantage
[09:41:02] [Server thread/INFO]: com.mojang.authlib.GameProfile@760c30ca[id=6f3df733-5cb6-35d1-bd81-eea9adb2842b,name=GamerHD,properties={textures=[com.mojang.authlib.properties.Property@b00c237]},legacy=false] (/103.182.10.169:39078) lost connection: You are banned from this server for 2 hours 59 minutes 38 seconds. Reason: [Cloudily] Unfair Advantage
[09:41:02] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? i m stuck
[09:41:06] [Server thread/INFO]: LUFFY_XD issued server command: /spawn
[09:41:23] [Server thread/INFO]: LUFFY_XD issued server command: /nethpot
[09:41:23] [Server thread/INFO]: NotAnisur25 issued server command: /kiteditor
[09:41:25] [Server thread/INFO]: NotAnisur25 issued server command: /kiteditor
[09:41:28] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:41:31] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:41:35] [User Authenticator #43/INFO]: UUID of player AIM_ON_GAME is 106dfb77-11ba-3742-8014-3fd07c66cebc
[09:41:36] [Server thread/INFO]: AIM_ON_GAME joined the game
[09:41:36] [Server thread/INFO]: AIM_ON_GAME[/103.163.49.98:60794] logged in with entity id 13216 at ([spawn]-138.73172139541046, 145.0, 92.16970174904591)
[09:41:36] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:41:36] [ForkJoinPool.commonPool-worker-14/INFO]: Loaded AIM_ON_GAME's data in 357 ms.
[09:41:37] [User Authenticator #43/INFO]: UUID of player rajveer00007 is fece160c-189b-37fc-b638-4e6338b2cf3a
[09:41:37] [Server thread/INFO]: rajveer00007 joined the game
[09:41:37] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded rajveer00007's data in 20 ms.
[09:41:37] [Server thread/INFO]: rajveer00007[/43.241.194.200:60804] logged in with entity id 13217 at ([spawn]-139.0, 145.0, 93.0)
[09:41:39] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:41:40] [Server thread/INFO]: AumGamingYT issued server command: /kiteditor
[09:41:42] [Server thread/INFO]: AumGamingYT issued server command: /kiteditor
[09:41:43] [Server thread/INFO]: AumGamingYT issued server command: /kiteditor
[09:41:46] [Server thread/INFO]: LUFFY_XD issued server command: /spawn
[09:41:56] [Async Chat Thread - #41/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? ajao
[09:41:59] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:42:03] [Server thread/INFO]: AIM_ON_GAME issued server command: /duel accept rajveer00007
[09:42:04] [Async Chat Thread - #41/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? toivi
[09:42:11] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? aur any mod online?
[09:42:24] [Craft Scheduler Thread - 200 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[09:42:24] [Craft Scheduler Thread - 200 - Vulcan/INFO]: In the past 6 hours, [Cloudily] has punished 1387 players.
[09:42:24] [Craft Scheduler Thread - 200 - Vulcan/INFO]: ---?--*-------------------------------------*--?---
[09:42:27] [User Authenticator #43/INFO]: UUID of player NOTUDIT is 008ac025-5016-3c38-a2ea-ae1df9e79066
[09:42:27] [Server thread/INFO]: NOTUDIT joined the game
[09:42:27] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded NOTUDIT's data in 34 ms.
[09:42:27] [Server thread/INFO]: NOTUDIT[/110.235.237.223:59484] logged in with entity id 13230 at ([spawn]-146.2994159496378, 145.0, 95.24208931852904)
[09:42:37] [User Authenticator #43/INFO]: UUID of player MC_ThunderXD is 0991aaed-f355-3e1b-9d7c-f5277ae9a8a8
[09:42:37] [Server thread/INFO]: MC_ThunderXD joined the game
[09:42:37] [ForkJoinPool.commonPool-worker-16/INFO]: Loaded MC_ThunderXD's data in 6 ms.
[09:42:37] [Server thread/INFO]: MC_ThunderXD[/106.211.33.58:39170] logged in with entity id 13233 at ([spawn]-139.0, 145.0, 92.99069041055937)
[09:42:37] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:42:39] [Server thread/INFO]: NOTUDIT issued server command: /duel MC_ThunderXD
[09:42:42] [Server thread/INFO]: AIM_ON_GAME issued server command: /duel accept rajveer00007
[09:42:43] [Async Chat Thread - #41/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? bro aum
[09:42:47] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? level 13
[09:42:48] [pool-71-thread-1/INFO]: ?b?l[Cloudily] LUFFY_XD failed Aim (Type K) (4/15)
[09:42:52] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? kya krna hai
[09:42:54] [User Authenticator #43/INFO]: UUID of player GwHerobrine is 94049e41-2af2-3063-8665-98c620c0ca9d
[09:42:55] [Server thread/INFO]: GwHerobrine joined the game
[09:42:55] [Server thread/INFO]: GwHerobrine[/223.223.145.214:38746] logged in with entity id 13241 at ([spawn]-139.0, 145.0, 93.0)
[09:42:55] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded GwHerobrine's data in 96 ms.
[09:42:55] [Server thread/INFO]: NOTUDIT issued server command: /duel MC_ThunderXD
[09:42:57] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? 36 is impossib;e
[09:43:03] [User Authenticator #43/INFO]: UUID of player darkmanner is 832f9c07-acce-3fcb-bee3-f01eb50176f2
[09:43:03] [Server thread/INFO]: darkmanner joined the game
[09:43:03] [Server thread/INFO]: darkmanner[/103.220.210.54:38750] logged in with entity id 13243 at ([spawn]-138.47400085496497, 145.0, 93.20899772413625)
[09:43:03] [ForkJoinPool.commonPool-worker-16/INFO]: Loaded darkmanner's data in 80 ms.
[09:43:05] [Server thread/INFO]: MC_ThunderXD issued server command: /unranked
[09:43:08] [Server thread/INFO]: MC_ThunderXD issued server command: /duel accept NOTUDIT
[09:43:10] [Server thread/INFO]: darkmanner lost connection: Disconnected
[09:43:10] [Server thread/INFO]: darkmanner left the game
[09:43:15] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:16] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:19] [User Authenticator #43/INFO]: UUID of player HarOP is 8f7dcefe-a390-376e-8303-70868b1f3089
[09:43:19] [Server thread/INFO]: HarOP joined the game
[09:43:19] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded HarOP's data in 11 ms.
[09:43:19] [Server thread/INFO]: HarOP[/103.179.103.136:39086] logged in with entity id 13260 at ([spawn]-139.0, 145.0, 92.89950189376366)
[09:43:20] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? bro
[09:43:21] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:43:22] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:22] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? whta
[09:43:23] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:25] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:26] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:26] [Server thread/INFO]: LUFFY_XD issued server command: /nethpot
[09:43:27] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:28] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:30] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:31] [Server thread/INFO]: IshantSenpai issued server command: /kiteditor
[09:43:31] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:32] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:33] [User Authenticator #43/INFO]: UUID of player FumetsuMonkeyy is c45a9063-4d97-302d-a88e-3dc8bf270e79
[09:43:34] [Server thread/INFO]: FumetsuMonkeyy joined the game
[09:43:34] [Server thread/INFO]: FumetsuMonkeyy[/103.179.103.136:39552] logged in with entity id 13269 at ([spawn]-143.50330015733584, 145.0, 84.49565540940834)
[09:43:34] [ForkJoinPool.commonPool-worker-16/INFO]: Loaded FumetsuMonkeyy's data in 57 ms.
[09:43:34] [Server thread/INFO]: NotAnisur25 issued server command: /botduel
[09:43:35] [Server thread/INFO]: IshantSenpai issued server command: /botduel
[09:43:35] [Server thread/INFO]: GwHerobrine issued server command: /warp parkour
[09:43:36] [Server thread/INFO]: NotAnisur25 issued server command: /events
[09:43:37] [Server thread/INFO]: IshantSenpai issued server command: /botduel
[09:43:39] [Server thread/INFO]: NotAnisur25 issued server command: /events
[09:43:39] [Server thread/INFO]: IshantSenpai issued server command: /botduel
[09:43:42] [Server thread/INFO]: NotAnisur25 issued server command: /events
[09:43:46] [Server thread/INFO]: NotAnisur25 issued server command: /events
[09:43:51] [Server thread/INFO]: FumetsuMonkeyy issued server command: /unranked
[09:43:52] [User Authenticator #43/INFO]: UUID of player HarshGamerOP is bd24db45-2cc3-3277-ba15-3ad5c308bc29
[09:43:52] [Server thread/INFO]: HarshGamerOP joined the game
[09:43:52] [Server thread/INFO]: HarshGamerOP[/223.178.211.1:38188] logged in with entity id 13286 at ([Arenas]251.07151595394924, 154.0, 5.481013387163515)
[09:43:52] [ForkJoinPool.commonPool-worker-1/INFO]: Loaded HarshGamerOP's data in 86 ms.
[09:43:53] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? hero
[09:43:56] [Async Chat Thread - #41/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? GwHerobrine
[09:43:57] [Async Chat Thread - #41/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? use beacon
[09:43:58] [Server thread/INFO]: HarOP issued server command: /ranked
[09:44:00] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:44:01] [Server thread/INFO]: HarOP issued server command: /ranked
[09:44:02] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? seee my name tag
[09:44:02] [Server thread/INFO]: HarOP issued server command: /ranked
[09:44:03] [Server thread/INFO]: IshantSenpai issued server command: /events
[09:44:03] [Server thread/INFO]: GwHerobrine issued server command: /warp spawn
[09:44:04] [Server thread/INFO]: AIM_ON_GAME issued server command: /duel accept rajveer00007
[09:44:04] [Server thread/INFO]: HarOP issued server command: /ranked
[09:44:07] [Server thread/INFO]: HarOP issued server command: /ranked
[09:44:08] [Server thread/INFO]: GwHerobrine issued server command: /warp parkour
[09:44:08] [Server thread/INFO]: LUFFY_XD lost connection: Disconnected
[09:44:08] [Server thread/INFO]: LUFFY_XD left the game
[09:44:09] [Server thread/INFO]: HarshGamerOP lost connection: Disconnected
[09:44:09] [Server thread/INFO]: HarshGamerOP left the game
[09:44:10] [Server thread/INFO]: HarOP issued server command: /unranked
[09:44:15] [Server thread/INFO]: IshantSenpai issued server command: /events
[09:44:17] [Server thread/INFO]: IshantSenpai issued server command: /events
[09:44:20] [Server thread/INFO]: IshantSenpai issued server command: /events
[09:44:24] [Async Chat Thread - #41/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? idhar
[09:44:25] [Server thread/INFO]: IshantSenpai issued server command: /events
[09:44:30] [Server thread/INFO]: NOT_VISHU issued server command: /smp
[09:44:31] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:44:33] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? ajao
[09:44:36] [Server thread/INFO]: AIM_ON_GAME issued server command: /duel accept rajveer00007
[09:44:38] [User Authenticator #43/INFO]: UUID of player herovrine is 50bd27d6-dcde-3337-8dfe-ddb0e4f27383
[09:44:38] [Server thread/INFO]: herovrine joined the game
[09:44:38] [ForkJoinPool.commonPool-worker-15/INFO]: Loaded herovrine's data in 31 ms.
[09:44:38] [Server thread/INFO]: herovrine[/110.235.237.101:45498] logged in with entity id 13389 at ([spawn]-138.59044437570608, 145.0, 94.66696790034938)
[09:44:44] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? herovrine
[09:44:45] [pool-71-thread-1/INFO]: ?b?l[Cloudily] FumetsuMonkeyy failed Aim (Type K) (1/15)
[09:44:53] [pool-71-thread-1/INFO]: ?b?l[Cloudily] FumetsuMonkeyy failed Aim (Type K) (2/15)
[09:44:59] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? tp to me herovrin
[09:45:07] [Async Chat Thread - #41/INFO]: [Not Secure] Emperor  | herovrine Gold I ? i am at spawn
[09:45:07] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:45:10] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? u tp me
[09:45:12] [Server thread/INFO]: AIM_ON_GAME issued server command: /duel accept rajveer00007
[09:45:16] [pool-71-thread-1/INFO]: ?b?l[Cloudily] FumetsuMonkeyy failed Aim (Type I) (1/8)
[09:45:19] [Async Chat Thread - #40/INFO]: [Not Secure] Emperor  | herovrine Gold I ? bro how/
[09:45:22] [Server thread/INFO]: herovrine issued server command: /warp parkour
[09:45:26] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? u dont have commands?
[09:45:30] [Async Chat Thread - #41/INFO]: [Not Secure] Emperor  | herovrine Gold I ? NAG
[09:45:37] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? then how r u mod
[09:45:43] [Async Chat Thread - #40/INFO]: [Not Secure] Emperor  | herovrine Gold I ? i am not
[09:45:43] [Async Chat Thread - #41/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? ohh sry
[09:45:50] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? i think u r hadi
[09:45:56] [Async Chat Thread - #41/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? LOL
[09:45:56] [pool-71-thread-1/INFO]: ?b?l[Cloudily] FumetsuMonkeyy failed Aim (Type I) (2/8)
[09:46:07] [Server thread/INFO]: rajveer00007 issued server command: /1v1 AIM_ON_GAME
[09:46:07] [Server thread/INFO]: GwHerobrine lost connection: Disconnected
[09:46:07] [Server thread/INFO]: GwHerobrine left the game
[09:46:08] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? ishant fast
[09:46:12] [pool-71-thread-1/INFO]: ?b?l[Cloudily] FumetsuMonkeyy failed Aim (Type I) (3/8)
[09:46:13] [Server thread/INFO]: AIM_ON_GAME issued server command: /duel accept rajveer00007
[09:46:18] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? NotAnisur25
[09:46:18] [Server thread/INFO]: FumetsuMonkeyy issued server command: /unranked
[09:46:21] [Server thread/INFO]: HarOP issued server command: /unranked
[09:46:22] [User Authenticator #44/INFO]: UUID of player Harshbhai7812 is 9d401170-b90a-3627-99fd-c59dece3ab0a
[09:46:22] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? u want samura
[09:46:22] [Server thread/INFO]: Harshbhai7812 joined the game
[09:46:22] [ForkJoinPool.commonPool-worker-13/INFO]: Loaded Harshbhai7812's data in 43 ms.
[09:46:22] [Server thread/INFO]: Harshbhai7812[/223.228.214.103:45520] logged in with entity id 13482 at ([spawn]-139.0, 145.0, 93.0)
[09:46:24] [Async Chat Thread - #41/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? rank
[09:46:24] [Async Chat Thread - #41/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? kya aum
[09:46:31] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? hmm
[09:46:31] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? toivi
[09:46:34] [Server thread/INFO]: [StaffChat] ToiviDev > yes ?
[09:46:39] [Async Chat Thread - #40/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? ajao
[09:46:41] [Async Chat Thread - #42/INFO]: [Not Secure] Member  | IshantSenpai Silver V ? wait
[09:46:46] [Async Chat Thread - #40/INFO]: [Not Secure] Youtuber  | AumGamingYT Gold III ? toivi tp me fast
[09:46:46] [Async Chat Thread - #42/INFO]: [Not Secure] Samurai  | NotAnisur25 Silver V ? fast