Paste #139587: server log

Date: 2026/03/23 03:13:09 UTC+00: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


[00:00:00] [Craft Scheduler Thread - 2303 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> alr
[00:00:00] [pool-103-thread-1/INFO]: [VotingPlugin] Detected day changed, processing...
[00:00:00] [pool-103-thread-1/INFO]: [VotingPlugin] Time change event: DAY, Fake: false
[00:00:00] [pool-103-thread-1/INFO]: [VotingPlugin] Finished processing day change, took 0 seconds
[00:00:00] [pool-103-thread-1/INFO]: [VotingPlugin] Created zip file at /home/minecraft/multicraft/servers/server3088443/default/plugins/VotingPlugin/Backups/Backup-2026_MARCH_23.zip
[00:00:00] [pool-103-thread-1/INFO]: [VotingPlugin] Finished processing day changes
[00:00:12] [Craft Scheduler Thread - 2276 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> thats alot of glass sheesh
[00:00:20] [Server thread/INFO]: Command execution stopped due to limit (executed 65536 commands)
[00:00:28] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:00:28] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:00:28] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:00:28] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:00:28] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:00:33] [Craft Scheduler Thread - 2303 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> youll see why
[00:00:35] [Server thread/INFO]: ItchyFawn issued server command: /trash
[00:00:37] [Server thread/INFO]: ItchyFawn issued server command: /ah
[00:01:03] [Craft Scheduler Thread - 2300 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> i can just tp to you and drop a bank note so you dont have to put15 stacks on ah lol
[00:01:04] [Server thread/INFO]: Lizardbiz issued server command: /ah sell 250000
[00:01:10] [Craft Scheduler Thread - 2299 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> oh i def put that up wrong
[00:01:12] [Craft Scheduler Thread - 2309 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> lmfao
[00:01:14] [Server thread/INFO]: ItchyFawn issued server command: /ah
[00:01:25] [Server thread/INFO]: Lizardbiz issued server command: /tpa ItchyFawn
[00:01:46] [Server thread/INFO]: ItchyFawn issued server command: /tpaccept
[00:01:55] [Craft Scheduler Thread - 2309 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> how much you want?
[00:02:06] [Craft Scheduler Thread - 2304 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> i one stack up ther for 250k
[00:02:10] [Craft Scheduler Thread - 2295 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> so that and ill drop the rest?
[00:02:17] [Craft Scheduler Thread - 2268 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> bet
[00:02:17] [Craft Scheduler Thread - 2315 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> cus idk how to use that auction thing
[00:02:18] [Server thread/INFO]: ItchyFawn issued server command: /ah
[00:02:19] [Server thread/INFO]: [AuctionHouse] Added ItchyFawn to confirmation pre purchase
[00:02:19] [Server thread/INFO]: [AuctionHouse] Removed ItchyFawn from confirmation pre purchase
[00:02:40] [Craft Scheduler Thread - 2315 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> thanks
[00:02:41] [Craft Scheduler Thread - 2304 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> lit
[00:02:43] [Craft Scheduler Thread - 2306 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> no problemo
[00:02:51] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[00:03:17] [Server thread/INFO]: ItchyFawn issued server command: /shop
[00:03:19] [Craft Scheduler Thread - 2322 - AuctionHouse/INFO]: [AuctionHouse] Cleaned a total of 1 items.
[00:03:22] [Server thread/INFO]: Shop >> ItchyFawn bought 384 x Sand(Blocks.page1.items.11) for $3,840.00 with the buy stacks screen.
[00:03:29] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:03:29] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:03:29] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:03:29] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:03:29] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:03:43] [Server thread/INFO]: Lizardbiz issued server command: /homes beach
[00:05:29] [Server thread/INFO]: ItchyFawn issued server command: /baltop
[00:05:31] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[00:05:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 4 sell interval(s) for 2 loaded sell chest(s) and sold 436 item(s) in the last 10m 0s.
[00:06:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:06:30] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:06:30] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:06:30] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:06:30] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:06:56] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[00:07:11] [Craft Scheduler Thread - 2299 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> el do u got flint
[00:07:15] [Craft Scheduler Thread - 2283 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> yeah hella
[00:07:27] [Craft Scheduler Thread - 2299 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> need like a good 40
[00:07:31] [Craft Scheduler Thread - 2304 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> yeah i got you
[00:07:35] [Server thread/INFO]: BTXDZ issued server command: /tpa Lizardbiz
[00:07:36] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[00:07:43] [Server thread/INFO]: Lizardbiz issued server command: /tpaccept
[00:07:56] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:07:56] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 8x Stick(Z_EverythingElse.page10.items.421) for $2.40 with the sell gui.
[00:08:01] [Craft Scheduler Thread - 2308 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> there u go pimp
[00:08:08] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:08:08] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 2x Stick(Z_EverythingElse.page10.items.421) for $0.60 with the sell gui.
[00:08:10] [Server thread/INFO]: BTXDZ issued server command: /home desert
[00:09:08] [Server thread/INFO]: Lizardbiz issued server command: /trash
[00:09:21] [Server thread/INFO]: Purple_Reignn issued server command: /buy
[00:09:28] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[00:09:32] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:09:32] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:09:32] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:09:32] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:09:32] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:09:33] [Server thread/INFO]: Lizardbiz issued server command: /homes beach
[00:09:46] [Server thread/INFO]: Lizardbiz issued server command: /delhome beach
[00:10:07] [Server thread/INFO]: Purple_Reignn issued server command: /home camel
[00:11:00] [Server thread/INFO]: BTXDZ issued server command: /home desert
[00:11:07] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:11:15] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:11:58] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:12:21] [Craft Scheduler Thread - 2326 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[00:12:33] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:12:33] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:12:33] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:12:33] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:12:33] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:14:21] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:15:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:15:34] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:15:34] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:15:34] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:15:34] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:15:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 1 sell interval(s) for 1 loaded sell chest(s) and sold 35 item(s) in the last 10m 0s.
[00:16:21] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[00:16:27] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:16:57] [Server thread/INFO]: Lizardbiz issued server command: /last
[00:16:58] [Server thread/INFO]: Lizardbiz issued server command: /back
[00:17:13] [Server thread/INFO]: Lizardbiz issued server command: /sethome glass
[00:17:36] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:18:23] [Server thread/INFO]: Purple_Reignn issued server command: /home bed
[00:18:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:18:36] [Server thread/INFO]: There are 5 out of maximum 16 players online.
[00:18:36] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:18:36] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:18:36] [Server thread/INFO]: vip: VIP BTXDZ, VIP Lizardbiz
[00:18:54] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[00:18:55] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[00:19:04] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:19:05] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 40x Sugar Cane(Farming.page1.items.25) for $140.00 with the sell gui.
[00:19:30] [Server thread/INFO]: Lizardbiz issued server command: /trash
[00:20:13] [Server thread/INFO]: Lizardbiz issued server command: /homes glass
[00:20:43] [User Authenticator #22/INFO]: UUID of player lFrancesl is 563ea4bb-3129-4d23-8df1-f2c044b9f00b
[00:20:43] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: lFrancesl
[00:20:45] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to lFrancesl. rspUUID is null: false. done: true. firstUpload: false.
[00:20:45] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to lFrancesl
[00:20:45] [Server thread/INFO]: [ViaVersionStatus] lFrancesl is using version 1.21.9-1.21.10(773).
[00:20:45] [Server thread/INFO]: [VotingPlugin] Login: lFrancesl (563ea4bb-3129-4d23-8df1-f2c044b9f00b)
[00:20:45] [Server thread/INFO]: lFrancesl has joined Vital SMP!
[00:20:45] [Server thread/INFO]: lFrancesl[/8.24.109.230:60269] logged in with entity id 596568 at ([world]2286.156486117095, 63.0, 882.3000171382122)
[00:20:46] [Server thread/INFO]: [voicechat] Received secret request of lFrancesl (20)
[00:20:46] [Server thread/INFO]: [voicechat] Sent secret to lFrancesl
[00:20:48] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player 563ea4bb-3129-4d23-8df1-f2c044b9f00b
[00:20:49] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully validated connection of player 563ea4bb-3129-4d23-8df1-f2c044b9f00b
[00:20:49] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player lFrancesl (563ea4bb-3129-4d23-8df1-f2c044b9f00b) successfully connected to voice chat
[00:21:05] [Server thread/INFO]: Purple_Reignn issued server command: /home bed
[00:21:05] [Craft Scheduler Thread - 2334 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> lets go nini
[00:21:13] [Craft Scheduler Thread - 2319 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> tty
[00:21:21] [Craft Scheduler Thread - 2366 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> np!
[00:21:37] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[00:21:37] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:21:37] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[00:21:37] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:21:37] [Server thread/INFO]: Moderator: Moderator ItchyFawn
[00:21:37] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:22:03] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:22:15] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:22:20] [User Authenticator #23/INFO]: UUID of player HeyDrowzy is 4604c3c7-a347-4a6b-a213-d4a8aacbeb3f
[00:22:20] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: HeyDrowzy
[00:22:22] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to HeyDrowzy. rspUUID is null: false. done: true. firstUpload: false.
[00:22:22] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to HeyDrowzy
[00:22:22] [Server thread/INFO]: [ViaVersionStatus] HeyDrowzy is using version 1.21.9-1.21.10(773).
[00:22:22] [Server thread/INFO]: [VotingPlugin] Login: HeyDrowzy (4604c3c7-a347-4a6b-a213-d4a8aacbeb3f)
[00:22:22] [Server thread/INFO]: HeyDrowzy has joined Vital SMP!
[00:22:22] [Server thread/INFO]: HeyDrowzy[/76.37.23.126:3210] logged in with entity id 598707 at ([world]6732.912050934009, 67.0, 5625.81954566433)
[00:22:22] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:22:23] [Server thread/INFO]: [voicechat] Received secret request of HeyDrowzy (20)
[00:22:23] [Server thread/INFO]: [voicechat] Sent secret to HeyDrowzy
[00:22:23] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player 4604c3c7-a347-4a6b-a213-d4a8aacbeb3f
[00:22:24] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully validated connection of player 4604c3c7-a347-4a6b-a213-d4a8aacbeb3f
[00:22:24] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player HeyDrowzy (4604c3c7-a347-4a6b-a213-d4a8aacbeb3f) successfully connected to voice chat
[00:22:39] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:22:43] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:23:08] [Server thread/INFO]: Lizardbiz issued server command: /craftr
[00:23:09] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:23:09] [Server thread/INFO]: Lizardbiz issued server command: /craft
[00:23:26] [Server thread/INFO]: Lizardbiz issued server command: /trash
[00:23:29] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:23:39] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[00:23:53] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:23:53] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 1x Stick(Z_EverythingElse.page10.items.421) for $0.30 with the sell gui.
[00:23:54] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:24:14] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:24:30] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:24:31] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 5x Stick(Z_EverythingElse.page10.items.421) for $1.50 with the sell gui.
[00:24:31] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:24:32] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 13x Spruce Sapling(Decoration.page1.items.20) for $13.00 with the sell gui.
[00:24:33] [Server thread/INFO]: Lizardbiz issued server command: /homes glass
[00:24:38] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:24:38] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:24:38] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:24:38] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:24:38] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:24:44] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:25:11] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:25:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 2 sell interval(s) for 1 loaded sell chest(s) and sold 62 item(s) in the last 10m 0s.
[00:26:51] [Server thread/INFO]: lFrancesl issued server command: /tpaccept
[00:26:57] [Server thread/INFO]: BTXDZ issued server command: /home desert
[00:27:01] [Server thread/INFO]: lFrancesl issued server command: /tpa HeyDrowzy
[00:27:09] [Server thread/INFO]: HeyDrowzy issued server command: /tpaccept
[00:27:23] [Craft Scheduler Thread - 2371 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[00:27:23] [Craft Scheduler Thread - 2378 - Vault/INFO]: [Vault] Checking for Updates ... 
[00:27:23] [Craft Scheduler Thread - 2378 - Vault/INFO]: [Vault] No new version available
[00:27:25] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:27:26] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 4x Carrot(Farming.page1.items.8) for $16.00 with the sell gui.
[00:27:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:27:40] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:27:40] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:27:40] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:27:40] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:27:57] [Server thread/INFO]: Purple_Reignn issued server command: /vote
[00:28:00] [Server thread/INFO]: lFrancesl issued server command: /home cottage
[00:28:14] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /45.33.29.47:34314 -> Vote (from:MCSL username:Purple_Reignn address:67.191.207.31 timeStamp:1774225694 additionalData:null)
[00:28:14] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MCSL' by player 'Purple_Reignn'!
[00:28:14] [pool-108-thread-1/INFO]: [Broadcast] Thanks Purple_Reignn for voting on MCSL
[00:28:14] [pool-108-thread-1/INFO]: Purple_Reignn has recieved a vote key and $1000!
[00:28:14] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Purple_Reignn.
[00:28:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Purple_Reignn 1000
[00:28:14] [Server thread/INFO]: $1,000 added to Admin Purple_Reignn account. New balance: $1,981,226.67
[00:28:24] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.37.31.166:38260 -> Vote (from:Minecraft-MP.com username:Purple_Reignn address:67.191.207.31 timeStamp:1774225704 additionalData:null)
[00:28:24] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'Minecraft-MP.com' by player 'Purple_Reignn'!
[00:28:24] [pool-108-thread-1/INFO]: [Broadcast] Thanks Purple_Reignn for voting on minecraft-mp.com
[00:28:24] [pool-108-thread-1/INFO]: Purple_Reignn has recieved a vote key and $1000!
[00:28:25] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Purple_Reignn.
[00:28:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Purple_Reignn 1000
[00:28:25] [Server thread/INFO]: $1,000 added to Admin Purple_Reignn account. New balance: $1,982,226.67
[00:28:28] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.36.225.177:60551 -> Vote (from:TopG.org username:Purple_Reignn address:67.191.207.31 timeStamp:1774225708 additionalData:null)
[00:28:28] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'TopG.org' by player 'Purple_Reignn'!
[00:28:28] [pool-108-thread-1/INFO]: [Broadcast] Thanks Purple_Reignn for voting on topg.org
[00:28:28] [pool-108-thread-1/INFO]: Purple_Reignn has recieved a vote key and $1000!
[00:28:28] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Purple_Reignn.
[00:28:28] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Purple_Reignn 1000
[00:28:28] [Server thread/INFO]: $1,000 added to Admin Purple_Reignn account. New balance: $1,983,226.67
[00:28:36] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /66.175.210.190:44622 -> Vote (from:MinecraftServers.org username:Purple_Reignn address:67.191.207.31 timeStamp:1774225715000 additionalData:null)
[00:28:36] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MinecraftServers.org' by player 'Purple_Reignn'!
[00:28:36] [pool-108-thread-1/INFO]: [Broadcast] Thanks Purple_Reignn for voting on minecraftservers.org
[00:28:36] [pool-108-thread-1/INFO]: Purple_Reignn has recieved a vote key and $1000!
[00:28:36] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Purple_Reignn.
[00:28:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Purple_Reignn 1000
[00:28:36] [Server thread/INFO]: $1,000 added to Admin Purple_Reignn account. New balance: $1,984,226.67
[00:28:36] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[00:28:37] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 5x Stick(Z_EverythingElse.page10.items.421) for $1.50 with the sell gui.
[00:28:45] [Server thread/INFO]: Purple_Reignn issued server command: /spawn
[00:29:19] [Server thread/INFO]:  
Admin Purple_Reignn opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:29:19] [Server thread/INFO]: [ExcellentCrates] Purple_Reignn won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:29:19] [Server thread/INFO]:  
Admin Purple_Reignn opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:29:19] [Server thread/INFO]: [ExcellentCrates] Purple_Reignn won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:29:19] [Server thread/INFO]:  
Admin Purple_Reignn opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:29:19] [Server thread/INFO]: [ExcellentCrates] Purple_Reignn won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:29:19] [Server thread/INFO]:  
Admin Purple_Reignn opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:29:19] [Server thread/INFO]: [ExcellentCrates] Purple_Reignn won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:29:24] [Server thread/INFO]: lFrancesl issued server command: /timber
[00:29:25] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[00:29:27] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 4x Emerald Block(Ores.page1.items.11) for $1,800.00 with the sell gui.
[00:29:48] [Server thread/INFO]: HeyDrowzy issued server command: /tp BTXDZ
[00:30:33] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:30:41] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:30:41] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:30:41] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:30:41] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:30:41] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:32:24] [Server thread/INFO]: HeyDrowzy issued server command: /tp lFrancesl
[00:33:42] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:33:42] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:33:42] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:33:42] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:33:42] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:35:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 4 sell interval(s) for 3 loaded sell chest(s) and sold 437 item(s) in the last 10m 0s.
[00:36:03] [Server thread/INFO]: lFrancesl issued server command: /timber
[00:36:43] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:36:43] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:36:43] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[00:36:43] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:36:43] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:37:00] [Server thread/INFO]: Zorroah1 issued server command: /vote
[00:37:09] [Server thread/INFO]: Lizardbiz issued server command: /sit
[00:37:09] [Server thread/INFO]: Purple_Reignn issued server command: /home camel
[00:37:16] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /66.175.210.190:57258 -> Vote (from:MinecraftServers.org username:Zorroah1 address:2601:c2:2100:7340:3c2f:9809:c69f:de4e timeStamp:1774226236000 additionalData:null)
[00:37:16] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MinecraftServers.org' by player 'Zorroah1'!
[00:37:16] [pool-108-thread-1/INFO]: [Broadcast] Thanks Zorroah1 for voting on minecraftservers.org
[00:37:16] [pool-108-thread-1/INFO]: Zorroah1 has recieved a vote key and $1000!
[00:37:16] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Zorroah1.
[00:37:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Zorroah1 1000
[00:37:16] [Server thread/INFO]: $1,000 added to Owner Zorroah1 account. New balance: $1,458,142.21
[00:37:21] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.36.225.177:53443 -> Vote (from:TopG.org username:Zorroah1 address:2601:c2:2100:7340:3c2f:9809:c69f:de4e timeStamp:1774226240 additionalData:null)
[00:37:21] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'TopG.org' by player 'Zorroah1'!
[00:37:21] [pool-108-thread-1/INFO]: [Broadcast] Thanks Zorroah1 for voting on topg.org
[00:37:21] [pool-108-thread-1/INFO]: Zorroah1 has recieved a vote key and $1000!
[00:37:21] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Zorroah1.
[00:37:21] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Zorroah1 1000
[00:37:21] [Server thread/INFO]: $1,000 added to Owner Zorroah1 account. New balance: $1,459,142.21
[00:37:28] [Server thread/INFO]: Command execution stopped due to limit (executed 65536 commands)
[00:37:40] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.37.31.166:42512 -> Vote (from:Minecraft-MP.com username:Zorroah1 address:2601:c2:2100:7340:3c2f:9809:c69f:de4e timeStamp:1774226260 additionalData:null)
[00:37:40] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'Minecraft-MP.com' by player 'Zorroah1'!
[00:37:40] [pool-108-thread-1/INFO]: [Broadcast] Thanks Zorroah1 for voting on minecraft-mp.com
[00:37:40] [pool-108-thread-1/INFO]: Zorroah1 has recieved a vote key and $1000!
[00:37:41] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Zorroah1.
[00:37:41] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Zorroah1 1000
[00:37:41] [Server thread/INFO]: $1,000 added to Owner Zorroah1 account. New balance: $1,460,142.21
[00:37:43] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:37:48] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /45.33.29.47:53694 -> Vote (from:MCSL username:Zorroah1 address:2601:c2:2100:7340:3c2f:9809:c69f:de4e timeStamp:1774226267 additionalData:null)
[00:37:48] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MCSL' by player 'Zorroah1'!
[00:37:48] [pool-108-thread-1/INFO]: [Broadcast] Thanks Zorroah1 for voting on MCSL
[00:37:48] [pool-108-thread-1/INFO]: Zorroah1 has recieved a vote key and $1000!
[00:37:48] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to Zorroah1.
[00:37:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Zorroah1 1000
[00:37:48] [Server thread/INFO]: $1,000 added to Owner Zorroah1 account. New balance: $1,461,142.21
[00:38:06] [Server thread/INFO]: lFrancesl issued server command: /home cottage
[00:38:12] [Server thread/INFO]:  
Owner Zorroah1 opened Daily Crate and received Lantern!
 
Purchase keys: [Click to open Store]
 
[00:38:12] [Server thread/INFO]: [ExcellentCrates] Zorroah1 won  (ID: lantern, Weight: 10.0) from Daily Crate (ID: daily)
[00:38:12] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /broadcast Zorroah1 has opened Daily Crate!
[00:38:35] [Server thread/INFO]:  
Owner Zorroah1 opened Vote Crate and received Cow Spawner!
 
Purchase keys: [Click to open Store]
 
[00:38:35] [Server thread/INFO]: [ExcellentCrates] Zorroah1 won Cow Spawner (ID: cow_spawner, Weight: 3.0) from Vote Crate (ID: votecrate)
[00:38:35] [Server thread/INFO]:  
Owner Zorroah1 opened Vote Crate and received Cow Spawner!
 
Purchase keys: [Click to open Store]
 
[00:38:35] [Server thread/INFO]: [ExcellentCrates] Zorroah1 won Cow Spawner (ID: cow_spawner, Weight: 3.0) from Vote Crate (ID: votecrate)
[00:38:35] [Server thread/INFO]:  
Owner Zorroah1 opened Vote Crate and received Sheep Spawner!
 
Purchase keys: [Click to open Store]
 
[00:38:35] [Server thread/INFO]: [ExcellentCrates] Zorroah1 won Sheep Spawner (ID: sheep_spawner, Weight: 3.0) from Vote Crate (ID: votecrate)
[00:38:35] [Server thread/INFO]:  
Owner Zorroah1 opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:38:35] [Server thread/INFO]: [ExcellentCrates] Zorroah1 won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:38:41] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[00:38:49] [Server thread/INFO]: Zorroah1 issued server command: /home loot
[00:39:07] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[00:39:21] [Server thread/INFO]: HeyDrowzy issued server command: /home home
[00:39:26] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[00:39:27] [Craft Scheduler Thread - 2406 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> holy moly u put so much in the auto sorter haha
[00:39:43] [Craft Scheduler Thread - 2412 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> queen shit
[00:39:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:39:45] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:39:45] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:39:45] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:39:45] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:39:49] [Craft Scheduler Thread - 2362 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> yeah thats what its for lol to sort shit
[00:39:53] [Craft Scheduler Thread - 2376 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> fr lol
[00:39:56] [Craft Scheduler Thread - 2388 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> on this episode of hoarders: Bando
[00:40:08] [Craft Scheduler Thread - 2398 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> wtf
[00:40:15] [Craft Scheduler Thread - 2417 - InteractiveChat/INFO]: [Not Secure] <Moderator HeyDrowzy> already corrupting her
[00:40:17] [Craft Scheduler Thread - 2406 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> LOL
[00:40:30] [Craft Scheduler Thread - 2407 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> why yall polluting her
[00:40:39] [Craft Scheduler Thread - 2410 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> you are the polutioon of this biome
[00:40:41] [Craft Scheduler Thread - 2398 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> ur polluting us with ur stank be quiet
[00:40:45] [Craft Scheduler Thread - 2406 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> lmfao
[00:40:49] [Craft Scheduler Thread - 2417 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> queens stick together
[00:40:53] [Craft Scheduler Thread - 2413 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> periodt
[00:40:56] [Craft Scheduler Thread - 2388 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> perioddddd
[00:40:56] [Craft Scheduler Thread - 2388 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> oh gr8
[00:40:57] [Craft Scheduler Thread - 2413 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> u boys are peasents
[00:41:08] [Craft Scheduler Thread - 2396 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> so when we building a girls clubhouse and having a no boys allowed sign
[00:41:22] [Craft Scheduler Thread - 2388 - InteractiveChat/INFO]: [Not Secure] <Moderator HeyDrowzy> wow
[00:41:23] [Craft Scheduler Thread - 2362 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> wake it upppp
[00:41:26] [Craft Scheduler Thread - 2376 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> we got a vip boys club its already made
[00:41:31] [Craft Scheduler Thread - 2413 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ur just late to the party
[00:41:36] [Craft Scheduler Thread - 2388 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> maybe a vip loser club
[00:41:36] [Craft Scheduler Thread - 2401 - InteractiveChat/ERROR]: Could not pass event AsyncChatEvent to EssentialsChat v2.22.0-dev+57-7775662
java.lang.NullPointerException: Cannot invoke "String.length()" because "input" is null
    at net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializerImpl.deserialize(LegacyComponentSerializerImpl.java:209) ~[adventure-text-serializer-legacy-4.25.0.jar:?]
    at EssentialsX-2.22.0-dev+57-7775662.jar/net.ess3.provider.providers.PaperChatListenerProvider.onHighest(PaperChatListenerProvider.java:74) ~[EssentialsX-2.22.0-dev+57-7775662.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.adventure.ChatProcessor.post(ChatProcessor.java:378) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at io.papermc.paper.adventure.ChatProcessor.processModern(ChatProcessor.java:151) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at io.papermc.paper.adventure.ChatProcessor.process(ChatProcessor.java:106) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.chat(ServerGamePacketListenerImpl.java:2500) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at InteractiveChat-4.3.5.0.jar/com.loohp.interactivechat.nms.V1_21_10.chatAsPlayerAsync(V1_21_10.java:607) ~[InteractiveChat-4.3.5.0.jar:?]
    at InteractiveChat-4.3.5.0.jar/com.loohp.interactivechat.utils.PlayerUtils.chatAsPlayer(PlayerUtils.java:76) ~[InteractiveChat-4.3.5.0.jar:?]
    at InteractiveChat-4.3.5.0.jar/com.loohp.interactivechat.listeners.packet.RedispatchedSignPacketHandler.lambda$redispatchChatMessage$3(RedispatchedSignPacketHandler.java:62) ~[InteractiveChat-4.3.5.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.21.10.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[00:41:36] [Craft Scheduler Thread - 2401 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> nobody cares
[00:41:36] [Craft Scheduler Thread - 2412 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> IM LIterally vip
[00:42:10] [Server thread/INFO]: HeyDrowzy issued server command: /vote
[00:42:20] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /66.175.210.190:57208 -> Vote (from:MinecraftServers.org username:heydrowzy address:2603:7080:1bf0:7e00:c88a:2b06:ff4c:776e timeStamp:1774226540000 additionalData:null)
[00:42:20] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MinecraftServers.org' by player 'heydrowzy'!
[00:42:20] [pool-108-thread-1/INFO]: [Broadcast] Thanks HeyDrowzy for voting on minecraftservers.org
[00:42:20] [pool-108-thread-1/INFO]: HeyDrowzy has recieved a vote key and $1000!
[00:42:20] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to HeyDrowzy.
[00:42:20] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give HeyDrowzy 1000
[00:42:20] [Server thread/INFO]: $1,000 added to Moderator HeyDrowzy account. New balance: $286,150.98
[00:42:24] [Craft Scheduler Thread - 2362 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[00:42:30] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.36.225.177:44561 -> Vote (from:TopG.org username:heydrowzy address:2603:7080:1bf0:7e00:c88a:2b06:ff4c:776e timeStamp:1774226550 additionalData:null)
[00:42:30] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'TopG.org' by player 'heydrowzy'!
[00:42:30] [pool-108-thread-1/INFO]: [Broadcast] Thanks HeyDrowzy for voting on topg.org
[00:42:30] [pool-108-thread-1/INFO]: HeyDrowzy has recieved a vote key and $1000!
[00:42:30] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to HeyDrowzy.
[00:42:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give HeyDrowzy 1000
[00:42:30] [Server thread/INFO]: $1,000 added to Moderator HeyDrowzy account. New balance: $287,150.98
[00:42:31] [Server thread/INFO]: BTXDZ issued server command: /voteall
[00:42:45] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /66.175.210.190:44044 -> Vote (from:MinecraftServers.org username:BTXDZ address:2603:8083:2bf0:5e70:48b4:6f:3575:c467 timeStamp:1774226565000 additionalData:null)
[00:42:45] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MinecraftServers.org' by player 'BTXDZ'!
[00:42:45] [pool-108-thread-1/INFO]: [Broadcast] Thanks BTXDZ for voting on minecraftservers.org
[00:42:45] [pool-108-thread-1/INFO]: BTXDZ has recieved a vote key and $1000!
[00:42:45] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to BTXDZ.
[00:42:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give BTXDZ 1000
[00:42:45] [Server thread/INFO]: $1,000 added to VIP BTXDZ account. New balance: $64,226.63
[00:42:46] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.37.31.166:39108 -> Vote (from:Minecraft-MP.com username:heydrowzy address:2603:7080:1bf0:7e00:c88a:2b06:ff4c:776e timeStamp:1774226566 additionalData:null)
[00:42:46] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'Minecraft-MP.com' by player 'heydrowzy'!
[00:42:46] [pool-108-thread-1/INFO]: [Broadcast] Thanks HeyDrowzy for voting on minecraft-mp.com
[00:42:46] [pool-108-thread-1/INFO]: HeyDrowzy has recieved a vote key and $1000!
[00:42:46] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to HeyDrowzy.
[00:42:46] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give HeyDrowzy 1000
[00:42:46] [Server thread/INFO]: $1,000 added to Moderator HeyDrowzy account. New balance: $288,150.98
[00:42:46] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:42:46] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:42:46] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:42:46] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:42:46] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:42:48] [Server thread/INFO]: Zorroah1 issued server command: /spin
[00:42:50] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.36.225.177:43309 -> Vote (from:TopG.org username:BTXDZ address:2603:8083:2bf0:5e70:48b4:6f:3575:c467 timeStamp:1774226570 additionalData:null)
[00:42:50] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'TopG.org' by player 'BTXDZ'!
[00:42:50] [pool-108-thread-1/INFO]: [Broadcast] Thanks BTXDZ for voting on topg.org
[00:42:50] [pool-108-thread-1/INFO]: BTXDZ has recieved a vote key and $1000!
[00:42:50] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to BTXDZ.
[00:42:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give BTXDZ 1000
[00:42:50] [Server thread/INFO]: $1,000 added to VIP BTXDZ account. New balance: $65,226.63
[00:43:09] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /54.37.31.166:47942 -> Vote (from:Minecraft-MP.com username:BTXDZ address:2603:8083:2bf0:5e70:48b4:6f:3575:c467 timeStamp:1774226589 additionalData:null)
[00:43:09] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'Minecraft-MP.com' by player 'BTXDZ'!
[00:43:09] [pool-108-thread-1/INFO]: [Broadcast] Thanks BTXDZ for voting on minecraft-mp.com
[00:43:09] [pool-108-thread-1/INFO]: BTXDZ has recieved a vote key and $1000!
[00:43:09] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to BTXDZ.
[00:43:09] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give BTXDZ 1000
[00:43:09] [Server thread/INFO]: $1,000 added to VIP BTXDZ account. New balance: $66,226.63
[00:43:16] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /45.33.29.47:33158 -> Vote (from:MCSL username:BTXDZ address:2603:8083:2bf0:5e70:48b4:6f:3575:c467 timeStamp:1774226595 additionalData:null)
[00:43:16] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MCSL' by player 'BTXDZ'!
[00:43:16] [pool-108-thread-1/INFO]: [Broadcast] Thanks BTXDZ for voting on MCSL
[00:43:16] [pool-108-thread-1/INFO]: BTXDZ has recieved a vote key and $1000!
[00:43:16] [Server thread/INFO]: Crates » Given x1 of Vote Key key(s) to BTXDZ.
[00:43:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give BTXDZ 1000
[00:43:16] [Server thread/INFO]: $1,000 added to VIP BTXDZ account. New balance: $67,226.63
[00:43:18] [Server thread/INFO]: Zorroah1 issued server command: /sit
[00:43:24] [Server thread/INFO]: Purple_Reignn issued server command: /sit
[00:43:26] [Server thread/INFO]: BTXDZ issued server command: /spawn
[00:43:28] [Server thread/INFO]: HeyDrowzy issued server command: /spawn
[00:43:52] [Server thread/INFO]:  
Moderator HeyDrowzy opened Daily Crate and received Oak Log!
 
Purchase keys: [Click to open Store]
 
[00:43:52] [Server thread/INFO]: [ExcellentCrates] HeyDrowzy won  (ID: oak_log, Weight: 10.0) from Daily Crate (ID: daily)
[00:43:52] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /broadcast HeyDrowzy has opened Daily Crate!
[00:43:58] [Server thread/INFO]:  
VIP BTXDZ opened Vote Crate and received Netherite Scrap!
 
Purchase keys: [Click to open Store]
 
[00:43:58] [Server thread/INFO]: [ExcellentCrates] BTXDZ won  (ID: netherite_scrap, Weight: 4.0) from Vote Crate (ID: votecrate)
[00:44:10] [Server thread/INFO]:  
Moderator HeyDrowzy opened Vote Crate and received Block of Gold!
 
Purchase keys: [Click to open Store]
 
[00:44:10] [Server thread/INFO]: [ExcellentCrates] HeyDrowzy won  (ID: gold_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:44:14] [Server thread/INFO]:  
VIP BTXDZ opened Vote Crate and received Diamond!
 
Purchase keys: [Click to open Store]
 
[00:44:14] [Server thread/INFO]: [ExcellentCrates] BTXDZ won  (ID: diamond, Weight: 10.0) from Vote Crate (ID: votecrate)
[00:44:30] [Server thread/INFO]:  
Moderator HeyDrowzy opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:44:30] [Server thread/INFO]: [ExcellentCrates] HeyDrowzy won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:44:30] [Server thread/INFO]:  
VIP BTXDZ opened Vote Crate and received Netherite Scrap!
 
Purchase keys: [Click to open Store]
 
[00:44:30] [Server thread/INFO]: [ExcellentCrates] BTXDZ won  (ID: netherite_scrap, Weight: 4.0) from Vote Crate (ID: votecrate)
[00:44:44] [Server thread/INFO]:  
VIP BTXDZ opened Vote Crate and received Block of Gold!
 
Purchase keys: [Click to open Store]
 
[00:44:44] [Server thread/INFO]: [ExcellentCrates] BTXDZ won  (ID: gold_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:44:46] [Server thread/INFO]:  
Moderator HeyDrowzy opened Vote Crate and received Block of Emerald!
 
Purchase keys: [Click to open Store]
 
[00:44:46] [Server thread/INFO]: [ExcellentCrates] HeyDrowzy won  (ID: emerald_block, Weight: 30.0) from Vote Crate (ID: votecrate)
[00:44:54] [Server thread/INFO]: BTXDZ issued server command: /home desert
[00:45:24] [Server thread/INFO]: Zorroah1 issued server command: /tp HeyDrowzy
[00:45:35] [Server thread/INFO]: Zorroah1 issued server command: /back
[00:45:47] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:45:47] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:45:47] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:45:47] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:45:47] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:45:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 3 sell interval(s) for 3 loaded sell chest(s) and sold 625 item(s) in the last 10m 0s.
[00:46:18] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[00:46:28] [Server thread/INFO]: Zorroah1 issued server command: /tp HeyDrowzy
[00:46:43] [Server thread/INFO]: Zorroah1 issued server command: /npc select --range
[00:47:20] [Server thread/INFO]: Zorroah1 issued server command: /npc select --range
[00:47:22] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[00:47:33] [Server thread/INFO]: Zorroah1 issued server command: /npc despawn 13
[00:47:41] [Server thread/INFO]: Zorroah1 issued server command: /AH
[00:47:42] [Server thread/INFO]: Zorroah1 issued server command: /ah
[00:47:47] [Server thread/INFO]: BTXDZ issued server command: /home xp
[00:48:04] [Server thread/INFO]: Zorroah1 issued server command: /tp ItchyFawn
[00:48:08] [Craft Scheduler Thread - 2414 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> hello
[00:48:09] [Server thread/INFO]: BTXDZ issued server command: /home witherxp
[00:48:12] [Craft Scheduler Thread - 2408 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> hola
[00:48:15] [Craft Scheduler Thread - 2376 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> i had to see what u were using all the glass for
[00:48:18] [Craft Scheduler Thread - 2409 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> holadola
[00:48:40] [Server thread/INFO]: BTXDZ issued server command: /crawl
[00:48:49] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:48:49] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:48:49] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:48:49] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:48:49] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:49:04] [Server thread/INFO]: BTXDZ issued server command: /sethome wings
[00:49:04] [Server thread/INFO]: HeyDrowzy issued server command: /home home
[00:49:28] [Server thread/INFO]: HeyDrowzy issued server command: /shop
[00:49:32] [Server thread/INFO]: Shop >> HeyDrowzy bought 1 x Totem Of Undying(Totems.page1.items.1) for $50,000.00 with the buy screen.
[00:49:38] [Server thread/INFO]: Lizardbiz issued server command: /sb
[00:49:39] [Server thread/INFO]: Zorroah1 issued server command: /ignoreclaims
[00:49:44] [Craft Scheduler Thread - 2419 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> 146k
[00:49:52] [Server thread/INFO]: Zorroah1 issued server command: /sellgui
[00:49:53] [Server thread/INFO]: Lizardbiz issued server command: /sb
[00:49:54] [Server thread/INFO]: Shop >> Owner Zorroah1 sold 1216x Cactus(Farming.page1.items.7) for $4,864.00 with the sell gui.
[00:49:57] [Server thread/INFO]: Zorroah1 issued server command: /sellgui
[00:49:59] [Server thread/INFO]: Shop >> Owner Zorroah1 sold 1216x Cactus(Farming.page1.items.7) for $4,864.00 with the sell gui.
[00:50:02] [Server thread/INFO]: Zorroah1 issued server command: /sellgui
[00:50:05] [Server thread/INFO]: Shop >> Owner Zorroah1 sold 1054x Cactus(Farming.page1.items.7) for $4,216.00 with the sell gui.
[00:50:12] [Server thread/INFO]: Zorroah1 issued server command: /bal
[00:50:33] [Server thread/INFO]: ItchyFawn issued server command: /shop
[00:50:53] [Server thread/INFO]: lFrancesl issued server command: /tpa Lizardbiz
[00:50:57] [Server thread/INFO]: Lizardbiz issued server command: /tpaccept
[00:51:27] [Server thread/INFO]: lFrancesl issued server command: /home cottage
[00:51:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:51:50] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:51:50] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:51:50] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:51:50] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:52:30] [Craft Scheduler Thread - 2409 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> sweet dreams
[00:52:35] [Craft Scheduler Thread - 2396 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> nini
[00:52:35] [Server thread/INFO]: Purple_Reignn issued server command: /home bed
[00:52:41] [Server thread/INFO]: ItchyFawn issued server command: /shop
[00:52:55] [Server thread/INFO]: Zorroah1 issued server command: /sellgui
[00:53:01] [Server thread/INFO]: Purple_Reignn issued server command: /back
[00:53:29] [Server thread/INFO]: BTXDZ issued server command: /home deepdark
[00:53:39] [Server thread/INFO]: HeyDrowzy issued server command: /tp BTXDZ
[00:53:44] [Server thread/INFO]: ItchyFawn issued server command: /shop
[00:53:47] [Server thread/INFO]: BTXDZ issued server command: /back
[00:53:55] [Server thread/INFO]: BTXDZ issued server command: /back
[00:54:51] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:54:51] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:54:51] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:54:51] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:54:51] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:55:13] [Server thread/INFO]: ItchyFawn issued server command: /baltop
[00:55:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 4 sell interval(s) for 3 loaded sell chest(s) and sold 237 item(s) in the last 10m 0s.
[00:56:49] [Server thread/INFO]: HeyDrowzy issued server command: /sb
[00:57:37] [Craft Scheduler Thread - 2438 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[00:57:52] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[00:57:52] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[00:57:52] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[00:57:52] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[00:57:52] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[00:59:00] [Server thread/INFO]: ItchyFawn issued server command: /shop
[01:00:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:00:54] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:00:54] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:00:54] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:00:54] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:03:55] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:03:55] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:03:55] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:03:55] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:03:55] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:05:07] [Server thread/INFO]: ItchyFawn issued server command: /sellgui
[01:05:07] [Server thread/INFO]: Shop >> Moderator ItchyFawn sold 10x Stick(Z_EverythingElse.page10.items.421) for $3.00 with the sell gui.
[01:05:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 1 sell interval(s) for 1 loaded sell chest(s) and sold 44 item(s) in the last 10m 0s.
[01:06:56] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:06:56] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:06:56] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:06:56] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:06:56] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:07:48] [Server thread/INFO]: HeyDrowzy issued server command: /home home
[01:08:48] [Server thread/INFO]: BTXDZ issued server command: /home desert
[01:08:49] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:08:56] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 2x Rotten Flesh(Mobs.page1.items.17), 1152x Cactus(Farming.page1.items.7) for $4,638.00 with the sell gui.
[01:09:10] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:09:18] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 1472x Cactus(Farming.page1.items.7) for $5,888.00 with the sell gui.
[01:09:40] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:09:44] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 1536x Cactus(Farming.page1.items.7) for $6,144.00 with the sell gui.
[01:09:52] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:09:57] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 1536x Cactus(Farming.page1.items.7) for $6,144.00 with the sell gui.
[01:09:58] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:09:58] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:09:58] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:09:58] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:09:58] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:10:01] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[01:10:14] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:10:19] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 1472x Cactus(Farming.page1.items.7) for $5,888.00 with the sell gui.
[01:10:25] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:10:28] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 1472x Cactus(Farming.page1.items.7) for $5,888.00 with the sell gui.
[01:10:57] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:11:01] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 448x Cactus(Farming.page1.items.7) for $1,792.00 with the sell gui.
[01:12:46] [Votifier epoll worker/ERROR]: [Votifier] Unable to process vote from /44.220.185.202:47064
com.vexsoftware.votifier.io.netty.handler.codec.DecoderException: com.vexsoftware.votifier.util.QuietException: Could not decrypt data from /44.220.185.202:47064 as it is too long. Attack?
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:471) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.handlerRemoved(ByteToMessageDecoder.java:253) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:508) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:440) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:792) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:475) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:378) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[nuvotifier.jar:?]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: com.vexsoftware.votifier.util.QuietException: Could not decrypt data from /44.220.185.202:47064 as it is too long. Attack?
[01:12:46] [Votifier epoll worker/ERROR]: [Votifier] Unable to process vote from /44.220.185.202:47082
com.vexsoftware.votifier.io.netty.handler.codec.DecoderException: com.vexsoftware.votifier.util.QuietException: Could not decrypt data from /44.220.185.202:47082 as it is too long. Attack?
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:471) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.handlerRemoved(ByteToMessageDecoder.java:253) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:508) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:440) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:792) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:475) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:378) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[nuvotifier.jar:?]
    at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[nuvotifier.jar:?]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
Caused by: com.vexsoftware.votifier.util.QuietException: Could not decrypt data from /44.220.185.202:47082 as it is too long. Attack?
[01:12:56] [Server thread/INFO]: Command execution stopped due to limit (executed 65536 commands)
[01:12:59] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:12:59] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:12:59] [Server thread/INFO]: Admins: Admin Purple_Reignn, [AFK]Owner Zorroah1
[01:12:59] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:12:59] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:13:10] [Craft Scheduler Thread - 2484 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[01:14:50] [Server thread/INFO]: Zorroah1 issued server command: /tp lFrancesl
[01:15:29] [Craft Scheduler Thread - 2455 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> yes
[01:15:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 2 sell interval(s) for 1 loaded sell chest(s) and sold 68 item(s) in the last 10m 0s.
[01:16:00] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:16:00] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:16:00] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:16:00] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:16:00] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:16:56] [Server thread/INFO]: Zorroah1 issued server command: /tp Lizardbiz
[01:17:17] [Server thread/INFO]: Zorroah1 issued server command: /sit
[01:17:47] [Craft Scheduler Thread - 2486 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> how did u get white lily pads
[01:18:01] [Craft Scheduler Thread - 2479 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ohh maybe its my resource pack
[01:18:17] [Craft Scheduler Thread - 2488 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> lol
[01:18:39] [Craft Scheduler Thread - 2459 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ally says she is moving in wth u
[01:18:43] [Craft Scheduler Thread - 2446 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> ok!!!1
[01:18:46] [Craft Scheduler Thread - 2497 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> ill make her a room
[01:18:49] [Craft Scheduler Thread - 2489 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> nvm we sharing a bed
[01:18:55] [Craft Scheduler Thread - 2466 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> what color she want her side to be
[01:19:01] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:19:01] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:19:01] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:19:01] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:19:01] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:19:03] [Craft Scheduler Thread - 2479 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> blue
[01:19:05] [Craft Scheduler Thread - 2446 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> heard
[01:19:38] [Server thread/INFO]: Lizardbiz issued server command: /home lushcave
[01:20:01] [Craft Scheduler Thread - 2466 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> u killed the tv for sure
[01:20:04] [Craft Scheduler Thread - 2488 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> slayyy
[01:20:27] [Server thread/INFO]: Zorroah1 issued server command: /home loot
[01:20:46] [Server thread/INFO]: ItchyFawn issued server command: /shop
[01:20:51] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:52] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:52] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:52] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:52] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:52] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:53] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:54] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:55] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:55] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:20:55] [Server thread/INFO]: Shop >> ItchyFawn bought 64 x Stone(Blocks.page1.items.13) for $3,200.00 with the buy stacks screen.
[01:21:14] [Server thread/INFO]: Zorroah1 issued server command: /tp HeyDrowzy
[01:22:03] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:22:03] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:22:03] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:22:03] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:22:03] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:22:18] [Server thread/INFO]: Lizardbiz issued server command: /shop
[01:22:38] [Server thread/INFO]: Lizardbiz issued server command: /ah
[01:22:49] [Server thread/INFO]: HeyDrowzy issued server command: /ah sell 1
[01:22:49] [Server thread/INFO]: Lizardbiz issued server command: /ah
[01:22:51] [Server thread/INFO]: Zorroah1 issued server command: /home loot
[01:22:51] [Server thread/INFO]: [AuctionHouse] Added Lizardbiz to confirmation pre purchase
[01:22:52] [Server thread/INFO]: [AuctionHouse] Removed Lizardbiz from confirmation pre purchase
[01:23:01] [Server thread/INFO]: Lizardbiz issued server command: /craft
[01:23:09] [Craft Scheduler Thread - 2501 - AuctionHouse/INFO]: [AuctionHouse] Cleaned a total of 1 items.
[01:23:46] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[01:24:05] [Server thread/INFO]: Zorroah1 issued server command: /crate editor
[01:24:33] [Server thread/INFO]: Lizardbiz issued server command: /shop
[01:25:04] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:25:04] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:25:04] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:25:04] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:25:04] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:25:06] [Server thread/INFO]: HeyDrowzy issued server command: /ah sell 2000
[01:25:13] [Server thread/INFO]: Lizardbiz issued server command: /ah
[01:25:14] [Server thread/INFO]: [AuctionHouse] Added Lizardbiz to confirmation pre purchase
[01:25:15] [Server thread/INFO]: [AuctionHouse] Removed Lizardbiz from confirmation pre purchase
[01:25:19] [Server thread/INFO]: Zorroah1 issued server command: /ah
[01:25:20] [Server thread/INFO]: Lizardbiz issued server command: /craft
[01:25:53] [Craft Scheduler Thread - 2501 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> ill be back
[01:25:54] [Server thread/INFO]: ItchyFawn lost connection: Disconnected
[01:25:54] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: ItchyFawn
[01:25:54] [Server thread/INFO]: [voicechat] Disconnecting client ItchyFawn
[01:25:54] [Server thread/INFO]: ItchyFawn has left Vital SMP
[01:25:56] [Craft Scheduler Thread - 2493 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> kk
[01:25:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 3 sell interval(s) for 3 loaded sell chest(s) and sold 168 item(s) in the last 10m 0s.
[01:26:09] [Craft Scheduler Thread - 2499 - AuctionHouse/INFO]: [AuctionHouse] Cleaned a total of 1 items.
[01:26:31] [Server thread/INFO]: Lizardbiz issued server command: /craft
[01:27:05] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[01:28:05] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:28:05] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:28:05] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:28:05] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:28:05] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:28:10] [Craft Scheduler Thread - 2522 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[01:29:04] [Server thread/INFO]: Zorroah1 lost connection: Disconnected
[01:29:04] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: Zorroah1
[01:29:04] [Server thread/INFO]: [voicechat] Disconnecting client Zorroah1
[01:29:04] [Server thread/INFO]: Zorroah1 has left Vital SMP
[01:29:10] [User Authenticator #24/INFO]: UUID of player Zorroah1 is 9b1ae35f-3ded-4152-8dc0-73410818d656
[01:29:10] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: Zorroah1
[01:29:12] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to Zorroah1. rspUUID is null: false. done: true. firstUpload: false.
[01:29:12] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to Zorroah1
[01:29:12] [Server thread/INFO]: [VotingPlugin] Login: Zorroah1 (9b1ae35f-3ded-4152-8dc0-73410818d656)
[01:29:12] [Server thread/INFO]: Zorroah1 has joined Vital SMP!
[01:29:12] [Server thread/INFO]: Zorroah1[/67.191.207.31:60152] logged in with entity id 696472 at ([world]6981.131058472825, 64.0, 6034.33183548814)
[01:29:12] [Server thread/INFO]: [voicechat] Received secret request of Zorroah1 (20)
[01:29:12] [Server thread/INFO]: [voicechat] Sent secret to Zorroah1
[01:29:16] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player 9b1ae35f-3ded-4152-8dc0-73410818d656
[01:29:17] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully validated connection of player 9b1ae35f-3ded-4152-8dc0-73410818d656
[01:29:17] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player Zorroah1 (9b1ae35f-3ded-4152-8dc0-73410818d656) successfully connected to voice chat
[01:29:17] [Craft Scheduler Thread - 2493 - InteractiveChat/INFO]: [InteractiveChat] Failed to check against "api.loohpjames.com" for the latest version.. It could be an internet issue or "api.loohpjames.com" is down. If you want disable the update checker, you can disable in config.yml, but we still highly-recommend you to keep your plugin up to date!
[01:29:42] [Server thread/INFO]: Lizardbiz issued server command: /trash
[01:30:02] [User Authenticator #24/INFO]: UUID of player ItchyFawn is 5049b7c7-c4f2-4812-b2c6-09e7c29b858b
[01:30:02] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: ItchyFawn
[01:30:04] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to ItchyFawn. rspUUID is null: false. done: true. firstUpload: false.
[01:30:04] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to ItchyFawn
[01:30:04] [Server thread/INFO]: [ViaVersionStatus] ItchyFawn is using version 1.21.9-1.21.10(773).
[01:30:04] [Server thread/INFO]: [VotingPlugin] Login: ItchyFawn (5049b7c7-c4f2-4812-b2c6-09e7c29b858b)
[01:30:04] [Server thread/INFO]: ItchyFawn has joined Vital SMP!
[01:30:04] [Server thread/INFO]: ItchyFawn[/38.65.32.162:58057] logged in with entity id 697010 at ([world]6685.869178124056, 107.0, 6306.172671440863)
[01:30:04] [Server thread/INFO]: [voicechat] Received secret request of ItchyFawn (20)
[01:30:04] [Server thread/INFO]: [voicechat] Sent secret to ItchyFawn
[01:30:05] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player 5049b7c7-c4f2-4812-b2c6-09e7c29b858b
[01:30:06] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully validated connection of player 5049b7c7-c4f2-4812-b2c6-09e7c29b858b
[01:30:06] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player ItchyFawn (5049b7c7-c4f2-4812-b2c6-09e7c29b858b) successfully connected to voice chat
[01:30:09] [Craft Scheduler Thread - 2493 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> wba
[01:30:11] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[01:30:12] [Server thread/INFO]: Lizardbiz issued server command: /trash
[01:30:22] [Craft Scheduler Thread - 2494 - InteractiveChat/INFO]: [Not Secure] <Moderator ItchyFawn> hello again
[01:30:26] [Server thread/INFO]: Lizardbiz issued server command: /homes glass
[01:30:28] [Craft Scheduler Thread - 2519 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> wb
[01:31:07] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:31:07] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:31:07] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:31:07] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:31:07] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:32:27] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[01:32:44] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[01:33:08] [Server thread/INFO]: Shop >> Purple_Reignn bought 17 x Blackstone(Blocks.page1.items.26) for $3,400.00 with the buy screen.
[01:34:00] [Server thread/INFO]: Purple_Reignn issued server command: /spin
[01:34:04] [Server thread/INFO]: Zorroah1 issued server command: /spin
[01:34:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:34:08] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[01:34:08] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:34:08] [Server thread/INFO]: Moderator: Moderator HeyDrowzy, Moderator ItchyFawn
[01:34:08] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:35:58] [ASC_SCHEDULER_THREAD/INFO]: [AutoSellChests] [INFO]: Completed 1 sell interval(s) for 1 loaded sell chest(s) and sold 48 item(s) in the last 10m 0s.
[01:36:30] [Server thread/INFO]: ItchyFawn lost connection: Disconnected
[01:36:30] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: ItchyFawn
[01:36:30] [Server thread/INFO]: [voicechat] Disconnecting client ItchyFawn
[01:36:30] [Server thread/INFO]: ItchyFawn has left Vital SMP
[01:36:54] [Server thread/INFO]: Zorroah1 issued server command: /mv reload
[01:36:54] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_fireworks: Failure{reason=WORLD_FOLDER_INVALID}
[01:36:54] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_adventurers_guild: Failure{reason=WORLD_FOLDER_INVALID}
[01:36:54] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_hallosseum: Failure{reason=WORLD_FOLDER_INVALID}
[01:36:54] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_north_pole: Failure{reason=WORLD_FOLDER_INVALID}
[01:36:54] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_knight_castle: Failure{reason=WORLD_FOLDER_INVALID}
[01:36:54] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_shadow_of_the_binder_of_worlds: Failure{reason=WORLD_FOLDER_INVALID}
[01:36:54] [Server thread/INFO]: [Multiverse-Portals] 2 - Portals(s) loaded
[01:37:09] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:37:09] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:37:09] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:37:09] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:37:09] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:38:39] [Server thread/INFO]: Zorroah1 issued server command: /mv reload
[01:38:39] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_fireworks: Failure{reason=WORLD_FOLDER_INVALID}
[01:38:39] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_adventurers_guild: Failure{reason=WORLD_FOLDER_INVALID}
[01:38:39] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_hallosseum: Failure{reason=WORLD_FOLDER_INVALID}
[01:38:39] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_north_pole: Failure{reason=WORLD_FOLDER_INVALID}
[01:38:39] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_knight_castle: Failure{reason=WORLD_FOLDER_INVALID}
[01:38:39] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_shadow_of_the_binder_of_worlds: Failure{reason=WORLD_FOLDER_INVALID}
[01:38:39] [Server thread/INFO]: [Multiverse-Portals] 2 - Portals(s) loaded
[01:38:42] [Server thread/INFO]: Zorroah1 issued server command: /mv load nspawn
[01:38:46] [Server thread/INFO]: Zorroah1 issued server command: /mv import nspawn
[01:38:47] [Server thread/INFO]: lFrancesl issued server command: /tpa HeyDrowzy
[01:38:51] [Server thread/INFO]: HeyDrowzy issued server command: /tpaccept
[01:38:56] [Server thread/INFO]: Zorroah1 issued server command: /mv import nspawn normal
[01:38:56] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:nspawn'...
[01:38:56] [Server thread/INFO]: Prepared spawn area in 1 ms
[01:38:56] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[01:38:56] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[01:38:56] [Server thread/INFO]: [WorldGuard] (nspawn) TNT ignition is PERMITTED.
[01:38:56] [Server thread/INFO]: [WorldGuard] (nspawn) Lighters are PERMITTED.
[01:38:56] [Server thread/INFO]: [WorldGuard] (nspawn) Lava fire is PERMITTED.
[01:38:56] [Server thread/INFO]: [WorldGuard] (nspawn) Fire spread is UNRESTRICTED.
[01:38:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'nspawn'
[01:39:04] [Server thread/WARN]: Lizardbiz moved too quickly! 9.683962497746506,0.8592356006687041,-2.6270369466019474
[01:39:12] [Server thread/INFO]: Zorroah1 issued server command: /mvtp nspawn
[01:39:15] [Server thread/INFO]: lFrancesl issued server command: /home cottage
[01:39:17] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[01:40:10] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:40:10] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:40:10] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:40:10] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:40:10] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:40:15] [Server thread/INFO]: HeyDrowzy issued server command: /tp Zorroah1
[01:40:23] [Server thread/INFO]: BTXDZ issued server command: /tpa Zorroah1
[01:40:28] [Server thread/INFO]: Zorroah1 issued server command: /tp BTXDZ Zorroah1
[01:41:47] [Server thread/INFO]: Zorroah1 issued server command: //wand
[01:43:02] [Server thread/INFO]: Zorroah1 issued server command: //copy
[01:43:04] [Server thread/INFO]: Zorroah1 issued server command: /tp BTXDZ
[01:43:12] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:43:12] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:43:12] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:43:12] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:43:12] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:43:20] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:43:25] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:43:32] [Server thread/INFO]: Zorroah1 issued server command: /tp BTXDZ Zorroah1
[01:43:37] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:43:43] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:43:46] [Server thread/INFO]: Zorroah1 issued server command: //rotate 90
[01:43:48] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:43:52] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:43:54] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:43:57] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:43:59] [Craft Scheduler Thread - 2549 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[01:44:00] [Server thread/INFO]: Named entity Slime['Slime'/709397, uuid='9c0b37e0-02cf-4498-a323-c337632f091a', l='ServerLevel[nspawn]', x=-119.68, y=6.71, z=-290.03, cpos=[-8, -19], tl=816, v=true] died: Slime was slain by BTXDZ using [Scarlet Dagger]
[01:44:02] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:44:06] [Server thread/INFO]: Named entity Slime['Slime'/709795, uuid='ed2c7068-bece-4f32-838e-d46178a99610', l='ServerLevel[nspawn]', x=-115.08, y=7.00, z=-286.17, cpos=[-8, -18], tl=105, v=true] died: Slime was slain by BTXDZ using [Scarlet Dagger]
[01:44:06] [Server thread/INFO]: Named entity Slime['Slime'/709794, uuid='4cd86116-1288-4fc6-a2c8-3281dff0c57b', l='ServerLevel[nspawn]', x=-115.10, y=7.00, z=-284.77, cpos=[-8, -18], tl=105, v=true] died: Slime was slain by BTXDZ using [Scarlet Dagger]
[01:44:08] [Server thread/INFO]: Named entity Slime['Slime'/709796, uuid='65658f9a-b636-4c26-9c18-5acc4ca14e3e', l='ServerLevel[nspawn]', x=-115.10, y=7.00, z=-285.57, cpos=[-8, -18], tl=140, v=true] died: Slime was slain by BTXDZ using [Scarlet Dagger]
[01:44:09] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:44:12] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:44:14] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:44:16] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:44:20] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[01:44:27] [Server thread/INFO]: Lizardbiz issued server command: /craft
[01:44:40] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:44:53] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative HeyDrowzy
[01:45:01] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[01:45:07] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[01:45:16] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative BTXDZ
[01:45:27] [Server thread/INFO]: Shop >> Purple_Reignn bought 4 x Bone(Mobs.page1.items.4) for $300.00 with the buy screen.
[01:46:04] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:46:10] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:46:13] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:46:13] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:46:13] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:46:13] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:46:13] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:46:13] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:46:19] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:46:22] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:46:46] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:46:47] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:46:52] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:46:53] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:46:53] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[01:47:01] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:47:03] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:47:18] [Server thread/INFO]: Lizardbiz issued server command: /craft
[01:47:19] [Server thread/INFO]: Zorroah1 issued server command: //undo
[01:47:21] [Server thread/INFO]: Zorroah1 issued server command: //paste
[01:47:25] [Server thread/INFO]: Lizardbiz issued server command: /craft
[01:47:41] [Server thread/INFO]: Purple_Reignn issued server command: /rtp
[01:48:07] [Server thread/INFO]: Zorroah1 issued server command: /time set day
[01:48:21] [Server thread/INFO]: Zorroah1 issued server command: /entities clear
[01:48:33] [Server thread/INFO]: Zorroah1 issued server command: /tp loot
[01:48:35] [Server thread/INFO]: Zorroah1 issued server command: /home loot
[01:48:51] [Server thread/INFO]: Zorroah1 issued server command: /back
[01:48:55] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[01:49:08] [Server thread/INFO]: Zorroah1 issued server command: /mobkill all nspawn
[01:49:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:49:14] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:49:14] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:49:14] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:49:14] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:49:14] [Server thread/INFO]: Zorroah1 issued server command: /gamemode survival HeyDrowzy
[01:49:17] [Server thread/INFO]: Zorroah1 issued server command: /gamemode survival BTXDZ
[01:50:00] [Server thread/INFO]: lFrancesl issued server command: /SIT
[01:50:01] [Server thread/INFO]: lFrancesl issued server command: /sit
[01:52:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:52:16] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:52:16] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:52:16] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:52:16] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:53:27] [Server thread/INFO]: Purple_Reignn issued server command: /home snow
[01:54:55] [Server thread/INFO]: HeyDrowzy issued server command: /home home
[01:55:15] [Server thread/INFO]: BTXDZ issued server command: /home desert
[01:55:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:55:17] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:55:17] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:55:17] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:55:17] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:55:29] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[01:56:24] [Server thread/INFO]: HeyDrowzy issued server command: /home home
[01:56:45] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[01:57:03] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[01:57:10] [Server thread/INFO]: Zorroah1 issued server command: /back
[01:57:39] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[01:57:39] [Server thread/INFO]: [Essentials] Created a User for Eco1 (fcc8e160-6ac7-207f-81a9-aedddd44bf96) for non Bukkit type: net.citizensnpcs.nms.v1_21_R6.entity.EntityHumanNPC$PlayerNPC
[01:57:57] [Server thread/INFO]: Zorroah1 issued server command: /ajlb list
[01:58:18] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[01:58:18] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[01:58:18] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[01:58:18] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[01:58:18] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[01:58:38] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[01:58:48] [Server thread/INFO]: Zorroah1 issued server command: /ajlb viewer
[01:58:48] [Craft Scheduler Thread - 2564 - ajLeaderboards/INFO]: [ajLeaderboards] Starting export
[01:58:48] [Craft Scheduler Thread - 2564 - ajLeaderboards/INFO]: [ajLeaderboards] Export progress: 1/3 fetched
[01:58:48] [Craft Scheduler Thread - 2564 - ajLeaderboards/INFO]: [ajLeaderboards] Export progress: 2/3 fetched
[01:58:48] [Craft Scheduler Thread - 2564 - ajLeaderboards/INFO]: [ajLeaderboards] Export progress: 3/3 fetched
[01:58:50] [Server thread/INFO]: BTXDZ issued server command: /back
[01:58:53] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 1x Spider Eye(Mobs.page1.items.19), 11x Tuff(Blocks.page1.items.14), 11x Gravel(Blocks.page1.items.4), 34x Dirt(Blocks.page1.items.3), 2x Arrow(Mobs.page1.items.1), 693x Stone(Blocks.page1.items.13), 4x String(Mobs.page1.items.20), 4x Bone(Mobs.page1.items.4), 1x Red Mushroom(Farming.page1.items.24), 64x Deepslate(Blocks.page1.items.32), 2x Cobblestone(Blocks.page1.items.28) for $806.40 with the sell gui.
[01:58:59] [Craft Scheduler Thread - 2565 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[01:59:08] [Server thread/INFO]: Zorroah1 issued server command: /tp BTXDZ Zorroah1
[01:59:12] [Server thread/INFO]: Zorroah1 issued server command: /time set day
[01:59:18] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative BTXDZ
[01:59:46] [Server thread/INFO]: Command execution stopped due to limit (executed 65536 commands)
[02:00:07] [Server thread/INFO]: HeyDrowzy issued server command: /tp Zorroah1
[02:00:25] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative HeyDrowzy
[02:00:39] [Server thread/INFO]: Zorroah1 issued server command: /hologram list
[02:00:46] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere money
[02:00:57] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:00:59] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:01:00] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere money
[02:01:12] [Server thread/INFO]: Zorroah1 issued server command: /hologram clone money
[02:01:14] [Server thread/INFO]: Purple_Reignn issued server command: /home bed
[02:01:20] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:01:20] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[02:01:20] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:01:20] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:01:20] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[02:01:21] [Server thread/INFO]: Zorroah1 issued server command: /hologram clone money nspawn
[02:01:34] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere money
[02:01:39] [Server thread/INFO]: Zorroah1 issued server command: /hologram list
[02:01:45] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:01:47] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:01:58] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:00] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:02] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:03] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:11] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:15] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:19] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:02:21] [Server thread/INFO]: Zorroah1 issued server command: /hologram movehere nspawn
[02:03:01] [Server thread/INFO]: Zorroah1 issued server command: /give HeyDrowzy barrier 1
[02:03:07] [Server thread/INFO]: Zorroah1 issued server command: /give BTXDZ barrier 1
[02:03:13] [Server thread/INFO]: Zorroah1 issued server command: /give Zorroah1 barrier 1
[02:03:15] [Server thread/INFO]: Purple_Reignn issued server command: /back
[02:04:21] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:04:21] [Server thread/INFO]: There are 6 out of maximum 16 players online.
[02:04:21] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:04:21] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:04:21] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz
[02:05:09] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:05:20] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 13x Moss Carpet(Z_EverythingElse.page7.items.292), 26x Tuff(Blocks.page1.items.14), 17x Gravel(Blocks.page1.items.4), 399x Deepslate(Blocks.page1.items.32), 2x Moss Block(Miscellaneous.page1.items.1) for $398.08 with the sell gui.
[02:05:44] [Server thread/INFO]: Zorroah1 issued server command: /gamerule doFireTick false
[02:05:44] [Server thread/INFO]: [Zorroah1: Gamerule doFireTick is now set to: false]
[02:05:59] [User Authenticator #25/INFO]: UUID of player Svinxtt is e9a6586c-e2b1-4c53-8468-e0668dcbe0e4
[02:05:59] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: Svinxtt
[02:06:01] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to Svinxtt. rspUUID is null: false. done: true. firstUpload: false.
[02:06:01] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to Svinxtt
[02:06:01] [Server thread/INFO]: [ViaVersionStatus] Svinxtt is using version 1.21.11(774).
[02:06:01] [Server thread/INFO]: [VotingPlugin] Login: Svinxtt (e9a6586c-e2b1-4c53-8468-e0668dcbe0e4)
[02:06:01] [Server thread/INFO]: Svinxtt has joined Vital SMP!
[02:06:01] [Server thread/INFO]: Svinxtt[/173.64.0.40:51726] logged in with entity id 734966 at ([world]6628.567393966418, 88.0, 5799.699999988079)
[02:06:12] [Craft Scheduler Thread - 2616 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> wb
[02:06:14] [Server thread/INFO]: Lizardbiz issued server command: /trash
[02:06:16] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> nou wb
[02:06:28] [Server thread/INFO]: Zorroah1 issued server command: /mv reload
[02:06:28] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_fireworks: Failure{reason=WORLD_FOLDER_INVALID}
[02:06:28] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_adventurers_guild: Failure{reason=WORLD_FOLDER_INVALID}
[02:06:28] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_hallosseum: Failure{reason=WORLD_FOLDER_INVALID}
[02:06:28] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_north_pole: Failure{reason=WORLD_FOLDER_INVALID}
[02:06:28] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_knight_castle: Failure{reason=WORLD_FOLDER_INVALID}
[02:06:28] [Server thread/ERROR]: [Multiverse-Core] Failed to autoload world em_shadow_of_the_binder_of_worlds: Failure{reason=WORLD_FOLDER_INVALID}
[02:06:28] [Server thread/INFO]: [Multiverse-Portals] 2 - Portals(s) loaded
[02:06:36] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative BTXDZ
[02:06:40] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative HeyDrowzy
[02:06:44] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative Zorroah1
[02:06:44] [Craft Scheduler Thread - 2609 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Welcome back to Vital SMP, if you have any questions let us know
[02:06:52] [Craft Scheduler Thread - 2597 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> exactlyyyy
[02:06:54] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:06:59] [Craft Scheduler Thread - 2606 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I have a question
[02:07:00] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 3x Moss Carpet(Z_EverythingElse.page7.items.292), 1x Tuff(Blocks.page1.items.14), 21x Deepslate(Blocks.page1.items.32), 3x Moss Block(Miscellaneous.page1.items.1) for $23.23 with the sell gui.
[02:07:02] [Craft Scheduler Thread - 2609 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> whats up
[02:07:02] [Craft Scheduler Thread - 2615 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> can i get a mil
[02:07:07] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> u can foir sureeeeeee
[02:07:11] [Craft Scheduler Thread - 2597 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> gotta farm for itttt
[02:07:11] [Craft Scheduler Thread - 2597 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> got em boyz
[02:07:22] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:07:22] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:07:22] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:07:22] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:07:22] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:07:23] [Server thread/INFO]: Zorroah1 issued server command: /killall mobs nspawn
[02:07:25] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> 363K
[02:07:31] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:07:33] [Craft Scheduler Thread - 2622 - InteractiveChat/INFO]: [Not Secure] <Moderator HeyDrowzy> oh nahhhhhh lol
[02:07:36] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 20x Copper Ingot(Ores.page1.items.7) for $400.00 with the sell gui.
[02:07:48] [Craft Scheduler Thread - 2621 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Can you transfer money to people?
[02:07:58] [Craft Scheduler Thread - 2609 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> t/ cashgive
[02:07:59] [Server thread/INFO]: Zorroah1 issued server command: /gamerule doDaylightCycle false
[02:07:59] [Server thread/INFO]: [Zorroah1: Gamerule doDaylightCycle is now set to: false]
[02:08:14] [Craft Scheduler Thread - 2617 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> haha its /withdraw and then hand them the nfcnote
[02:08:18] [Craft Scheduler Thread - 2606 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> or /pay
[02:08:21] [Craft Scheduler Thread - 2626 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> t/ polcharge
[02:08:21] [Server thread/INFO]: Svinxtt issued server command: /pay
[02:08:35] [Server thread/INFO]: Zorroah1 issued server command: /time set night
[02:08:36] [Craft Scheduler Thread - 2621 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> you dont have the Y keybind for billing?
[02:08:40] [Craft Scheduler Thread - 2617 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> press y to bring up billing
[02:08:41] [Craft Scheduler Thread - 2579 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> yes
[02:08:44] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> lmfaooo
[02:08:47] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:08:47] [Craft Scheduler Thread - 2628 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> lmfaooo
[02:08:48] [Craft Scheduler Thread - 2627 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> lmaooo
[02:08:50] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 7x Copper Ingot(Ores.page1.items.7) for $140.00 with the sell gui.
[02:08:54] [Craft Scheduler Thread - 2558 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> i dont even have the job menu bro
[02:09:01] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Got deleted
[02:09:06] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:09:12] [Craft Scheduler Thread - 2630 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> did the econmy reset?
[02:09:15] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 2x Copper Ingot(Ores.page1.items.7) for $40.00 with the sell gui.
[02:09:18] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> just urs
[02:09:29] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> sounds about right ive been scamming cards anyway
[02:09:44] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> typical
[02:10:01] [Craft Scheduler Thread - 2607 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> accepting glass as donos
[02:10:06] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:10:06] [Craft Scheduler Thread - 2626 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I give cobblestone
[02:10:08] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:10:14] [Craft Scheduler Thread - 2626 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> i got glass but you gotta pay for it
[02:10:18] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:10:21] [Craft Scheduler Thread - 2606 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> sounds like a scam
[02:10:23] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:10:23] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:10:23] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:10:23] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:10:23] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:10:25] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:10:27] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 10x Iron Ingot(Ores.page1.items.15), 2x Glow Berries(Food.page1.items.7), 15x Gold Ingot(Ores.page1.items.13), 8x Lapis Lazuli(Ores.page1.items.17), 350x Deepslate(Blocks.page1.items.32) for $1,548.50 with the sell gui.
[02:10:28] [Craft Scheduler Thread - 2632 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> or you pay me for my good but sure
[02:10:28] [Server thread/INFO]: Zorroah1 issued server command: /npc remove 2
[02:10:34] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:10:35] [Craft Scheduler Thread - 2622 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> make a gofundme
[02:10:37] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:10:43] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:10:45] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:10:50] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 111x Tuff(Blocks.page1.items.14), 13x Gravel(Blocks.page1.items.4), 108x Deepslate(Blocks.page1.items.32) for $213.40 with the sell gui.
[02:10:52] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Id like to report a player
[02:10:59] [Craft Scheduler Thread - 2622 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> lemme get a couple mil to hold
[02:11:00] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> t/report
[02:11:06] [Craft Scheduler Thread - 2630 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> mud
[02:11:15] [Craft Scheduler Thread - 2620 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> make a ticket
[02:11:17] [Server thread/INFO]: BTXDZ issued server command: /report mud
[02:11:24] [Server thread/INFO]: BTXDZ issued server command: / t/ report mud
[02:11:25] [Craft Scheduler Thread - 2633 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> got clo$ed
[02:11:37] [Server thread/INFO]: Purple_Reignn issued server command: /sellgui
[02:11:42] [Server thread/INFO]: Shop >> Admin Purple_Reignn sold 74x Tuff(Blocks.page1.items.14), 8x Cobbled Deepslate(Blocks.page1.items.1), 179x Deepslate(Blocks.page1.items.32), 2x Gunpowder(Mobs.page1.items.10) for $281.50 with the sell gui.
[02:11:49] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[02:11:59] [Craft Scheduler Thread - 2637 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> got closed cuz nobody responded
[02:12:10] [Craft Scheduler Thread - 2579 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> lmfaooo
[02:12:11] [Craft Scheduler Thread - 2625 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> what r u the owner
[02:12:16] [Craft Scheduler Thread - 2620 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> clearly
[02:12:23] [Craft Scheduler Thread - 2634 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> dangggg its going off in chat
[02:12:25] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> *grabs popcorn*
[02:12:29] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I have a better view of drowzys house then you
[02:12:38] [Craft Scheduler Thread - 2628 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> do you have access to his chests tho?
[02:12:39] [Craft Scheduler Thread - 2628 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> big back grabbing popcorn ofc
[02:12:49] [Craft Scheduler Thread - 2637 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I made his chests
[02:12:52] [Craft Scheduler Thread - 2638 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> i gave him access
[02:12:59] [Craft Scheduler Thread - 2634 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> im pulling up on your block
[02:13:03] [Craft Scheduler Thread - 2621 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> ima have to tax on that popkizzy mud
[02:13:04] [Craft Scheduler Thread - 2628 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> ur not even a real dev
[02:13:04] [Craft Scheduler Thread - 2637 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> put ur flag on
[02:13:13] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> my flag is on
[02:13:16] [Craft Scheduler Thread - 2636 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> never off
[02:13:16] [Craft Scheduler Thread - 2628 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> iits time to sliiiide
[02:13:24] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:13:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:13:25] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:13:25] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:13:25] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:13:25] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:13:27] [Craft Scheduler Thread - 2621 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> *PVP has been enabled*
[02:13:33] [Craft Scheduler Thread - 2621 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> yall ded
[02:13:37] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> lmfao
[02:13:59] [Craft Scheduler Thread - 2621 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[02:13:59] [Craft Scheduler Thread - 2634 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> if pvp was on I would've killed Zorroah 10x over
[02:14:03] [Craft Scheduler Thread - 2634 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> #fucktaxes
[02:14:05] [Craft Scheduler Thread - 2622 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> doubt
[02:14:07] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Zorroah2
[02:14:17] [Craft Scheduler Thread - 2642 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> doubt more like debt
[02:14:18] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> oh u just wait theres gonna be pvp soon
[02:14:24] [Craft Scheduler Thread - 2636 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ima have a bounty on my head soon
[02:14:32] [Craft Scheduler Thread - 2633 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> cap Id claim immediately
[02:14:44] [Craft Scheduler Thread - 2621 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> didnt you get robbed?
[02:14:50] [Craft Scheduler Thread - 2643 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> nunca
[02:14:58] [Server thread/INFO]: Zorroah1 issued server command: /npc create &e1 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:14:59] [Craft Scheduler Thread - 2606 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> yo mato por nada
[02:15:03] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> right btx
[02:15:05] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> cabron
[02:15:11] [Craft Scheduler Thread - 2579 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> tu sabes
[02:15:11] [Server thread/INFO]: [GriefPrevention] Purple_Reignn placed a sign @ world: x6930, z6023;Input
[02:15:21] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:15:25] [Server thread/INFO]: Zorroah1 issued server command: /npc name -h
[02:15:32] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:15:38] [Craft Scheduler Thread - 2641 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Im selling Drowzys base starting at 4M
[02:15:43] [Server thread/INFO]: Zorroah1 issued server command: /npc rename &e1 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:15:45] [Craft Scheduler Thread - 2649 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> dirty or clean money?
[02:15:57] [Server thread/INFO]: Zorroah1 issued server command: /npc delete
[02:16:00] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:16:01] [Craft Scheduler Thread - 2647 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> hold on all my moneys in trucking
[02:16:10] [Server thread/INFO]: Zorroah1 issued server command: /npc create econew2
[02:16:12] [Craft Scheduler Thread - 2637 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> isnt ur trucking still broken?
[02:16:16] [Server thread/INFO]: Zorroah1 issued server command: /npc name -h
[02:16:20] [Craft Scheduler Thread - 2633 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> always
[02:16:24] [Craft Scheduler Thread - 2606 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> it sure is
[02:16:26] [Server thread/INFO]: Zorroah1 issued server command: /npc name &ba
[02:16:26] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:16:26] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:16:26] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:16:26] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:16:26] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:16:32] [Server thread/INFO]: Zorroah1 issued server command: /npc name &b a
[02:16:35] [Craft Scheduler Thread - 2579 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> happens to the best of us
[02:16:39] [Server thread/INFO]: Zorroah1 issued server command: /npc rename &ba
[02:16:56] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add &e1 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:17:01] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[02:17:22] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram clear
[02:17:25] [Server thread/INFO]: Purple_Reignn issued server command: /home camel
[02:17:30] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:17:35] [Server thread/INFO]: Zorroah1 issued server command: /npc create neweco2
[02:17:47] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add &e1 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:18:01] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add &e2 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:18:05] [Server thread/INFO]: Zorroah1 issued server command: /npc name -h
[02:18:21] [Server thread/INFO]: Zorroah1 issued server command: /npc rename &e2 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:18:26] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:18:29] [Server thread/INFO]: Zorroah1 issued server command: /npc name
[02:18:53] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:19:25] [Server thread/INFO]: Lizardbiz issued server command: /craft
[02:19:25] [Craft Scheduler Thread - 2661 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> who got mending villager?
[02:19:27] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:19:27] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:19:27] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:19:27] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:19:27] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:19:35] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:19:45] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> drowz
[02:19:59] [Server thread/INFO]: Zorroah1 issued server command: /npc create neweco2 --nameplate false
[02:20:03] [Craft Scheduler Thread - 2647 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> got one for 2.5 mil
[02:20:10] [Craft Scheduler Thread - 2633 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> wicked
[02:20:14] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> wake it up girl
[02:20:19] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add &e2 &b%ajlb_lb_vault_eco_balance_2_alltime_name%&8| &a$%ajlb_lb_vault_eco_balance_2_alltime_value%
[02:20:23] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> i think i do
[02:20:34] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add test
[02:20:46] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram viewrange 2
[02:20:47] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[02:20:48] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram viewrange 25
[02:20:49] [Craft Scheduler Thread - 2648 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> How tf did our portals get so lucky?
[02:20:54] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:20:54] [Craft Scheduler Thread - 2661 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> theyre like 10 blocks apart
[02:20:56] [Craft Scheduler Thread - 2658 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> if that
[02:20:59] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> 3 portals
[02:21:02] [Craft Scheduler Thread - 2652 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> cuz were so close in the overworld
[02:21:12] [Craft Scheduler Thread - 2651 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I know but im saying how they didnt overlap
[02:21:16] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> it was like just perfect
[02:21:27] [Craft Scheduler Thread - 2655 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> oh it will force them to be apart if ur like 30 blocks away in the overwrodl
[02:21:31] [Server thread/INFO]: Zorroah1 issued server command: /npc create test
[02:21:36] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add test2
[02:21:50] [Server thread/INFO]: Zorroah1 issued server command: /hologram list
[02:21:52] [Craft Scheduler Thread - 2652 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> i think it's more but they've always overlapped in the past just worked out perfect this time
[02:22:11] [Craft Scheduler Thread - 2659 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> yea like link together type shit ye this time it worked out
[02:22:19] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:22:29] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:22:29] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:22:29] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:22:29] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:22:29] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:22:37] [Server thread/INFO]: Zorroah1 issued server command: /npc create neweco2 --type player
[02:22:44] [Server thread/INFO]: Zorroah1 issued server command: /hologram add &btest
[02:22:47] [Server thread/INFO]: Purple_Reignn has made the advancement [The Healing Power of Friendship!]
[02:22:52] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add &btest
[02:23:34] [Craft Scheduler Thread - 2614 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> ruth you busy?
[02:23:43] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram edit_npc test
[02:23:50] [Craft Scheduler Thread - 2651 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> kinda making a new spawn but whats up
[02:23:53] [Craft Scheduler Thread - 2638 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> needthose medning ?
[02:23:56] [Craft Scheduler Thread - 2629 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Nah
[02:24:03] [Craft Scheduler Thread - 2658 - InteractiveChat/INFO]: [Not Secure] <Moderator HeyDrowzy> u can use mine
[02:24:04] [Craft Scheduler Thread - 2665 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I need u to see why my lava stuck
[02:24:06] [Server thread/INFO]: Purple_Reignn issued server command: /home bed
[02:24:09] [Server thread/INFO]: Zorroah1 issued server command: /tp Svinxtt
[02:24:14] [Craft Scheduler Thread - 2668 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> cause its mud
[02:24:15] [Craft Scheduler Thread - 2659 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ahhhhhhhhhhh
[02:24:15] [Craft Scheduler Thread - 2638 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> why it wont go farther?
[02:24:20] [Craft Scheduler Thread - 2659 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> u tryna make a blaze farm?
[02:24:22] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> yes
[02:24:31] [Craft Scheduler Thread - 2669 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> lava only spreads 3-4 blocks in overworld where in nether its 8
[02:24:36] [Craft Scheduler Thread - 2651 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> god dammit
[02:24:37] [Craft Scheduler Thread - 2660 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ur gonna hve to make a custom farm like i did
[02:24:48] [Craft Scheduler Thread - 2565 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> wana see mine
[02:24:53] [Craft Scheduler Thread - 2670 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> ye
[02:24:54] [Server thread/INFO]: Zorroah1 issued server command: /home insidedome
[02:24:59] [Server thread/INFO]: Svinxtt issued server command: /tpa Zorroah1
[02:25:02] [Server thread/INFO]: Zorroah1 issued server command: /tpaccept
[02:25:12] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[02:25:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:25:30] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:25:30] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:25:30] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:25:30] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:25:43] [Craft Scheduler Thread - 2673 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> just a bit smaller
[02:25:48] [Craft Scheduler Thread - 2672 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> well dam
[02:26:00] [Server thread/INFO]: Automatic saving is now disabled
[02:26:01] [Craft Scheduler Thread - 2651 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> yea this is my afk factory
[02:26:08] [Timer-3/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.19.1 New Version: 7.0
[02:26:10] [Craft Scheduler Thread - 2677 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> you can overlap the spawners?
[02:26:14] [Craft Scheduler Thread - 2659 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> yea u can stack them
[02:26:16] [Craft Scheduler Thread - 2679 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> up to 30
[02:26:23] [Craft Scheduler Thread - 2671 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> see i got 7 blaze in there
[02:26:28] [Craft Scheduler Thread - 2660 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> mobs stack too up to 50
[02:26:32] [Craft Scheduler Thread - 2671 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> this overworld?
[02:26:34] [Craft Scheduler Thread - 2671 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> yea
[02:26:42] [Craft Scheduler Thread - 2681 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> come
[02:27:23] [Craft Scheduler Thread - 2680 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> But ya if u need help building it lmk i can help
[02:27:26] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:27:29] [Server thread/INFO]: Zorroah1 issued server command: /tp BTXDZ
[02:27:37] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:27:43] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:27:51] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:27:54] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:27:56] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:28:03] [Server thread/INFO]: Zorroah1 issued server command: /npc undo
[02:28:19] [Server thread/INFO]: Zorroah1 issued server command: /npc spawn 29
[02:28:22] [Server thread/INFO]: Zorroah1 issued server command: /npc spawn 2
[02:28:28] [Server thread/INFO]: Zorroah1 issued server command: /npc reload
[02:28:28] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:28:30] [Server thread/INFO]: Zorroah1 issued server command: /citizens reload
[02:28:31] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:28:31] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:28:31] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:28:31] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:28:31] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:28:32] [Server thread/INFO]: Zorroah1 issued server command: /citizens reload
[02:28:32] [Server thread/INFO]: [Citizens] Loaded 6 templates.
[02:28:41] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:28:43] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:28:48] [Server thread/INFO]: Svinxtt issued server command: /trapped
[02:28:50] [Server thread/INFO]: Svinxtt lost connection: Disconnected
[02:28:50] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: Svinxtt
[02:28:50] [Server thread/INFO]: [voicechat] Disconnecting client Svinxtt
[02:28:50] [Server thread/INFO]: Svinxtt has left Vital SMP
[02:28:56] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[02:28:57] [Server thread/INFO]: [Essentials] Created a User for Eco1 (fcc8e160-6ac7-207f-81a9-aedddd44bf96) for non Bukkit type: net.citizensnpcs.nms.v1_21_R6.entity.EntityHumanNPC$PlayerNPC
[02:28:57] [Server thread/ERROR]: Failed to teleport entity TextDisplayNPC{uuid=5a2ca53f-c687-4e1b-b768-17e18ab3ed99}
java.lang.NullPointerException: Cannot invoke "org.bukkit.craftbukkit.entity.CraftEntity.getHandle()" because the return value of "net.citizensnpcs.api.npc.NPC.getEntity()" is null
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.util.NMSImpl.teleportAcrossWorld(NMSImpl.java:2743) ~[Citizens-2.0.41-b4043.jar:?]
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.entity.nonliving.TextDisplayController$EntityTextDisplayNPC.teleport(TextDisplayController.java:105) ~[Citizens-2.0.41-b4043.jar:?]
    at org.bukkit.craftbukkit.entity.CraftEntity.teleport0(CraftEntity.java:312) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at org.bukkit.craftbukkit.entity.CraftEntity.lambda$teleportAsync$4(CraftEntity.java:1132) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:176) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:180) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:150) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1517) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1511) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.recordTaskExecutionTimeWhileWaiting(MinecraftServer.java:1229) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1352) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[02:28:59] [Craft Scheduler Thread - 2685 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[02:29:32] [User Authenticator #26/INFO]: UUID of player Svinxtt is e9a6586c-e2b1-4c53-8468-e0668dcbe0e4
[02:29:32] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: Svinxtt
[02:29:33] [Server thread/INFO]: Zorroah1 issued server command: /gamemodew cre
[02:29:34] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to Svinxtt. rspUUID is null: false. done: true. firstUpload: false.
[02:29:34] [Server thread/INFO]: [ResourcePackManager] Sending resource pack to Svinxtt
[02:29:34] [Server thread/INFO]: [ViaVersionStatus] Svinxtt is using version 1.21.11(774).
[02:29:34] [Server thread/INFO]: [VotingPlugin] Login: Svinxtt (e9a6586c-e2b1-4c53-8468-e0668dcbe0e4)
[02:29:34] [Server thread/INFO]: Svinxtt has joined Vital SMP!
[02:29:34] [Server thread/INFO]: Svinxtt[/173.64.0.40:51743] logged in with entity id 755240 at ([world_nether]833.1736290202665, 29.990720254437996, 721.3936015497231)
[02:29:35] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:29:36] [Server thread/INFO]: New deadchest for [Svinxtt] at X:833 Y:32 Z:721
[02:29:36] [Server thread/INFO]: Svinxtt tried to swim in lava
[02:29:42] [Craft Scheduler Thread - 2686 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> shh
[02:29:44] [Craft Scheduler Thread - 2676 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> LMAOO
[02:29:47] [Craft Scheduler Thread - 2648 - InteractiveChat/INFO]: [Not Secure] <Moderator HeyDrowzy> oh nooooo
[02:29:47] [Craft Scheduler Thread - 2648 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> oop
[02:29:47] [Craft Scheduler Thread - 2673 - InteractiveChat/INFO]: [GriefPrevention] Muted repeat message.
[02:29:47] [Craft Scheduler Thread - 2673 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> oop
[02:29:50] [Craft Scheduler Thread - 2685 - InteractiveChat/INFO]: [Not Secure] <Moderator HeyDrowzy> ripp
[02:29:52] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:29:58] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:30:00] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:30:07] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:30:17] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[02:30:17] [Server thread/INFO]: [Essentials] Created a User for CIT-5ada95706d92 (5ada9570-6d92-24bf-a877-a3291434f7f4) for non Bukkit type: net.citizensnpcs.nms.v1_21_R6.entity.EntityHumanNPC$PlayerNPC
[02:30:17] [Server thread/ERROR]: Failed to teleport entity TextDisplayNPC{uuid=3efaa6e3-7cc7-49db-9d36-6f7a454564f2}
java.lang.NullPointerException: Cannot invoke "org.bukkit.craftbukkit.entity.CraftEntity.getHandle()" because the return value of "net.citizensnpcs.api.npc.NPC.getEntity()" is null
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.util.NMSImpl.teleportAcrossWorld(NMSImpl.java:2743) ~[Citizens-2.0.41-b4043.jar:?]
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.entity.nonliving.TextDisplayController$EntityTextDisplayNPC.teleport(TextDisplayController.java:105) ~[Citizens-2.0.41-b4043.jar:?]
    at org.bukkit.craftbukkit.entity.CraftEntity.teleport0(CraftEntity.java:312) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at org.bukkit.craftbukkit.entity.CraftEntity.lambda$teleportAsync$4(CraftEntity.java:1132) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:176) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:180) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:150) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1517) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1511) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.recordTaskExecutionTimeWhileWaiting(MinecraftServer.java:1229) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1352) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[02:30:29] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:30:41] [Server thread/INFO]: Lizardbiz issued server command: /sellgui
[02:30:59] [Server thread/INFO]: Shop >> VIP Lizardbiz sold 693x Stone(Blocks.page1.items.13) for $554.40 with the sell gui.
[02:31:00] [Server thread/INFO]: Zorroah1 issued server command: /hologram ?
[02:31:32] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:31:32] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:31:32] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:31:32] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:31:32] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:31:43] [Server thread/INFO]: Zorroah1 issued server command: /citizens reload
[02:31:45] [Server thread/INFO]: Zorroah1 issued server command: /citizens reload
[02:31:45] [Server thread/INFO]: [Citizens] Loaded 6 templates.
[02:31:47] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:31:53] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:32:07] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:32:19] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:33:27] [Server thread/INFO]: Zorroah1 issued server command: /dh reload
[02:33:27] [Craft Scheduler Thread - 2699 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[02:33:27] [Craft Scheduler Thread - 2699 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value em_adventurers_guild! It's neither a valid name nor UUID.
[02:33:27] [Craft Scheduler Thread - 2699 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value em_adventurers_guild! It's neither a valid name nor UUID.
[02:33:27] [Craft Scheduler Thread - 2699 - DecentHolograms/INFO]: [DecentHolograms] Loaded 6 holograms!
[02:33:30] [Server thread/INFO]: Purple_Reignn issued server command: /home loot
[02:33:33] [Server thread/INFO]: New deadchest for [Svinxtt] at X:820 Y:32 Z:722
[02:33:33] [Server thread/INFO]: Svinxtt tried to swim in lava
[02:33:37] [Craft Scheduler Thread - 2686 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> shh
[02:33:38] [Craft Scheduler Thread - 2696 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> oop
[02:33:41] [Craft Scheduler Thread - 2681 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> bruh
[02:33:41] [Craft Scheduler Thread - 2665 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> heard that heard that
[02:33:47] [Server thread/INFO]: Zorroah1 issued server command: /dh enable nspawn
[02:33:54] [Server thread/INFO]: Zorroah1 issued server command: /dh disable nspawn
[02:34:00] [Server thread/INFO]: Zorroah1 issued server command: /dh enable nspawn
[02:34:01] [Craft Scheduler Thread - 2699 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> do u need a fire potion lol
[02:34:05] [Craft Scheduler Thread - 2699 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> turn that shit off people be to nosey
[02:34:07] [Craft Scheduler Thread - 2697 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> lmao jk
[02:34:07] [Server thread/INFO]: Zorroah1 issued server command: /citizens reload
[02:34:09] [Server thread/INFO]: Zorroah1 issued server command: /citizens reload
[02:34:09] [Server thread/INFO]: [Citizens] Loaded 6 templates.
[02:34:18] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:34:24] [Server thread/INFO]: Zorroah1 issued server command: /npc respawn
[02:34:30] [Server thread/INFO]: Zorroah1 issued server command: /npc despawn
[02:34:33] [Server thread/INFO]: Zorroah1 issued server command: /npc spawn eco1
[02:34:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:34:34] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:34:34] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:34:34] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:34:34] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:34:37] [Server thread/INFO]: Zorroah1 issued server command: /npc despawn
[02:34:38] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:34:42] [Server thread/INFO]: Zorroah1 issued server command: /npc spawn eco1
[02:34:43] [Craft Scheduler Thread - 2579 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> oh shit
[02:34:46] [Craft Scheduler Thread - 2680 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> yall toast
[02:34:49] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[02:35:03] [Server thread/INFO]: Lizardbiz issued server command: /craft
[02:36:41] [Server thread/INFO]: Svinxtt issued server command: /sethome blaze
[02:36:45] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:37:26] [Server thread/INFO]: Svinxtt issued server command: /home blaze
[02:37:35] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:37:35] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:37:35] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:37:35] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:37:35] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:37:45] [Craft Scheduler Thread - 2669 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> home killruthless
[02:37:48] [Craft Scheduler Thread - 2684 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> shit
[02:38:26] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:40:23] [Craft Scheduler Thread - 2669 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> neverrrr
[02:40:28] [Craft Scheduler Thread - 2712 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> my shit claimed howie doinggg
[02:40:35] [Craft Scheduler Thread - 2672 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> anyone selling a pdw?
[02:40:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:40:36] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:40:36] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:40:36] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:40:36] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:40:37] [Craft Scheduler Thread - 2669 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> u missed the chests
[02:40:41] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:40:43] [Craft Scheduler Thread - 2670 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> yes 2.3M
[02:40:43] [Craft Scheduler Thread - 2701 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> never thattt
[02:40:47] [Craft Scheduler Thread - 2715 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> wheres black market?
[02:40:53] [Server thread/INFO]: Zorroah1 issued server command: /npc create test2
[02:41:01] [Craft Scheduler Thread - 2670 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> 6683, 932, -3473
[02:41:06] [Server thread/INFO]: Zorroah1 issued server command: /dh line add test2 test
[02:41:07] [Server thread/INFO]: Automatic saving is now enabled
[02:41:17] [Craft Scheduler Thread - 2684 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> buying glass
[02:41:36] [Craft Scheduler Thread - 2681 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> 1.5 mill per stack
[02:41:37] [Craft Scheduler Thread - 2648 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> ill trade sand
[02:41:43] [Craft Scheduler Thread - 2713 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> what in the finesse
[02:41:48] [Craft Scheduler Thread - 2691 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> u can just cook the sand lmaooo
[02:41:53] [Craft Scheduler Thread - 2713 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Dont got time
[02:41:58] [Craft Scheduler Thread - 2698 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> ally all about the money she tryna make a bag
[02:41:58] [Craft Scheduler Thread - 2698 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> Im in a rush
[02:42:05] [Craft Scheduler Thread - 2713 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> gotta afford the taxes when they come u feel me
[02:42:12] [Craft Scheduler Thread - 2714 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> better sell that to lil b for that price
[02:42:26] [Craft Scheduler Thread - 2714 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I dont even got a mil yet
[02:42:28] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:42:28] [Craft Scheduler Thread - 2681 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> talm bout 1.5
[02:42:30] [Server thread/INFO]: lFrancesl issued server command: /sb
[02:42:31] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:42:33] [Server thread/INFO]: lFrancesl issued server command: /sb
[02:42:39] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:42:40] [Craft Scheduler Thread - 2726 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> better get ur money up
[02:42:52] [Server thread/INFO]: Zorroah1 issued server command: /npc copy
[02:42:57] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[02:42:58] [Server thread/INFO]: Zorroah1 issued server command: /back
[02:43:03] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c -f
[02:43:04] [Server thread/INFO]: [Essentials] Created a User for Eco1 (e077426e-aef5-2358-af1c-66b7ab7d8050) for non Bukkit type: net.citizensnpcs.nms.v1_21_R6.entity.EntityHumanNPC$PlayerNPC
[02:43:04] [Server thread/ERROR]: Failed to teleport entity TextDisplayNPC{uuid=a58ad94d-5be5-4810-876c-29172b3c838f}
java.lang.NullPointerException: Cannot invoke "org.bukkit.craftbukkit.entity.CraftEntity.getHandle()" because the return value of "net.citizensnpcs.api.npc.NPC.getEntity()" is null
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.util.NMSImpl.teleportAcrossWorld(NMSImpl.java:2743) ~[Citizens-2.0.41-b4043.jar:?]
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.entity.nonliving.TextDisplayController$EntityTextDisplayNPC.teleport(TextDisplayController.java:105) ~[Citizens-2.0.41-b4043.jar:?]
    at org.bukkit.craftbukkit.entity.CraftEntity.teleport0(CraftEntity.java:312) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at org.bukkit.craftbukkit.entity.CraftEntity.lambda$teleportAsync$4(CraftEntity.java:1132) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:176) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:180) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:150) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1517) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1511) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.recordTaskExecutionTimeWhileWaiting(MinecraftServer.java:1229) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1352) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[02:43:09] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[02:43:19] [Craft Scheduler Thread - 2726 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> pvp me
[02:43:26] [Craft Scheduler Thread - 2717 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> winner gets 300k
[02:43:30] [Craft Scheduler Thread - 2691 - InteractiveChat/INFO]: [Not Secure] <VIP Lizardbiz> paintball?
[02:43:30] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram set 0
[02:43:34] [Craft Scheduler Thread - 2712 - InteractiveChat/INFO]: [Not Secure] <Admin Purple_Reignn> zorroah turn on pvp im about to throw i=him in lava
[02:43:37] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:43:38] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:43:38] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:43:38] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:43:38] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:43:38] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:43:40] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[02:43:40] [Craft Scheduler Thread - 2727 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> its on
[02:43:48] [Craft Scheduler Thread - 2691 - InteractiveChat/INFO]: [Not Secure] <VIP lFrancesl> wouldnt be the first time in the last 15 mins hes died to lava
[02:43:48] [Craft Scheduler Thread - 2712 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> its been on i turned it on last night
[02:43:57] [Craft Scheduler Thread - 2724 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> cap it turned on 10 messages ago
[02:43:59] [Craft Scheduler Thread - 2726 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[02:44:09] [Server thread/INFO]: Zorroah1 issued server command: /tp HeyDrowzy
[02:44:12] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[02:45:32] [Server thread/INFO]: lFrancesl issued server command: /sellgui
[02:45:35] [Server thread/INFO]: Shop >> VIP lFrancesl sold 126x Nether Wart Block(Z_EverythingElse.page7.items.303) for $252.00 with the sell gui.
[02:46:39] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:46:39] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:46:39] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:46:39] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:46:39] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:46:40] [Server thread/INFO]: [GriefPrevention] HeyDrowzy placed a sign @ nspawn: x-181, z-262;<----
[02:47:03] [Server thread/INFO]: Svinxtt issued server command: /home blaze
[02:47:40] [Server thread/INFO]: Lizardbiz issued server command: /craft
[02:47:54] [Server thread/INFO]: lFrancesl issued server command: /rtp
[02:48:58] [Craft Scheduler Thread - 2734 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> do mobs multiply together?
[02:49:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:49:40] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:49:40] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:49:40] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:49:40] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:50:02] [Server thread/INFO]: Svinxtt issued server command: /sell hand 42
[02:50:02] [Server thread/INFO]: Shop >> Svinxtt sold 42 x Blaze Rod(Mobs.page1.items.3) for $840.00 with the sell all command.
[02:51:02] [Craft Scheduler Thread - 2681 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> yes
[02:51:04] [Craft Scheduler Thread - 2735 - InteractiveChat/INFO]: [Not Secure] <Owner Zorroah1> tthey stack to 50
[02:51:34] [Craft Scheduler Thread - 2734 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> sav lemme hold 400k
[02:51:40] [Craft Scheduler Thread - 2712 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> I have 360
[02:51:46] [Craft Scheduler Thread - 2747 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> thatll work
[02:52:00] [Craft Scheduler Thread - 2740 - InteractiveChat/INFO]: [Not Secure] <VIP Svinxtt> lemme hold dose nutz
[02:52:26] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:52:31] [Craft Scheduler Thread - 2740 - InteractiveChat/INFO]: [Not Secure] <VIP BTXDZ> left them at the crib u feelme
[02:52:41] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:52:41] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:52:41] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:52:41] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:52:41] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:52:43] [Server thread/INFO]: Lizardbiz issued server command: /craft
[02:53:04] [Server thread/INFO]: Svinxtt issued server command: /fasterhopper
[02:53:09] [Server thread/INFO]: Svinxtt issued server command: /fh recipes
[02:53:51] [Server thread/INFO]: Svinxtt issued server command: /sell hand 1
[02:54:07] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:54:30] [Server thread/INFO]: Lizardbiz issued server command: /craft
[02:54:37] [Server thread/INFO]: Purple_Reignn issued server command: /shop
[02:55:03] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:55:43] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:55:43] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:55:43] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:55:43] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:55:43] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:55:50] [Server thread/INFO]: Svinxtt issued server command: /home blaze
[02:56:15] [Server thread/INFO]: Zorroah1 issued server command: /npc create Survival
[02:57:00] [Server thread/INFO]: Zorroah1 issued server command: /npc rename &4Survival
[02:57:06] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:57:07] [Server thread/INFO]: Svinxtt issued server command: /home bed
[02:57:44] [Server thread/INFO]: Zorroah1 issued server command: /npc create &4Survival
[02:57:53] [Server thread/INFO]: Zorroah1 issued server command: /npc name
[02:57:54] [Server thread/INFO]: Zorroah1 issued server command: /npc name
[02:57:59] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram add test
[02:58:02] [Server thread/INFO]: Zorroah1 issued server command: /npc rename test
[02:58:14] [Server thread/INFO]: Zorroah1 issued server command: /npc hologram remove 0
[02:58:20] [Server thread/INFO]: Zorroah1 issued server command: /npc remove
[02:58:44] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:58:44] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[02:58:44] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[02:58:44] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[02:58:44] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[02:58:58] [Server thread/INFO]: Zorroah1 issued server command: /
[02:58:59] [Craft Scheduler Thread - 2742 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[02:59:07] [Server thread/INFO]: Lizardbiz issued server command: /homes glass
[02:59:24] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[02:59:28] [Server thread/INFO]: Lizardbiz issued server command: /homes lushcave
[03:00:33] [Server thread/INFO]: Svinxtt issued server command: /home blaze
[03:01:01] [Server thread/INFO]: Zorroah1 issued server command: /region create NewSpawn
[03:01:06] [Server thread/INFO]: Zorroah1 issued server command: /rg flag
[03:01:15] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'nspawn' have been background saved
[03:01:19] [Server thread/INFO]: Zorroah1 issued server command: /op HeyDrowzy
[03:01:19] [Server thread/INFO]: [Zorroah1: Made HeyDrowzy a server operator]
[03:01:39] [Server thread/INFO]: Zorroah1 issued server command: /op BTXDZ
[03:01:39] [Server thread/INFO]: [Zorroah1: Made BTXDZ a server operator]
[03:01:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[03:01:45] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[03:01:45] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[03:01:45] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[03:01:45] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[03:01:58] [Server thread/INFO]: Svinxtt issued server command: /sell hand 64
[03:01:58] [Server thread/INFO]: Shop >> Svinxtt sold 64 x Blaze Rod(Mobs.page1.items.3) for $1,280.00 with the sell all command.
[03:02:33] [Server thread/INFO]: Zorroah1 issued server command: /region flags
[03:02:37] [Server thread/INFO]: lFrancesl issued server command: /home cottage
[03:03:10] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[03:03:25] [Server thread/INFO]: Command execution stopped due to limit (executed 65536 commands)
[03:03:25] [Server thread/INFO]: Zorroah1 issued server command: /npc select
[03:03:28] [Server thread/INFO]: Zorroah1 issued server command: /back
[03:03:33] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[03:03:33] [Server thread/INFO]: [Essentials] Created a User for Eco1 (fcc8e160-6ac7-207f-81a9-aedddd44bf96) for non Bukkit type: net.citizensnpcs.nms.v1_21_R6.entity.EntityHumanNPC$PlayerNPC
[03:03:33] [Server thread/ERROR]: Failed to teleport entity TextDisplayNPC{uuid=6b5973b7-af08-4cfb-afb2-52113a578913}
java.lang.NullPointerException: Cannot invoke "org.bukkit.craftbukkit.entity.CraftEntity.getHandle()" because the return value of "net.citizensnpcs.api.npc.NPC.getEntity()" is null
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.util.NMSImpl.teleportAcrossWorld(NMSImpl.java:2743) ~[Citizens-2.0.41-b4043.jar:?]
    at Citizens-2.0.41-b4043.jar/net.citizensnpcs.nms.v1_21_R6.entity.nonliving.TextDisplayController$EntityTextDisplayNPC.teleport(TextDisplayController.java:105) ~[Citizens-2.0.41-b4043.jar:?]
    at org.bukkit.craftbukkit.entity.CraftEntity.teleport0(CraftEntity.java:312) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at org.bukkit.craftbukkit.entity.CraftEntity.lambda$teleportAsync$4(CraftEntity.java:1132) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:176) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:180) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:150) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1517) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1511) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.recordTaskExecutionTimeWhileWaiting(MinecraftServer.java:1229) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1352) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-129-3e25649]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[03:03:47] [Server thread/INFO]: Zorroah1 issued server command: /back
[03:03:52] [Server thread/INFO]: Zorroah1 issued server command: /npc move -c
[03:04:20] [Server thread/INFO]: lFrancesl issued server command: /rtp
[03:04:47] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[03:04:47] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[03:04:47] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[03:04:47] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[03:04:47] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[03:05:03] [Server thread/INFO]: Zorroah1 issued server command: /back
[03:05:06] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[03:07:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[03:07:48] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[03:07:48] [Server thread/INFO]: Admins: Admin Purple_Reignn, Owner Zorroah1
[03:07:48] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[03:07:48] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt
[03:08:11] [Server thread/INFO]: Zorroah1 issued server command: /spawn
[03:08:18] [Server thread/INFO]: Zorroah1 issued server command: /back
[03:08:25] [Server thread/INFO]: Zorroah1 issued server command: /gamemode creative
[03:10:49] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[03:10:49] [Server thread/INFO]: There are 7 out of maximum 16 players online.
[03:10:49] [Server thread/INFO]: Admins: [AFK]Admin Purple_Reignn, Owner Zorroah1
[03:10:49] [Server thread/INFO]: Moderator: Moderator HeyDrowzy
[03:10:49] [Server thread/INFO]: vip: VIP BTXDZ, VIP lFrancesl, VIP Lizardbiz, VIP Svinxtt