Paste #111025: Unnamed Server Log Paste

Date: 2023/06/12 00:58:34 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733


[06:28:48] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[06:28:50] [ServerMain/INFO]: Loaded 7 recipes
[06:28:51] [Server thread/INFO]: Starting minecraft server version 1.19.4
[06:28:51] [Server thread/INFO]: Loading properties
[06:28:51] [Server thread/INFO]: This server is running Purpur version git-Purpur-1985 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 6886272 on HEAD)
[06:28:51] [Server thread/INFO]: Server Ping Player Sample Count: 12
[06:28:51] [Server thread/INFO]: Using 4 threads for Netty based IO
[06:28:51] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[06:28:52] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 128 bits (int)
[06:28:52] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 128 bits (float)
[06:28:52] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[06:28:52] [Server thread/INFO]: Default game type: SURVIVAL
[06:28:52] [Server thread/INFO]: Generating keypair
[06:28:52] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:19153
[06:28:52] [Server thread/INFO]: Using epoll channel type
[06:28:52] [Server thread/INFO]: Paper: Using libdeflate (Linux aarch64) compression from Velocity.
[06:28:52] [Server thread/INFO]: Paper: Using OpenSSL (Linux aarch64) cipher from Velocity.
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loading 1 libraries... please wait
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[06:28:54] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[06:28:56] [Server thread/INFO]: [STDOUT] [3lPQRpO9BRmdcG2g2YUWfqq]  Downloaded from https://directleaks.net 
[06:28:56] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[06:28:56] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0
[06:28:56] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[06:28:57] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[06:28:57] [Server thread/INFO]: [ViaBackwards] Loading translations...
[06:28:57] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[06:28:58] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[06:28:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[06:28:59] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[06:28:59] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.3-SNAPSHOT-472;083f8a4
[06:29:00] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@30bf471f]
[06:29:00] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8+33cdb4a
[06:29:00] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0-SNAPSHOT-652
[06:29:02] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[06:29:02] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[06:29:02] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.221-SNAPSHOT
[06:29:02] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[06:29:02] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0
[06:29:02] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3111)
[06:29:02] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1-dev+12-8b2c7d7
[06:29:02] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.1-b834
[06:29:02] [Server thread/INFO]: [Slimefun] Loading server plugin Slimefun vDEV - 1060 (git b783afd4)
[06:29:02] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.5
[06:29:02] [Server thread/INFO]: [MyPet] Loading server plugin MyPet v3.12
[06:29:03] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Error-Reporter ENABLED
[06:29:03] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b59-2278589)
[06:29:04] [Server thread/INFO]: [floodgate] Took 616ms to boot Floodgate
[06:29:04] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.3.0.0
[06:29:04] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.2
[06:29:04] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-29/05/2023
[06:29:04] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.41
[06:29:04] [Server thread/INFO]: [RewardsLite] Loading server plugin RewardsLite v3.1.4
[06:29:04] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[06:29:04] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.9-1
[06:29:04] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.3.1
[06:29:04] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.2-b807
[06:29:04] [Server thread/INFO]: [BountyHunters] Loading server plugin BountyHunters v2.3.13
[06:29:04] [Server thread/INFO]: [BountyHunters] Your server version is handled via reflection.
[06:29:04] [Server thread/INFO]: [BountyHunters] Hooked onto WorldGuard
[06:29:04] [Server thread/INFO]: [BankPlus] Loading server plugin BankPlus v5.7
[06:29:04] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v14.2.11
[06:29:04] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.6.1
[06:29:04] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.1-dev+12-8b2c7d7
[06:29:04] [Server thread/INFO]: [Dualhorse] Loading server plugin Dualhorse v1.4.1
[06:29:04] [Server thread/INFO]: [BetterSleeping4] Loading server plugin BetterSleeping4 v4.0.2
[06:29:04] [Server thread/INFO]: [MyPetDownloader] Loading server plugin MyPetDownloader v1.1
[06:29:04] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v10.1.16
[06:29:04] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.1.1-SNAPSHOT
[06:29:05] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[06:29:05] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[06:29:05] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[06:29:05] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[06:29:05] [Server thread/INFO]: [BetterStructures] Loading server plugin BetterStructures v1.5.1
[06:29:05] [Server thread/INFO]: [EliteMobs] WorldGuard is not enabled! WorldGuard is recommended when using the EliteMobs integration.
[06:29:05] [Server thread/INFO]: [ServersNPC] Loading server plugin ServersNPC v4.1
[06:29:05] [Server thread/INFO]: [Quests] Loading server plugin Quests v4.8.2-b416
[06:29:05] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v2.0.3
[06:29:05] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[06:29:05] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.2.0
[06:29:05] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.1.3.0
[06:29:05] [Server thread/INFO]: [AuctionMaster] Loading server plugin AuctionMaster v4.1
[06:29:05] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v1.11.14.3
[06:29:05] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.20.1
[06:29:05] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1-dev+12-8b2c7d7
[06:29:05] [Server thread/INFO]: [Lottery] Loading server plugin Lottery v1.4.7
[06:29:05] [Server thread/INFO]: [GamePoints] Loading server plugin GamePoints v1.3.7
[06:29:05] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[06:29:05] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[06:29:06] [Server thread/INFO]:         __    
[06:29:06] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[06:29:06] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[06:29:06] [Server thread/INFO]: 
[06:29:06] [Server thread/INFO]: [LuckPerms] Loading configuration...
[06:29:07] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[06:29:08] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[06:29:08] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[06:29:09] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3840ms)
[06:29:09] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[06:29:09] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[06:29:09] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[06:29:09] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[06:29:09] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[06:29:09] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.3-SNAPSHOT-472;083f8a4
[06:29:09] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[06:29:09] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[06:29:09] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[06:29:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[06:29:10] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[06:29:12] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 1 build(s) out of date.
You are running build 472, the latest version is build 473.
Update at https://www.spigotmc.org/resources/13932/
[06:29:12] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0-SNAPSHOT-652
[06:29:13] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-29/05/2023
[06:29:13] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[06:29:13] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R3
[06:29:13] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[06:29:13] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[06:29:13] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[06:29:13] [Server thread/INFO]: [NexEngine] Using 'en' language.
[06:29:13] [Server thread/INFO]: [NexEngine] Plugin loaded in 98 ms!
[06:29:13] [Server thread/INFO]: [nLogin] Enabling nLogin v10.1.16
[06:29:14] [Server thread/INFO]: [nLogin] Successful plugin core start (took 0.97s)
[06:29:14] [Server thread/INFO]:           __             _       
[06:29:14] [Server thread/INFO]:   _ __   / /  ___   __ _(_)_ __  
[06:29:14] [Server thread/INFO]:  | '_ \ / /  / _ \ / _` | | '_ \ 
[06:29:14] [Server thread/INFO]:  | | | / /__| (_) | (_| | | | | |
[06:29:14] [Server thread/INFO]:  |_| |_\____/\___/ \__, |_|_| |_|
[06:29:14] [Server thread/INFO]:                   |___/            
[06:29:14] [Server thread/INFO]:  By: www.nickuc.com - V 10.1.16
[06:29:14] [Server thread/INFO]: 
[06:29:15] [Server thread/INFO]: [nLogin] nLogin was loaded in 1317ms.
[06:29:15] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v2.0.3
[06:29:15] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[06:29:15] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[06:29:15] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[06:29:15] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[06:29:15] [Server thread/INFO]: Preparing level "world"
[06:29:16] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[06:29:17] [Server thread/INFO]: Time elapsed: 415 ms
[06:29:17] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[06:29:17] [Server thread/INFO]: Time elapsed: 242 ms
[06:29:17] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[06:29:17] [Server thread/INFO]: Time elapsed: 208 ms
[06:29:17] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[06:29:17] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[06:29:17] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8+33cdb4a
[06:29:18] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[06:29:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[06:29:18] [Server thread/INFO]: [WorldGuard] Loading region data...
[06:29:19] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[06:29:20] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[06:29:20] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[06:29:20] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[06:29:20] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[06:29:21] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[06:29:22] [Server thread/INFO]: Time elapsed: 907 ms
[06:29:22] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[06:29:22] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[06:29:22] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[06:29:22] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[06:29:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[06:29:22] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[06:29:22] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[06:29:22] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[06:29:22] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.221-SNAPSHOT
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: config.yml to defaults/config.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[06:29:22] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: advanced.yml to defaults/advanced.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[06:29:22] [Server thread/INFO]: [mcMMO] Platform String: 1.19.4-R0.1-SNAPSHOT
[06:29:22] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.4
[06:29:22] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[06:29:22] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[06:29:22] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: persistent_data.yml to defaults/persistent_data.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: upgrades_overhaul.yml to defaults/upgrades_overhaul.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: treasures.yml to defaults/treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: fishing_treasures.yml to defaults/fishing_treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[06:29:23] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[06:29:23] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: coreskills.yml to defaults/coreskills.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: sounds.yml to defaults/sounds.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: skillranks.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: skillranks.yml to defaults/skillranks.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: skillranks.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: skillranks.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: child.yml to defaults/child.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: repair.vanilla.yml to defaults/repair.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: salvage.vanilla.yml to defaults/salvage.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[06:29:23] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[06:29:24] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[06:29:24] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[06:29:24] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[06:29:24] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[06:29:24] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: experience.yml to defaults/experience.yml
[06:29:24] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[06:29:24] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[06:29:24] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[06:29:25] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[06:29:25] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: chat.yml to defaults/chat.yml
[06:29:25] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[06:29:25] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[06:29:25] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[06:29:26] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3111)
[06:29:26] [Server thread/INFO]: [Citizens] Loading external libraries
[06:29:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[06:29:27] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[06:29:27] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1-dev+12-8b2c7d7
[06:29:28] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[06:29:28] [Server thread/INFO]: [Essentials] No kits found to migrate.
[06:29:28] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[06:29:28] [Server thread/INFO]: [Essentials] Using locale en_US
[06:29:28] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[06:29:29] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[06:29:29] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[06:29:29] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[06:29:29] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[06:29:29] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[06:29:29] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[06:29:29] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[06:29:29] [Server thread/INFO]: [Slimefun] Enabling Slimefun vDEV - 1060 (git b783afd4)
[06:29:29] [Server thread/INFO]: [Slimefun] Paper was detected! Performance optimizations have been applied.
[06:29:29] [Server thread/INFO]: [Slimefun] Creating directories...
[06:29:29] [Server thread/INFO]: [Slimefun] Loading language files...
[06:29:30] [Server thread/INFO]: [Slimefun] Loaded language "en"
[06:29:30] [Server thread/INFO]: [Slimefun] Available languages: en, de, fr, it, es, ru, pl, uk, sv, nl, da, cs, ro, bg, pt, pt-BR, hu, lv, sk, vi, id, zh-CN, zh-TW, ja, ko, he, ar, tr, fa, th, tl
[06:29:30] [Server thread/INFO]: [Slimefun] Starting Auto-Updater...
[06:29:30] [Server thread/INFO]: [Slimefun] Loading GEO-Resources...
[06:29:31] [Server thread/INFO]: [Slimefun] Loading Tags...
[06:29:31] [Server thread/INFO]: [Slimefun] Loading items...
[06:29:32] [Server thread/INFO]: [Slimefun] Loading researches...
[06:29:32] [Server thread/INFO]: [Slimefun] Loading Wiki pages...
[06:29:32] [Server thread/INFO]: [Slimefun] Registering listeners...
[06:29:32] [Server thread/INFO]: [Slimefun] Loading Third-Party plugin integrations...
[06:29:32] [Server thread/INFO]: [Slimefun] Hooked into Plugin: PlaceholderAPI v2.11.3
[06:29:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: slimefun [DEV - 1060 (git b783afd4)]
[06:29:32] [Server thread/INFO]: [Slimefun] Hooked into Plugin: WorldEdit v2.6.3-SNAPSHOT-472;083f8a4
[06:29:32] [Server thread/INFO]: [Slimefun] Hooked into Plugin: mcMMO v2.1.221-SNAPSHOT
[06:29:32] [Server thread/INFO]: [Slimefun] Slimefun has finished loading in 3.05s
[06:29:32] [Server thread/INFO]: [GSit] Enabling GSit v1.4.5
[06:29:32] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[06:29:32] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[06:29:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.5]
[06:29:32] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[06:29:32] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Enabling MyPet v3.12
[06:29:32] [Server thread/WARN]: java.io.IOException: Server returned HTTP response code: 403 for URL: https://api.github.com/repos/MyPetORG/MyPet/releases
[06:29:32] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:2000)
[06:29:32] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[06:29:32] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[06:29:32] [Server thread/WARN]:     at MyPet-3.12-SNAPSHOT-B1741.jar//de.Keyle.MyPet.api.Util.readUrlContent(Util.java:169)
[06:29:32] [Server thread/WARN]:     at MyPet-3.12-SNAPSHOT-B1741.jar//de.Keyle.MyPet.api.Util.readUrlContent(Util.java:155)
[06:29:32] [Server thread/WARN]:     at MyPet-3.12-SNAPSHOT-B1741.jar//de.Keyle.MyPet.util.Updater.check(Updater.java:111)
[06:29:32] [Server thread/WARN]:     at MyPet-3.12-SNAPSHOT-B1741.jar//de.Keyle.MyPet.util.Updater.lambda$update$0(Updater.java:85)
[06:29:32] [Server thread/WARN]:     at MyPet-3.12-SNAPSHOT-B1741.jar//de.Keyle.MyPet.util.Updater.update(Updater.java:101)
[06:29:32] [Server thread/WARN]:     at MyPet-3.12-SNAPSHOT-B1741.jar//de.Keyle.MyPet.MyPetPlugin.onEnable(MyPetPlugin.java:184)
[06:29:32] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[06:29:32] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[06:29:32] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[06:29:32] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[06:29:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:577)
[06:29:32] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:488)
[06:29:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:643)
[06:29:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:442)
[06:29:32] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[06:29:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1120)
[06:29:32] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[06:29:32] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[06:29:32] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] No Update available.
[06:29:32] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Custom entity registry found: net.citizensnpcs.nms.v1_19_R3.util.CustomEntityRegistry
[06:29:32] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Compat mode for v1_19_R3 loaded.
[06:29:32] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Exp calculation mode: MyPet
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Loading WorldGroups...
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world' to 'default'
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_nether' to 'default'
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_the_end' to 'default'
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'Spawn' to 'default'
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Connect to SQLite database...
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] SQLite connection successful.
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Citizens (2.0.32-SNAPSHOT (build 3111)) hook activated.
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] mcMMO (2.1.221-SNAPSHOT) hook activated.
[06:29:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mypet [1.0.4]
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] PlaceholderAPI (2.11.3) hook activated.
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] ProtocolLib (5.1.0-SNAPSHOT-652) hook activated.
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Vault (1.7.3-b131) (Economy: EssentialsX Economy) (Permissions: LuckPerms) hook activated.
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] WorldGuard (7.0.8+33cdb4a) hook activated.
[06:29:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Version 3.12-SNAPSHOT-b1741 ENABLED
[06:29:33] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b59-2278589)
[06:29:33] [Server thread/INFO]: [CMILib] Enabling CMILib v1.3.0.0
[06:29:34] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[06:29:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.3.0.0]
[06:29:35] [Server thread/INFO]: PlaceholderAPI hooked.
[06:29:35] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[06:29:35] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.2
[06:29:35] [Server thread/INFO]: [spark] Enabling spark v1.10.41
[06:29:35] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[06:29:35] [Server thread/INFO]: [spark] Starting background profiler...
[06:29:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.41]
[06:29:35] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[06:29:35] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.4
[06:29:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rewardslite [1.0.0]
[06:29:35] [Server thread/INFO]: [RewardsLite] Loaded 1 reward.
[06:29:35] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[06:29:35] [Server thread/INFO]: [Votifier] Loaded token for website: default
[06:29:35] [Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[06:29:36] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[06:29:36] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0]:8192.
[06:29:36] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.9-1
[06:29:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.9-1]
[06:29:36] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.3.1
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: __________________________________________________________
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]:                        TradeSystem [2.3.1]
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: Status:
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Purpur)
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[06:29:36] [Server thread/INFO]:   > Loading sounds
[06:29:36] [Server thread/INFO]:   > Loading blacklist
[06:29:36] [Server thread/INFO]:     ...got 3 blocked item(s)
[06:29:36] [Server thread/INFO]:   > Loading layouts
[06:29:36] [Server thread/INFO]:     ...got 4 layout(s)
[06:29:36] [Server thread/INFO]:   > Database logging is disabled
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: Finished (249ms)
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: __________________________________________________________
[06:29:36] [Server thread/INFO]:  
[06:29:36] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-b807
[06:29:36] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-b807]  Enabled - By Rigby and fernferret
[06:29:36] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.3.13
[06:29:36] [Server thread/INFO]: [BountyHunters] Detected Server Version: v1_19_R3
[06:29:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bountyhunters [2.3.13]
[06:29:36] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[06:29:36] [Server thread/INFO]: [BankPlus] Enabling BankPlus v5.7
[06:29:36] [Server thread/INFO]: 
[06:29:36] [Server thread/INFO]:     BankPlus Enabling plugin...
[06:29:36] [Server thread/INFO]:     Running on version 5.7!
[06:29:36] [Server thread/INFO]:     Detected server version: git-Purpur-1985 (MC: 1.19.4)
[06:29:36] [Server thread/INFO]:     Loaded config files! (31ms)
[06:29:36] [Server thread/INFO]:     Registered events! (6ms)
[06:29:36] [Server thread/INFO]:     Loaded plugin command! (1ms)
[06:29:36] [Server thread/INFO]:     Done! (41 total ms)
[06:29:36] [Server thread/INFO]: 
[06:29:36] [Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[06:29:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bankplus [5.7]
[06:29:36] [Server thread/INFO]: BankPlus [INFO] Hooked into Essentials!
[06:29:36] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.11
[06:29:36] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_19_R3, using MappingSpigotSkinRefresher.
[06:29:37] [Server thread/INFO]: [SkinsRestorer] [ACF] Enabled Asynchronous Tab Completion Support!
[06:29:37] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[06:29:37] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.6.1
[06:29:37] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
[06:29:37] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[06:29:37] [Server thread/INFO]: [IllegalStack/fListener] MC Version < 1.13 detected!
[06:29:37] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[06:29:37] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[06:29:37] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1-dev+12-8b2c7d7
[06:29:37] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[06:29:37] [Server thread/INFO]: [Dualhorse] Enabling Dualhorse v1.4.1
[06:29:37] [Server thread/INFO]: [Dualhorse] DualHorse Plugin - made by GeeVeeDee
[06:29:37] [Server thread/INFO]: [BetterSleeping4] Enabling BetterSleeping4 v4.0.2
[06:29:37] [Server thread/WARN]: [BetterSleeping4] Your GSit version is incompatible with this version of BetterSleeping, GSit support cannot enable
[06:29:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bettersleeping [4.0.2]
[06:29:37] [Server thread/INFO]: [MyPetDownloader] Enabling MyPetDownloader v1.1
[06:29:37] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.1-SNAPSHOT
[06:29:37] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[06:29:37] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[06:29:38] [Server thread/INFO]: [DeluxeMenus] 32 GUI menus loaded!
[06:29:38] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[06:29:38] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[06:29:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[06:29:38] [Server thread/INFO]: [BetterStructures] Enabling BetterStructures v1.5.1
[06:29:38] [Server thread/INFO]: [BetterStructures] Initialized!
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_barren.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_nether.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_barren.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_grassland.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_barren.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_end.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_end.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_desert.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_nether.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_desert.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_grassland.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_grassland.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_desert.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_nether.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_grassland.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_barren.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_nether.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_nether.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_desert.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_barren.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_flagship_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_flagship_grassland.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_deepunderground.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_deepunderground.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_dripstone.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_dripstone.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_lush.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_lush.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_grassland.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_end.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_end.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_desert.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_tundra.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_nether.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_end.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_end.yml will not be used.
[06:29:41] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:41] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_grassland.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_end.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_shallowunderground.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_shallowunderground.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_barren.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_barren.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_nether.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_desert.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_end.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_nether.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_desert.yml will not be used.
[06:29:42] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[06:29:42] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_grassland.yml will not be used.
[06:29:42] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v4.1
[06:29:42] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.world.entity.monster.warden.EntityWarden]
[06:29:42] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.world.entity.monster.warden.EntityWarden] : []
[06:29:42] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] Skipping cache for [net.minecraft.world.entity.monster.warden.EntityWarden]
[06:29:42] [Server thread/INFO]: [Quests] Enabling Quests v4.8.2-b416
[06:29:42] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[06:29:45] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[06:29:45] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.32-SNAPSHOT (build 3111)
[06:29:45] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[06:29:46] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[06:29:46] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[06:29:46] [Server thread/INFO]: [TAB] Loaded NMS hook in 21ms
[06:29:46] [Server thread/INFO]: [TAB] Enabled in 65ms
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.2.0
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into mcMMO, WorldGuard, PlaceholderAPI, Slimefun.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Slimefun.
[06:29:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[06:29:46] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[06:29:46] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.3.0
[06:29:46] [Server thread/INFO]: ------------- Jobs -------------
[06:29:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.3.0]
[06:29:46] [Server thread/INFO]: PlaceholderAPI hooked.
[06:29:46] [Server thread/INFO]: Connected to database (SqLite)
[06:29:46] [Server thread/INFO]: Loaded 8 titles
[06:29:46] [Server thread/INFO]: Loaded 69 protected blocks timers
[06:29:46] [Server thread/INFO]: Loaded 1371 custom item names
[06:29:46] [Server thread/INFO]: Loaded 81 custom entity names
[06:29:46] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[06:29:46] [Server thread/INFO]: Loaded 38 custom enchant names
[06:29:46] [Server thread/INFO]: Loaded 21 custom enchant names
[06:29:46] [Server thread/INFO]: Loaded 16 custom color names
[06:29:46] [Server thread/INFO]: Loaded 4 shop items
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Hunter
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Explorer
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Farmer
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Builder
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Enchanter
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Crafter
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Brewer
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Digger
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Fisherman
[06:29:46] [Server thread/INFO]: Loaded 1 quests for Miner
[06:29:46] [Server thread/INFO]: Loaded 12 jobs
[06:29:46] [Server thread/INFO]: Loaded 0 boosted items
[06:29:47] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[06:29:47] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[06:29:47] [Server thread/INFO]: Preloaded 7 players data in 0.0
[06:29:47] [Server thread/INFO]: MyPet detected.
[06:29:47] [Server thread/INFO]: WorldGuard detected.
[06:29:47] [Server thread/INFO]: mcMMO2.1.221-SNAPSHOT was found - Enabling capabilities.
[06:29:47] [Server thread/INFO]: Registered McMMO 2.x listener
[06:29:47] [Server thread/INFO]: Loading explorer data
[06:29:47] [Server thread/INFO]: Loaded explorer data (85) in 7 ms
[06:29:47] [Server thread/INFO]: Plugin has been enabled successfully.
[06:29:47] [Server thread/INFO]: ------------------------------------
[06:29:47] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1
[06:29:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[06:29:47] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[06:29:47] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[06:29:47] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[06:29:47] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[06:29:47] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.11.14.3
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading the events.log
[06:29:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded events.log
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading the messages.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded messages.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/permission.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/common.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/CosmicCrateExample.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/CrateExample.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/legendary.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/QuickCrateExample.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/vote.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/spawner.yml.
[06:29:47] [Server thread/ERROR]: Cannot load plugins/CrazyCrates/crates/uncommon.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning an anchor
 in 'reader', line 636, column 14:
            - '  &8&l⬩ &7Crate: &a&lUNCOMMON'
                 ^
unexpected character found &(38)
 in 'reader', line 636, column 16:
            - '  &8&l⬩ &7Crate: &a&lUNCOMMON'
                   ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:111) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:309) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at com.badbones69.crazycrates.api.FileManager$CustomFile.<init>(FileManager.java:431) ~[CrazyCrates+Paper+1.11.14.3.jar:?]
    at com.badbones69.crazycrates.api.FileManager.setup(FileManager.java:73) ~[CrazyCrates+Paper+1.11.14.3.jar:?]
    at com.badbones69.crazycrates.CrazyCrates.onEnable(CrazyCrates.java:74) ~[CrazyCrates+Paper+1.11.14.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:577) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:488) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:643) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:442) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:345) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1120) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning an anchor
 in 'reader', line 636, column 14:
            - '  &8&l⬩ &7Crate: &a&lUNCOMMON'
                 ^
unexpected character found &(38)
 in 'reader', line 636, column 16:
            - '  &8&l⬩ &7Crate: &a&lUNCOMMON'
                   ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.scanAnchor(ScannerImpl.java:1530) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchAnchor(ScannerImpl.java:993) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:426) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:263) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockSequenceEntryKey.produce(ParserImpl.java:562) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:270) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:210) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:559) ~[snakeyaml-1.33.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 18 more
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/uncommon.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/QuadCrateExample.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/rare.yml.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[06:29:47] [Server thread/INFO]: [CrazyCrates] HolographicDisplays support has been enabled.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[06:29:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[06:29:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[06:29:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:29:47] [Thread-14/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.badbones69.crazycrates.library.de.tr7zw.changeme.nbtapi' seems to be outdated!
[06:29:47] [Thread-14/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.2' Newest Version: 2.11.3'
[06:29:47] [Thread-14/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[06:29:47] [Server thread/WARN]: [CrazyCrates] There was an error while loading the uncommon.yml file.
[06:29:47] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.file.FileConfiguration.getConfigurationSection(String)" is null
[06:29:47] [Server thread/WARN]:     at CrazyCrates+Paper+1.11.14.3.jar//com.badbones69.crazycrates.api.CrazyManager.loadCrates(CrazyManager.java:142)
[06:29:47] [Server thread/WARN]:     at CrazyCrates+Paper+1.11.14.3.jar//com.badbones69.crazycrates.CrazyCrates.enable(CrazyCrates.java:233)
[06:29:47] [Server thread/WARN]:     at CrazyCrates+Paper+1.11.14.3.jar//com.badbones69.crazycrates.CrazyCrates.onEnable(CrazyCrates.java:152)
[06:29:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[06:29:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[06:29:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[06:29:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[06:29:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:577)
[06:29:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:488)
[06:29:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:643)
[06:29:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:442)
[06:29:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:345)
[06:29:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1120)
[06:29:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[06:29:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[06:29:47] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[06:29:47] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[06:29:47] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[06:29:47] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[06:29:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazycrates [1.11.14.3]
[06:29:47] [Server thread/INFO]: [CrazyCrates] HOLOGRAPHIC_DISPLAYS FOUND
[06:29:47] [Server thread/INFO]: [CrazyCrates] DECENT_HOLOGRAMS NOT FOUND
[06:29:47] [Server thread/INFO]: [CrazyCrates] CMI NOT FOUND
[06:29:47] [Server thread/INFO]: [CrazyCrates] PLACEHOLDERAPI FOUND
[06:29:47] [Server thread/INFO]: [CrazyCrates] ITEMS_ADDER NOT FOUND
[06:29:47] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.20.1
[06:29:47] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[06:29:47] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[06:29:47] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[06:29:48] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[06:29:48] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[06:29:48] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[06:29:48] [Server thread/INFO]: [Minepacks] Loading item translations ...
[06:29:48] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[06:29:48] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[06:29:48] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1-dev+12-8b2c7d7
[06:29:48] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[06:29:48] [Server thread/INFO]: [Lottery] Enabling Lottery v1.4.7
[06:29:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lottery [1.0.0]
[06:29:48] [Server thread/INFO]: [GamePoints] Enabling GamePoints v1.3.7
[06:29:48] [Server thread/INFO]: [GamePoints] Powered by: NexEngine
[06:29:48] [Server thread/INFO]: [GamePoints] Using 'en' language.
[06:29:48] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[06:29:48] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@1a60cacf
[06:29:48] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[06:29:48] [Server thread/WARN]: [GamePoints] Data synchronization is useless for local databases (SQLite). It will be disabled.
[06:29:48] [Server thread/INFO]: [GamePoints] Stores Loaded: 3
[06:29:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gamepoints [1.3.7]
[06:29:48] [Server thread/INFO]: [GamePoints] Plugin loaded in 115 ms!
[06:29:49] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[06:29:49] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[06:29:49] [Server thread/INFO]: [Geyser-Spigot] 
[06:29:49] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.1.1-SNAPSHOT (git-master-f55d843)
[06:29:49] [Server thread/INFO]: [Geyser-Spigot] 
[06:29:49] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[06:29:54] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] Started Geyser on 0.0.0.0:19132
[06:29:54] [Server thread/INFO]: [Geyser-Spigot] Done (4.514s)! Run /geyser help for help!
[06:29:54] [Server thread/INFO]: Running delayed init tasks
[06:29:54] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[06:29:54] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[06:29:54] [Craft Scheduler Thread - 10 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[06:29:54] [Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Fetching version information...
[06:29:54] [Craft Scheduler Thread - 20 - GamePoints/INFO]: [GamePoints] Updating balance top...
[06:29:54] [Craft Scheduler Thread - 27 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 0 online users | 0 offline users.
[06:29:54] [Craft Scheduler Thread - 13 - Vault/INFO]: [Vault] Checking for Updates ... 
[06:29:54] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[06:29:54] [Craft Scheduler Thread - 17 - SkinsRestorer/WARN]: [SkinsRestorer] Failed to get release info from api.github.com. 
 If this message is repeated a lot, please see http://skinsrestorer.net/firewall
[06:29:54] [Craft Scheduler Thread - 18 - BountyHunters/INFO]: [BountyHunters] A new build is available: 2.5.1 (you are running 2.3.13)
[06:29:54] [Craft Scheduler Thread - 18 - BountyHunters/INFO]: [BountyHunters] Download it here: https://www.spigotmc.org/resources/72142/
[06:29:54] [Craft Scheduler Thread - 20 - GamePoints/INFO]: [GamePoints] Balance top updated in 45 ms!
[06:29:54] [Craft Scheduler Thread - 24 - BetterStructures/INFO]: [BetterStructures] Latest public release is 1.5.1
[06:29:54] [Craft Scheduler Thread - 24 - BetterStructures/INFO]: [BetterStructures] Your version is 1.5.1
[06:29:54] [Craft Scheduler Thread - 24 - BetterStructures/INFO]: [BetterStructures] You are running the latest version!
[06:29:54] [Craft Scheduler Thread - 19 - CrazyCrates/INFO]: [CrazyCrates] Plugin is up to date! - v1.11.14.3
[06:29:54] [Craft Scheduler Thread - 13 - Vault/INFO]: [Vault] No new version available
[06:29:54] [Server thread/INFO]: [Slimefun] Now running MetricsModule build #28
[06:29:54] [Server thread/INFO]: [Slimefun] with a total of 19/19 chart(s)!
[06:29:54] [Server thread/INFO]: [Slimefun] Metrics build #28 started.
[06:29:54] [Server thread/INFO]: [Slimefun] Collecting Snapshots of all Recipes...
[06:29:54] [Server thread/INFO]: [Slimefun] Found 1,089 Recipes!
[06:29:54] [Server thread/INFO]: 
[06:29:54] [Server thread/INFO]: ######################### - Slimefun vDEV - 1060 (git b783afd4) - #########################
[06:29:54] [Server thread/INFO]: 
[06:29:54] [Server thread/INFO]: Successfully loaded 549 Items and 257 Researches
[06:29:54] [Server thread/INFO]: ( 549 Items from Slimefun, 0 Items from 2 Addons )
[06:29:54] [Server thread/INFO]: 
[06:29:54] [Server thread/INFO]: Slimefun is an Open-Source project that is kept alive by a large community.
[06:29:54] [Server thread/INFO]: Consider helping us maintain this project by contributing on GitHub!
[06:29:54] [Server thread/INFO]: 
[06:29:54] [Server thread/INFO]:  - Source Code:  https://github.com/Slimefun/Slimefun4
[06:29:54] [Server thread/INFO]:  - Wiki:         https://github.com/Slimefun/Slimefun4/wiki
[06:29:54] [Server thread/INFO]:  - Addons:       https://github.com/Slimefun/Slimefun4/wiki/Addons
[06:29:54] [Server thread/INFO]:  - Bug Reports:  https://github.com/Slimefun/Slimefun4/issues
[06:29:54] [Server thread/INFO]:  - Discord:      https://discord.gg/slimefun
[06:29:54] [Server thread/INFO]: 
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks for World "world"
[06:29:54] [Server thread/INFO]: [Slimefun] This may take a long time...
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[06:29:54] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "world"
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks for World "world_nether"
[06:29:54] [Server thread/INFO]: [Slimefun] This may take a long time...
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[06:29:54] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "world_nether"
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks for World "world_the_end"
[06:29:54] [Server thread/INFO]: [Slimefun] This may take a long time...
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[06:29:54] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "world_the_end"
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks for World "Spawn"
[06:29:54] [Server thread/INFO]: [Slimefun] This may take a long time...
[06:29:54] [Server thread/INFO]: [Slimefun] Loading Blocks... 100% (FINISHED - 0ms)
[06:29:54] [Server thread/INFO]: [Slimefun] Loaded a total of 0 Blocks for World "Spawn"
[06:29:54] [Server thread/INFO]: [dough: protection] Loading Protection Modules...
[06:29:54] [Server thread/INFO]: [dough: protection] This may happen more than once.
[06:29:54] [Server thread/INFO]: [dough: protection] Loaded Protection Module "WorldGuard v7.0.8+33cdb4a"
[06:29:54] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (EssentialsX Economy)
[06:29:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoplus [1.0.0]
[06:29:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [1.0]
[06:29:54] [Craft Scheduler Thread - 11 - Slimefun/INFO]: [Slimefun] Slimefun is already up to date!
[06:29:55] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion mcmmo. Identifier is already in use.
[06:29:55] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mcmmo due to an unknown issue.
[06:29:55] [Server thread/INFO]: 1 placeholder hook(s) registered!
[06:29:55] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[06:29:55] [Server thread/INFO]: Done (63.405s)! For help, type "help"
[06:29:55] [Server thread/INFO]: [Quests] Loaded 4 Quest(s), 7 Action(s), 1 Condition(s) and 811 Phrase(s)
[06:29:56] [Server thread/INFO]: [Lottery] Plugin successfully linked with vault!
[06:30:10] [User Authenticator #0/INFO]: UUID of player sulcrus is c0ce9260-640d-3ffe-bc55-94eb2add4391
[06:30:10] [User Authenticator #1/INFO]: UUID of player DEVIL_IRON_LAVA is 4af1f0d0-aaec-3e44-8afc-d62f1171173c
[06:30:10] [Netty Epoll Server IO #3/WARN]: [HolographicDisplays] Unexpected error while modifying the channel pipeline.
java.util.NoSuchElementException: packet_handler
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:248) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addBefore(DefaultChannelPipeline.java:237) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at me.filoghost.holographicdisplays.nms.v1_19_R3.VersionNMSManager.lambda$injectPacketListener$0(VersionNMSManager.java:81) ~[HolographicDisplays.jar:?]
    at me.filoghost.holographicdisplays.nms.v1_19_R3.VersionNMSManager.lambda$modifyPipeline$2(VersionNMSManager.java:115) ~[HolographicDisplays.jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:403) ~[netty-transport-classes-epoll-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.87.Final.jar:4.1.87.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:30:10] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ServersNPC v4.1
java.util.NoSuchElementException: decoder
    at io.netty.channel.DefaultChannelPipeline.getContextOrDie(DefaultChannelPipeline.java:1073) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addAfter(DefaultChannelPipeline.java:302) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.netty.channel.DefaultChannelPipeline.addAfter(DefaultChannelPipeline.java:290) ~[netty-transport-4.1.87.Final.jar:4.1.87.Final]
    at io.github.znetworkw.znpcservers.user.ZUser.<init>(ZUser.java:54) ~[znpcs-4.1.jar:?]
    at java.util.HashMap.computeIfAbsent(HashMap.java:1220) ~[?:?]
    at io.github.znetworkw.znpcservers.user.ZUser.find(ZUser.java:89) ~[znpcs-4.1.jar:?]
    at io.github.znetworkw.znpcservers.user.ZUser.find(ZUser.java:93) ~[znpcs-4.1.jar:?]
    at io.github.znetworkw.znpcservers.listeners.PlayerListener.onJoin(PlayerListener.java:21) ~[znpcs-4.1.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor776.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:git-Purpur-1985]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.placeNewPlayer(ServerLoginPacketListenerImpl.java:202) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.handleAcceptedLogin(ServerLoginPacketListenerImpl.java:183) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.tick(ServerLoginPacketListenerImpl.java:85) ~[?:?]
    at net.minecraft.network.Connection.tick(Connection.java:604) ~[?:?]
    at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:234) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1605) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:488) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1424) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1195) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:30:10] [Server thread/INFO]: sulcrus lost connection: Disconnected
[06:30:10] [Server thread/ERROR]: Could not pass event PlayerQuitEvent to ServersNPC v4.1
java.lang.IllegalStateException: can't find user c0ce9260-640d-3ffe-bc55-94eb2add4391
    at io.github.znetworkw.znpcservers.user.ZUser.unregister(ZUser.java:99) ~[znpcs-4.1.jar:?]
    at io.github.znetworkw.znpcservers.listeners.PlayerListener.onQuit(PlayerListener.java:26) ~[znpcs-4.1.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor777.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:git-Purpur-1985]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:617) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.remove(PlayerList.java:595) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.players.PlayerList.remove(PlayerList.java:578) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.onDisconnect(ServerGamePacketListenerImpl.java:2213) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.onDisconnect(ServerGamePacketListenerImpl.java:2192) ~[?:?]
    at net.minecraft.network.Connection.handleDisconnection(Connection.java:807) ~[?:?]
    at net.minecraft.network.Connection.tick(Connection.java:613) ~[?:?]
    at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:234) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1605) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:488) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1424) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1195) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:30:11] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@10931fcd[id=4af1f0d0-aaec-3e44-8afc-d62f1171173c,name=DEVIL_IRON_LAVA,properties={},legacy=false] (/182.188.172.228:50132): You are not whitelisted on this server!
[06:30:11] [Server thread/INFO]: com.mojang.authlib.GameProfile@10931fcd[id=4af1f0d0-aaec-3e44-8afc-d62f1171173c,name=DEVIL_IRON_LAVA,properties={},legacy=false] (/182.188.172.228:50132) lost connection: You are not whitelisted on this server!
[06:30:13] [Craft Scheduler Thread - 12 - mcMMO/INFO]: [mcMMO] Aborting profile loading recovery for sulcrus - player logged out
[06:30:25] [Craft Scheduler Thread - 19 - Slimefun/ERROR]: [dough: skins] Exception while requesting skin: https://api.mojang.com/users/profiles/minecraft/amarcais53
[06:30:25] [Craft Scheduler Thread - 14 - Slimefun/WARN]: [Slimefun] Attempted to refresh skin cache, got this response: ExecutionException: java.io.FileNotFoundException: https://api.mojang.com/users/profiles/minecraft/amarcais53
[06:30:25] [Craft Scheduler Thread - 14 - Slimefun/WARN]: [Slimefun] This usually means mojang.com is temporarily down or started to rate-limit this connection, nothing to worry about!
[06:30:51] [User Authenticator #1/INFO]: UUID of player PSYCHED_SOUL is b8c1ac0a-2472-3d2e-b1b6-d7d6815cd9b8
[06:30:51] [Server thread/INFO]: PSYCHED_SOUL[/103.163.238.208:32624] logged in with entity id 180 at ([world]-22.5180970412687, 76.0066261428081, -0.19868149508877994)
[06:30:54] [Craft Scheduler Thread - 11 - mcMMO/INFO]: [mcMMO] Creating new data for player: PSYCHED_SOUL
[06:30:58] [User Authenticator #1/INFO]: UUID of player sulcrus is c0ce9260-640d-3ffe-bc55-94eb2add4391
[06:30:58] [Server thread/INFO]: sulcrus[/103.190.40.56:11673] logged in with entity id 293 at ([Spawn]11.330440444894474, 118.15813927255128, -33.14802056940417)
[06:31:01] [Craft Scheduler Thread - 11 - mcMMO/INFO]: [mcMMO] Creating new data for player: sulcrus
[06:31:06] [Craft Scheduler Thread - 32 - nLogin/INFO]: [nLogin] The user sulcrus has successfully logged in.
[06:31:17] [Craft Scheduler Thread - 9 - nLogin/INFO]: [nLogin] The user PSYCHED_SOUL has successfully logged in.
[06:31:31] [Server thread/INFO]: PSYCHED_SOUL issued server command: /plugins
[06:31:45] [Server thread/INFO]: PSYCHED_SOUL issued server command: /betterstructures silent
[06:32:11] [Server thread/WARN]: Busted the 50 block cap for the tree scanner!
[06:32:13] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:13] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:32:13] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:32:13] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:13] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:13] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:32:13] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:32:13] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:13] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightStarlightRelighterFactory as relighter factory.
[06:32:13] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:13] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:32:13] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:32:13] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:13] [Server thread/WARN]: sulcrus moved too quickly! -3.1002020599415907,-0.33319999363422426,-12.311061158421113
[06:32:33] [Server thread/INFO]: PSYCHED_SOUL issued server command: /betterstructures place betterstructures_exploration_temple_grassland.schem SURFACE
[06:32:33] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:33] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:32:33] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:32:33] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:33] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:33] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:32:33] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:32:33] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:33] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:32:33] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:32:33] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:32:33] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:33:03] [Server thread/INFO]: sulcrus issued server command: /mv list
[06:33:12] [Server thread/INFO]: sulcrus issued server command: /time set noon
[06:33:34] [User Authenticator #2/INFO]: UUID of player DEVIL_IRON_LAVA is 4af1f0d0-aaec-3e44-8afc-d62f1171173c
[06:33:34] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6db90404[id=4af1f0d0-aaec-3e44-8afc-d62f1171173c,name=DEVIL_IRON_LAVA,properties={},legacy=false] (/182.188.172.228:50166): You are not whitelisted on this server!
[06:33:34] [Server thread/INFO]: com.mojang.authlib.GameProfile@6db90404[id=4af1f0d0-aaec-3e44-8afc-d62f1171173c,name=DEVIL_IRON_LAVA,properties={},legacy=false] (/182.188.172.228:50166) lost connection: You are not whitelisted on this server!
[06:33:41] [User Authenticator #2/INFO]: UUID of player DEVIL_IRON_LAVA is 4af1f0d0-aaec-3e44-8afc-d62f1171173c
[06:33:41] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@525a5812[id=4af1f0d0-aaec-3e44-8afc-d62f1171173c,name=DEVIL_IRON_LAVA,properties={},legacy=false] (/182.188.172.228:50167): You are not whitelisted on this server!
[06:33:41] [Server thread/INFO]: com.mojang.authlib.GameProfile@525a5812[id=4af1f0d0-aaec-3e44-8afc-d62f1171173c,name=DEVIL_IRON_LAVA,properties={},legacy=false] (/182.188.172.228:50167) lost connection: You are not whitelisted on this server!
[06:34:19] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:19] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:19] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:19] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:19] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:19] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:19] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:19] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:19] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:19] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:19] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:19] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:21] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:21] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:21] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:21] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:21] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:21] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:21] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:21] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:21] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:21] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:21] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:21] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:24] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:24] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:24] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:24] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:24] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:24] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:24] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:24] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:24] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:24] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:24] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:34:24] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:34:24] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:34:59] [User Authenticator #3/INFO]: UUID of player noobhdfewojb is 219e5c9a-4db8-30e2-8eb6-27e0f9d49323
[06:34:59] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4fec95c4[id=219e5c9a-4db8-30e2-8eb6-27e0f9d49323,name=noobhdfewojb,properties={},legacy=false] (/202.51.80.150:24957): You are not whitelisted on this server!
[06:34:59] [Server thread/INFO]: com.mojang.authlib.GameProfile@4fec95c4[id=219e5c9a-4db8-30e2-8eb6-27e0f9d49323,name=noobhdfewojb,properties={},legacy=false] (/202.51.80.150:24957) lost connection: You are not whitelisted on this server!
[06:35:06] [User Authenticator #3/INFO]: UUID of player noobhdfewojb is 219e5c9a-4db8-30e2-8eb6-27e0f9d49323
[06:35:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4a7867ff[id=219e5c9a-4db8-30e2-8eb6-27e0f9d49323,name=noobhdfewojb,properties={},legacy=false] (/202.51.80.150:39148): You are not whitelisted on this server!
[06:35:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@4a7867ff[id=219e5c9a-4db8-30e2-8eb6-27e0f9d49323,name=noobhdfewojb,properties={},legacy=false] (/202.51.80.150:39148) lost connection: You are not whitelisted on this server!
[06:35:23] [User Authenticator #3/INFO]: [GamePoints] Created new user data for: '957334dc-4a59-3c22-8f1d-eabb6697e4cc'
[06:35:23] [User Authenticator #3/INFO]: UUID of player Moonlight_543 is 957334dc-4a59-3c22-8f1d-eabb6697e4cc
[06:35:23] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@41d892c3[id=957334dc-4a59-3c22-8f1d-eabb6697e4cc,name=Moonlight_543,properties={},legacy=false] (/27.34.108.192:53957): You are not whitelisted on this server!
[06:35:23] [Server thread/INFO]: com.mojang.authlib.GameProfile@41d892c3[id=957334dc-4a59-3c22-8f1d-eabb6697e4cc,name=Moonlight_543,properties={},legacy=false] (/27.34.108.192:53957) lost connection: You are not whitelisted on this server!
[06:36:05] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp sul
[06:36:12] [User Authenticator #3/INFO]: [GamePoints] Created new user data for: 'cb7453c9-7572-393d-a809-512f8fa23f3f'
[06:36:12] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:36:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@141d2ab4[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58640): You are not whitelisted on this server!
[06:36:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@141d2ab4[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58640) lost connection: You are not whitelisted on this server!
[06:36:14] [Async Chat Thread - #1/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> noice
[06:36:18] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:36:18] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6288fe39[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58655): You are not whitelisted on this server!
[06:36:18] [Server thread/INFO]: com.mojang.authlib.GameProfile@6288fe39[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58655) lost connection: You are not whitelisted on this server!
[06:36:20] [Async Chat Thread - #1/INFO]: [Not Secure] <Developer ➤ sulcrus> npc
[06:36:28] [Async Chat Thread - #1/INFO]: [Not Secure] <Developer ➤ sulcrus> kidar banau confused hu
[06:36:34] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:36:34] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5106eb19[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58695): You are not whitelisted on this server!
[06:36:34] [Server thread/INFO]: com.mojang.authlib.GameProfile@5106eb19[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58695) lost connection: You are not whitelisted on this server!
[06:36:39] [Server thread/INFO]: com.mojang.authlib.GameProfile@73d2eaa[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58708) lost connection: Disconnected
[06:36:39] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:36:45] [Server thread/INFO]: PSYCHED_SOUL issued server command: /mvlist
[06:36:50] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:36:50] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@57e3bd88[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58712): You are not whitelisted on this server!
[06:36:50] [Server thread/INFO]: com.mojang.authlib.GameProfile@57e3bd88[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58712) lost connection: You are not whitelisted on this server!
[06:37:09] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:37:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5b2e7828[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58739): You are not whitelisted on this server!
[06:37:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@5b2e7828[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58739) lost connection: You are not whitelisted on this server!
[06:37:14] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:37:14] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@67662dfa[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58741): You are not whitelisted on this server!
[06:37:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@67662dfa[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58741) lost connection: You are not whitelisted on this server!
[06:37:35] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:37:35] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6798f383[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58763): You are not whitelisted on this server!
[06:37:35] [Server thread/INFO]: com.mojang.authlib.GameProfile@6798f383[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.228.19:58763) lost connection: You are not whitelisted on this server!
[06:37:43] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp 0 100 0
[06:37:52] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp 0 200 0
[06:38:02] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp 0 120 0
[06:38:07] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp 0 150 0
[06:38:16] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:38:16] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@85db85e[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:15838): You are not whitelisted on this server!
[06:38:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@85db85e[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:15838) lost connection: You are not whitelisted on this server!
[06:38:43] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:38:43] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@b06e657[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:37538): You are not whitelisted on this server!
[06:38:43] [Server thread/INFO]: com.mojang.authlib.GameProfile@b06e657[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:37538) lost connection: You are not whitelisted on this server!
[06:38:54] [Server thread/INFO]: PSYCHED_SOUL issued server command: /betterstructures place betterstructures_skyisland_grassy.schem SKY
[06:38:54] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:38:54] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:38:54] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:38:54] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:38:54] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:38:54] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:38:54] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:38:54] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:38:54] [Server thread/WARN]: Potentially unsafe extent blocked: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:38:54] [Server thread/WARN]:  - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API
[06:38:54] [Server thread/WARN]:  - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE recognize the extent:
[06:38:54] [Server thread/WARN]: io.github.thebusybiscuit.slimefun4.integrations.WorldEditIntegration$1
[06:39:09] [User Authenticator #3/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[06:39:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@313585d3[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:18815): You are not whitelisted on this server!
[06:39:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@313585d3[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:18815) lost connection: You are not whitelisted on this server!
[06:39:09] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp sul
[06:39:36] [Server thread/INFO]: PSYCHED_SOUL issued server command: /skin set Hogalalla
[06:39:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[06:39:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[06:40:49] [Server thread/INFO]: sulcrus issued server command: /give sulcrus light
[06:41:03] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gamerule doDaylightCycle false
[06:41:03] [Server thread/INFO]: [PSYCHED_SOUL: Gamerule doDaylightCycle is now set to: false]
[06:41:11] [Server thread/INFO]: sulcrus issued server command: /set 1
[06:41:14] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gamerule doWeatherCycle false
[06:41:14] [Server thread/INFO]: [PSYCHED_SOUL: Gamerule doWeatherCycle is now set to: false]
[06:41:17] [Server thread/INFO]: sulcrus issued server command: /setblock ~ ~ ~ glass
[06:41:17] [Server thread/INFO]: [sulcrus: Changed the block at -39, 117, 17]
[06:41:29] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gamerule doMobSpawning false
[06:41:29] [Server thread/INFO]: [PSYCHED_SOUL: Gamerule doMobSpawning is now set to: false]
[06:41:43] [Server thread/INFO]: sulcrus issued server command: /npc create &c&lWild Teleport
[06:41:43] [Server thread/INFO]: [Essentials] Created a User for CIT-e741d245d4c4 (e741d245-d4c4-21fa-be77-2be5a5e6a764) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[06:41:50] [Server thread/INFO]: sulcrus issued server command: /npc look
[06:41:57] [Server thread/INFO]: sulcrus issued server command: /npc lookclose
[06:41:59] [Server thread/INFO]: sulcrus issued server command: /npc lookclose
[06:42:06] [Server thread/INFO]: sulcrus issued server command: /npc text height
[06:42:13] [Server thread/INFO]: sulcrus issued server command: /npc text realistic looking
[06:42:16] [Server thread/INFO]: sulcrus issued server command: /npc text speech bubbles
[06:42:28] [Server thread/INFO]: PSYCHED_SOUL issued server command: /npc create --type PLAYER --nameplate &ctry
[06:42:33] [Server thread/INFO]: sulcrus issued server command: /npc control -y
[06:42:57] [Server thread/INFO]: PSYCHED_SOUL issued server command: /bank
[06:43:23] [Server thread/INFO]: PSYCHED_SOUL issued server command: /bank add PSYCHED_SOUL 100000
[06:43:30] [Server thread/INFO]: PSYCHED_SOUL issued server command: /bank
[06:43:55] [Server thread/INFO]: sulcrus lost connection: Disconnected
[06:43:58] [User Authenticator #4/INFO]: UUID of player sulcrus is c0ce9260-640d-3ffe-bc55-94eb2add4391
[06:43:58] [Server thread/INFO]: sulcrus[/103.190.40.56:11794] logged in with entity id 2391 at ([Spawn]-39.452991234353775, 116.0, 12.172894306752342)
[06:44:01] [Craft Scheduler Thread - 23 - mcMMO/INFO]: [mcMMO] Creating new data for player: sulcrus
[06:44:06] [Craft Scheduler Thread - 48 - nLogin/INFO]: [nLogin] The user sulcrus has successfully logged in.
[06:44:09] [Async Chat Thread - #2/INFO]: [Not Secure] <Developer ➤ sulcrus> bruh
[06:44:28] [Async Chat Thread - #2/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> znpcs best xD
[06:44:43] [Async Chat Thread - #3/INFO]: [Not Secure] <Developer ➤ sulcrus> haan citizens op
[06:44:55] [Server thread/INFO]: sulcrus issued server command: /znpcs help
[06:44:57] [Server thread/INFO]: sulcrus issued server command: /znpcs
[06:45:12] [Server thread/INFO]: sulcrus issued server command: /znpcs create 1 player &c&Wild Teleport
[06:45:12] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.server.level.EntityPlayer] : []
[06:45:12] [Server thread/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] Skipping cache for [net.minecraft.server.level.EntityPlayer]
[06:45:12] [Craft Scheduler Thread - 53 - ServersNPC/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] No cache found for: [net.minecraft.network.protocol.game.PacketPlayOutEntityMetadata] : []
[06:45:12] [Craft Scheduler Thread - 53 - ServersNPC/WARN]: [io.github.znetworkw.znpcservers.cache.TypeCache$BaseCache] Skipping cache for [net.minecraft.network.protocol.game.PacketPlayOutEntityMetadata]
[06:45:13] [Craft Scheduler Thread - 47 - SkinsRestorer/WARN]: [SkinsRestorer] Failed to get release info from api.github.com. 
 If this message is repeated a lot, please see http://skinsrestorer.net/firewall
[06:45:38] [Async Chat Thread - #2/INFO]: [Not Secure] <Developer ➤ sulcrus> znpcs one and citizens
[06:45:40] [Async Chat Thread - #3/INFO]: [Not Secure] <Developer ➤ sulcrus> onw
[06:46:06] [Server thread/INFO]: sulcrus issued server command: /znpcs lines
[06:46:19] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set add
[06:46:26] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set sulcrus
[06:46:35] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set &c&lWild Teleport
[06:46:42] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set &c&lWild-Teleport
[06:46:54] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set &c&lWild-Teleport &7&lRight-clicj
[06:46:57] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set &c&lWild-Teleport &7&lRight-click
[06:47:00] [Async Chat Thread - #4/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> lol
[06:47:02] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 set &c&lWild-Teleport &7&oRight-click
[06:47:07] [Async Chat Thread - #5/INFO]: [Not Secure] <Developer ➤ sulcrus> znpcs
[06:47:10] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs list
[06:47:12] [Async Chat Thread - #4/INFO]: [Not Secure] <Developer ➤ sulcrus> is better I guess
[06:47:18] [Async Chat Thread - #5/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> lmao
[06:47:32] [Server thread/INFO]: sulcrus issued server command: /znpcs line set 2 sulcrus
[06:47:33] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs
[06:47:38] [Server thread/INFO]: sulcrus issued server command: /znpcs help
[06:47:41] [Server thread/INFO]: sulcrus issued server command: /znpcs
[06:47:43] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs skin 1 King
[06:47:56] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs skin sulcrus
[06:48:03] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs skin 1 sulcrus'
[06:48:06] [Server thread/INFO]: sulcrus issued server command: /znpcs lines 1 add &7&o COntact us for help
[06:48:17] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs skin YesSmartyPi
[06:48:19] [Server thread/INFO]: sulcrus issued server command: /znpcs remove 1
[06:48:22] [Server thread/INFO]: sulcrus issued server command: /znpcs delete 1
[06:48:27] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs skin 1 YesSmartyPie
[06:48:30] [Server thread/INFO]: sulcrus issued server command: /npc lines
[06:48:32] [Async Chat Thread - #6/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> bruh
[06:49:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[06:49:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[06:49:54] [Craft Scheduler Thread - 53 - GamePoints/INFO]: [GamePoints] Updating balance top...
[06:49:54] [Craft Scheduler Thread - 48 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 2 online users | 4 offline users.
[06:49:54] [Craft Scheduler Thread - 53 - GamePoints/INFO]: [GamePoints] Balance top updated in 1 ms!
[06:50:43] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs create &l&bCoin&l&eStore
[06:50:52] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs create 1 &l&bCoin&l&eStore
[06:50:59] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs create 1 player &l&bCoin&l&eStore
[06:51:24] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs create 1 player &l&bCoinStore
[06:51:26] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &c&lRight click to teleport
[06:51:38] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &7&oRight click to teleport
[06:51:39] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs toggle 1 look
[06:51:43] [Async Chat Thread - #8/INFO]: [Not Secure] <Developer ➤ sulcrus> bruh
[06:51:48] [Async Chat Thread - #9/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> wait 2 min
[06:52:00] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs skin 1 YesSmartyPie
[06:52:26] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove
[06:52:29] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 1
[06:52:30] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs action 1 add cmd gamepoints store
[06:52:30] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 2
[06:52:32] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 1
[06:52:35] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 0
[06:52:44] [Server thread/INFO]: PSYCHED_SOUL issued server command: /papi ecloud download server
[06:52:44] [placeholderapi-io-#1/INFO]: [PlaceholderAPI] Fetching available expansion information...
[06:52:50] [Server thread/INFO]: PSYCHED_SOUL issued server command: /papi ecloud download player
[06:52:51] [placeholderapi-io-#2/INFO]: [PlaceholderAPI] Fetching available expansion information...
[06:52:54] [Server thread/INFO]: PSYCHED_SOUL issued server command: /papi reload
[06:52:54] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[06:52:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[06:52:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoplus [1.0.0]
[06:52:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[06:52:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[06:52:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [1.0]
[06:52:54] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion mcmmo. Identifier is already in use.
[06:52:54] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mcmmo due to an unknown issue.
[06:52:57] [Async Chat Thread - #10/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> hey check
[06:53:14] [Server thread/INFO]: sulcrus issued server command: /npc rename ㅤ
[06:53:14] [Server thread/INFO]: [Essentials] Created a User for ㅤ (e741d245-d4c4-21fa-be77-2be5a5e6a764) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[06:53:23] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 &bCoins&eStore
[06:53:30] [Server thread/INFO]: sulcrus issued server command: /npc rename ㅤ
[06:53:56] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 add &5Sikka&eStore
[06:53:56] [Server thread/WARN]: io.github.znetworkw.znpcservers.commands.CommandExecuteException
[06:53:56] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:26)
[06:53:56] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.Command.execute(Command.java:68)
[06:53:56] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[06:53:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.dispatchCommand(CraftServer.java:943)
[06:53:56] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[06:53:56] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[06:53:56] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[06:53:56] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2389)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$21(PlayerConnection.java:2349)
[06:53:56] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[06:53:56] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[06:53:56] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[06:53:56] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1369)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[06:53:56] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1346)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1339)
[06:53:56] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1317)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1205)
[06:53:56] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[06:53:56] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[06:53:56] [Server thread/WARN]: Caused by: java.lang.UnsupportedOperationException
[06:53:56] [Server thread/WARN]:     at java.base/java.util.AbstractList.add(AbstractList.java:153)
[06:53:56] [Server thread/WARN]:     at java.base/java.util.AbstractList.add(AbstractList.java:111)
[06:53:56] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.list.DefaultCommand.changeLines(DefaultCommand.java:296)
[06:53:56] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[06:53:56] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
[06:53:56] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[06:53:56] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[06:53:56] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:24)
[06:53:56] [Server thread/WARN]:     ... 24 more
[06:54:00] [Async Chat Thread - #12/INFO]: [Not Secure] <Developer ➤ sulcrus> znpcs use karta but wo laggy haii
[06:54:00] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs
[06:54:19] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 set &5Sikka&eStore
[06:54:31] [Server thread/INFO]: sulcrus issued server command: /npc rename &7&oRight-Click to &c&oRtp
[06:54:33] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 set &l&5Sikka&l&eStore
[06:55:07] [Server thread/INFO]: sulcrus issued server command: /npc hologram set &c&nWild Teleport
[06:55:14] [Server thread/INFO]: sulcrus issued server command: /npc hologram set 1 &c&nWild Teleport
[06:55:20] [Server thread/INFO]: sulcrus issued server command: /npc hologram set 1 1 &c&nWild Teleport
[06:55:30] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &c&nWild Teleport
[06:55:38] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gamepoints add PSYCHED_SOUL 1000000
[06:55:45] [Server thread/INFO]: [GamePoints] PSYCHED_SOUL purchased 'rank_mvp' in 'ranks' store for 300 points.
[06:55:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /broadcast &fPSYCHED_SOUL &7just purchased the &bMVP Rank&7!
[06:55:45] [luckperms-command-executor/INFO]: [LP] Command not recognised.
[06:55:48] [Async Chat Thread - #14/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> ,
[06:56:44] [Server thread/INFO]: sulcrus issued server command: /npc ai true
[06:56:52] [Server thread/INFO]: [mcMMO] [config] Initializing config: itemweights.yml
[06:56:52] [Server thread/INFO]: [mcMMO] [config] Copying default config to disk: itemweights.yml to defaults/itemweights.yml
[06:56:52] [Server thread/INFO]: [mcMMO] [config] User config file not found, copying a default config to disk: itemweights.yml
[06:56:52] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: itemweights.yml
[06:56:52] [Server thread/INFO]: [mcMMO] [config] Config initialized: itemweights.yml
[06:56:53] [Server thread/INFO]: sulcrus issued server command: /npc control
[06:57:12] [Server thread/INFO]: sulcrus issued server command: /npc apply
[06:57:18] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gkits
[06:57:19] [Server thread/INFO]: sulcrus issued server command: /template apply
[06:57:23] [Server thread/INFO]: sulcrus issued server command: /template list
[06:57:29] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gkits
[06:57:31] [Server thread/INFO]: PSYCHED_SOUL has made the advancement [Cover Me with Diamonds]
[06:57:51] [Server thread/INFO]: PSYCHED_SOUL has made the advancement [Take Aim]
[06:58:11] [Server thread/INFO]: PSYCHED_SOUL issued server command: /killall mobs
[06:59:01] [Server thread/INFO]: sulcrus issued server command: /template create -o
[06:59:07] [Server thread/INFO]: sulcrus issued server command: /template create Rtp
[06:59:45] [Server thread/INFO]: sulcrus issued server command: /npc hegith
[06:59:46] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs create 2 player &l&cWild-RTP
[06:59:53] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 1
[06:59:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[06:59:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[06:59:56] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 10
[07:00:01] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -10
[07:00:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give sulcrus snowball 1
[07:00:02] [Server thread/INFO]: Giving 1 of snowball to Developer ➤ sulcrus.
[07:00:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give sulcrus poppy 1
[07:00:02] [Server thread/INFO]: Giving 1 of poppy to Developer ➤ sulcrus.
[07:00:09] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -2
[07:00:12] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1.2
[07:00:15] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1.01
[07:00:19] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 add &8Right-Click!
[07:00:20] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -0.2
[07:00:31] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs delete 2
[07:00:39] [Async Chat Thread - #16/INFO]: [Not Secure] <Developer ➤ PSYCHED_SOUL> bruh
[07:01:26] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:01:30] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -0.1
[07:01:37] [Server thread/INFO]: sulcrus issued server command: /npc rename .
[07:01:44] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 1
[07:01:46] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:01:54] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt 10\
[07:02:01] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt 10
[07:02:07] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:14] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:14] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:15] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:16] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:16] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:16] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:23] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:25] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:27] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:30] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:31] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:33] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:35] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:40] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:43] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:45] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:47] [User Authenticator #5/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:02:47] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2a30bd0e[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:15836): You are not whitelisted on this server!
[07:02:48] [Server thread/INFO]: com.mojang.authlib.GameProfile@2a30bd0e[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:15836) lost connection: You are not whitelisted on this server!
[07:02:49] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:54] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:02:56] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:02] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:06] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:09] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:11] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:13] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:14] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:15] [Server thread/INFO]: com.mojang.authlib.GameProfile@1d431e0e[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1719) lost connection: Disconnected
[07:03:15] [User Authenticator #5/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:03:17] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:18] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tnt
[07:03:45] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &7&oRight Click to open
[07:03:51] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 1
[07:03:54] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 0.1
[07:03:57] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 1
[07:04:06] [Server thread/INFO]: sulcrus issued server command: /npc remove all
[07:04:23] [Server thread/INFO]: PSYCHED_SOUL issued server command: /ce add flame
[07:04:48] [Server thread/INFO]: PSYCHED_SOUL issued server command: /enchant flame
[07:04:54] [Server thread/INFO]: PSYCHED_SOUL has made the advancement [Stone Age]
[07:05:27] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give PSYCHED_SOUL snowball 1
[07:05:27] [Server thread/INFO]: Giving 1 of snowball to Developer ➤ PSYCHED_SOUL.
[07:05:27] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give PSYCHED_SOUL poppy 1
[07:05:27] [Server thread/INFO]: Giving 1 of poppy to Developer ➤ PSYCHED_SOUL.
[07:06:01] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gkits
[07:06:11] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gkits
[07:06:15] [Server thread/INFO]: Gave PSYCHED_SOUL 1x blind 3 books!
[07:06:44] [Server thread/INFO]: PSYCHED_SOUL issued server command: /ce add overload 255
[07:07:17] [Server thread/INFO]: PSYCHED_SOUL issued server command: /customenchants enchant overload 255
[07:07:24] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp sul
[07:08:36] [Server thread/INFO]: PSYCHED_SOUL issued server command: /spawn
[07:08:43] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp sulc
[07:09:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[07:09:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[07:09:54] [Craft Scheduler Thread - 58 - GamePoints/INFO]: [GamePoints] Updating balance top...
[07:09:54] [Craft Scheduler Thread - 58 - GamePoints/INFO]: [GamePoints] Balance top updated in 1 ms!
[07:09:54] [Craft Scheduler Thread - 76 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 2 online users | 1 offline users.
[07:10:54] [Server thread/INFO]: [Lottery] There were no Tickets sold.
[07:11:32] [User Authenticator #6/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:11:32] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5c4eb8c2[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1709): You are not whitelisted on this server!
[07:11:32] [Server thread/INFO]: com.mojang.authlib.GameProfile@5c4eb8c2[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1709) lost connection: You are not whitelisted on this server!
[07:13:40] [Server thread/INFO]: com.mojang.authlib.GameProfile@6df30e45[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1678) lost connection: Disconnected
[07:13:40] [User Authenticator #7/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:14:25] [User Authenticator #7/INFO]: [GamePoints] Created new user data for: '00dfe3c0-28fc-3bd5-8445-3326aa75f17a'
[07:14:25] [User Authenticator #7/INFO]: UUID of player notaayush1234 is 00dfe3c0-28fc-3bd5-8445-3326aa75f17a
[07:14:25] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1bcf187f[id=00dfe3c0-28fc-3bd5-8445-3326aa75f17a,name=notaayush1234,properties={},legacy=false] (/103.174.68.203:52225): You are not whitelisted on this server!
[07:14:25] [Server thread/INFO]: com.mojang.authlib.GameProfile@1bcf187f[id=00dfe3c0-28fc-3bd5-8445-3326aa75f17a,name=notaayush1234,properties={},legacy=false] (/103.174.68.203:52225) lost connection: You are not whitelisted on this server!
[07:15:34] [User Authenticator #8/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:15:34] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@51135559[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1680): You are not whitelisted on this server!
[07:15:34] [Server thread/INFO]: com.mojang.authlib.GameProfile@51135559[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1680) lost connection: You are not whitelisted on this server!
[07:16:10] [Server thread/INFO]: com.mojang.authlib.GameProfile@3d0c2899[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1687) lost connection: Disconnected
[07:16:11] [User Authenticator #8/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:16:18] [Server thread/INFO]: sulcrus issued server command: /znpcs create
[07:16:21] [Server thread/INFO]: sulcrus issued server command: /znpcs help
[07:16:27] [Server thread/INFO]: sulcrus issued server command: /znpcs
[07:17:01] [Server thread/INFO]: sulcrus issued server command: /znpcs creat rtp player &fwild teleport
[07:17:10] [Server thread/INFO]: sulcrus issued server command: /znpcs create rtp player &fwild teleport
[07:17:22] [Server thread/INFO]: sulcrus issued server command: /znpcs create 1 player &fwild teleport
[07:17:29] [Server thread/INFO]: sulcrus issued server command: /znpcs create 2 player &fwild teleport
[07:17:40] [Server thread/INFO]: sulcrus issued server command: /znpcs create 2 player &fwild-teleport
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (dev)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor remove sufix.1500.&l&bDeveloper ➤ &f true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.info true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.spawn-on-join true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.home true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.spawn true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.questinfo true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.back.into.world true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.use true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.list true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add prefix.100.&l&8Member➤&f true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add betterrtp.world true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.quests true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.delhome true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.back.into.spawn true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.back.into.world_nether true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.msg true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.shop true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.points true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.stats true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.sethome.bed true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.take true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.join true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.leave true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.command.top true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.quests true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.back.into.world_the_end true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.sethome true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add displayname.&l&8Member➤&f true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add betterrtp true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.quest true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.stats true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.quit true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add quests.top true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add jobs.autojoin true
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:17:40] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add betterrtp.use true
[07:17:49] [Server thread/INFO]: sulcrus issued server command: /znpcs
[07:17:55] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [U] (psyched_soul)
[07:17:55] [luckperms-command-executor/INFO]: [LP] LOG > parent set default
[07:18:01] [Server thread/INFO]: sulcrus issued server command: /znpcs customize 1 2
[07:18:02] [Async Chat Thread - #18/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> ,
[07:18:03] [Server thread/INFO]: sulcrus issued server command: /znpcs customize 1
[07:18:44] [Server thread/INFO]: sulcrus issued server command: /znpcs delete 2
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add prefix.100.&l&7Member➤&f true
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add displayname.&l&7Member➤&f true
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > webeditor remove displayname.&l&8Member➤&f true
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > (PSYCHED_SOUL) [G] (default)
[07:18:51] [luckperms-command-executor/INFO]: [LP] LOG > webeditor remove prefix.100.&l&8Member➤&f true
[07:19:01] [Async Chat Thread - #19/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> ,
[07:19:09] [Server thread/INFO]: sulcrus issued server command: /npc create &6&lWild Teleport
[07:19:09] [Server thread/INFO]: [Essentials] Created a User for CIT-6b762948cd06 (6b762948-cd06-2f96-923e-134ebd317b44) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[07:19:14] [Server thread/INFO]: PSYCHED_SOUL issued server command: /deop PSYCHED_SOUL
[07:19:14] [Server thread/INFO]: [PSYCHED_SOUL: Made PSYCHED_SOUL no longer a server operator]
[07:19:17] [Async Chat Thread - #18/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> hey
[07:19:18] [Server thread/INFO]: sulcrus issued server command: /npc lookclose
[07:19:22] [Async Chat Thread - #19/INFO]: [Not Secure] <Developer ➤ sulcrus> yes
[07:19:33] [Async Chat Thread - #18/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> nthing chwcking lp
[07:19:35] [Async Chat Thread - #19/INFO]: [Not Secure] <Developer ➤ sulcrus> btw luckperms is nature work
[07:19:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[07:19:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[07:19:59] [Server thread/INFO]: sulcrus issued server command: /npc glowing
[07:20:00] [Async Chat Thread - #18/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> ok
[07:20:02] [Server thread/INFO]: sulcrus issued server command: /npc glowing
[07:20:09] [Server thread/INFO]: sulcrus issued server command: /npc gravity 10
[07:20:11] [luckperms-command-executor/INFO]: [LP] The changes received from the web editor are based on an initial session which has already been applied!
[07:20:11] [luckperms-command-executor/INFO]: [LP] To avoid conflicts, you should never re-use the same editor session after the changes from it have been applied once already.
[07:20:11] [luckperms-command-executor/INFO]: [LP] To ignore this warning and apply the changes anyway, run: /lp applyedits 5JJxc6KAQ4 --force
[07:20:11] [Server thread/INFO]: sulcrus issued server command: /npc gravity
[07:20:13] [User Authenticator #9/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:20:13] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1829e9c8[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:15827): You are not whitelisted on this server!
[07:20:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@1829e9c8[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:15827) lost connection: You are not whitelisted on this server!
[07:20:15] [luckperms-command-executor/INFO]: [LP] Web editor data was applied to group default (&l&7Member➤) successfully.
[07:20:15] [luckperms-command-executor/INFO]: [LP] (2 additions and 2 deletions)
[07:20:15] [luckperms-command-executor/INFO]: +  prefix.100.&l&7Member➤ (true)
[07:20:15] [luckperms-command-executor/INFO]: +  displayname.&l&7Member➤ (true)
[07:20:15] [luckperms-command-executor/INFO]: -  displayname.&l&7Member➤&f (true)
[07:20:15] [luckperms-command-executor/INFO]: -  prefix.100.&l&7Member➤&f (true)
[07:20:22] [Server thread/INFO]: Made PSYCHED_SOUL a server operator
[07:20:27] [Server thread/INFO]: PSYCHED_SOUL issued server command: /GMC
[07:20:29] [Server thread/INFO]: PSYCHED_SOUL issued server command: /gmc
[07:20:32] [Async Chat Thread - #19/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> ok
[07:20:48] [Server thread/INFO]: sulcrus issued server command: /npc list
[07:20:53] [Server thread/INFO]: sulcrus issued server command: /npc tp --id 1
[07:21:08] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction east
[07:21:09] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 remove
[07:21:09] [Server thread/WARN]: io.github.znetworkw.znpcservers.commands.CommandExecuteException
[07:21:09] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:26)
[07:21:09] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.Command.execute(Command.java:68)
[07:21:09] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[07:21:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.dispatchCommand(CraftServer.java:943)
[07:21:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[07:21:09] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[07:21:09] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[07:21:09] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2389)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$21(PlayerConnection.java:2349)
[07:21:09] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[07:21:09] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[07:21:09] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[07:21:09] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1369)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[07:21:09] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1346)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1339)
[07:21:09] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1317)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1205)
[07:21:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[07:21:09] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[07:21:09] [Server thread/WARN]: Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 2 out of bounds for length 2
[07:21:09] [Server thread/WARN]:     at com.google.common.collect.RegularImmutableList.get(RegularImmutableList.java:77)
[07:21:09] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.list.DefaultCommand.changeLines(DefaultCommand.java:306)
[07:21:09] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[07:21:09] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
[07:21:09] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[07:21:09] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[07:21:09] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:24)
[07:21:09] [Server thread/WARN]:     ... 24 more
[07:21:13] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs
[07:21:21] [User Authenticator #10/INFO]: UUID of player notaayush1234 is 00dfe3c0-28fc-3bd5-8445-3326aa75f17a
[07:21:21] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@509dffd7[id=00dfe3c0-28fc-3bd5-8445-3326aa75f17a,name=notaayush1234,properties={},legacy=false] (/103.174.68.203:52227): You are not whitelisted on this server!
[07:21:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@509dffd7[id=00dfe3c0-28fc-3bd5-8445-3326aa75f17a,name=notaayush1234,properties={},legacy=false] (/103.174.68.203:52227) lost connection: You are not whitelisted on this server!
[07:21:22] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &7&oRight click to teleport
[07:21:25] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines list
[07:21:30] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 list
[07:21:50] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 0
[07:22:29] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 set &l&5Sikka&l&eStore
[07:23:02] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines add 1 &7Right-&l&7Click
[07:23:14] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 add &7Right-&l&7Click
[07:23:24] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 2 add &7Right-&l&7Click
[07:24:01] [User Authenticator #11/INFO]: [GamePoints] Created new user data for: '17bd8730-d2f4-30e1-b651-a76e97ccac96'
[07:24:01] [User Authenticator #11/INFO]: UUID of player ItzCorps is 17bd8730-d2f4-30e1-b651-a76e97ccac96
[07:24:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@208e3940[id=17bd8730-d2f4-30e1-b651-a76e97ccac96,name=ItzCorps,properties={},legacy=false] (/103.137.10.244:39405): You are not whitelisted on this server!
[07:24:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@208e3940[id=17bd8730-d2f4-30e1-b651-a76e97ccac96,name=ItzCorps,properties={},legacy=false] (/103.137.10.244:39405) lost connection: You are not whitelisted on this server!
[07:24:09] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 set &l&7Right-&l&7Click
[07:24:24] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs lines 1 add &l&5Sikka&l&eStore
[07:24:41] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs toggle 1 glo
[07:24:41] [Server thread/WARN]: io.github.znetworkw.znpcservers.commands.CommandExecuteException
[07:24:41] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:26)
[07:24:41] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.Command.execute(Command.java:68)
[07:24:41] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[07:24:41] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.dispatchCommand(CraftServer.java:943)
[07:24:41] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[07:24:41] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[07:24:41] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[07:24:41] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2389)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$21(PlayerConnection.java:2349)
[07:24:41] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[07:24:41] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[07:24:41] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[07:24:41] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1369)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[07:24:41] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1346)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1339)
[07:24:41] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1317)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1205)
[07:24:41] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[07:24:41] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[07:24:41] [Server thread/WARN]: Caused by: java.lang.NullPointerException: Cannot invoke "io.github.znetworkw.znpcservers.npc.NPCFunction.getName()" because "npcFunction" is null
[07:24:41] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.list.DefaultCommand.toggle(DefaultCommand.java:463)
[07:24:41] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[07:24:41] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
[07:24:41] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[07:24:41] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[07:24:41] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:24)
[07:24:41] [Server thread/WARN]:     ... 24 more
[07:24:44] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs toggle 1 glow
[07:24:44] [Server thread/WARN]: io.github.znetworkw.znpcservers.commands.CommandExecuteException
[07:24:44] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.CommandInvoker.execute(CommandInvoker.java:26)
[07:24:44] [Server thread/WARN]:     at znpcs-4.1.jar//io.github.znetworkw.znpcservers.commands.Command.execute(Command.java:68)
[07:24:44] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[07:24:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.dispatchCommand(CraftServer.java:943)
[07:24:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[07:24:44] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[07:24:44] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[07:24:44] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2389)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$21(PlayerConnection.java:2349)
[07:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[07:24:44] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[07:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[07:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1369)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[07:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1346)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1339)
[07:24:44] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1317)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1205)
[07:24:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[07:24:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[07:24:44] [Server thread/WARN]: Caused by: java.lang.ArrayIndexOutOfBoundsException
[07:24:48] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs
[07:25:29] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs height 1 100
[07:25:38] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs height 1 1
[07:25:46] [Server thread/INFO]: PSYCHED_SOUL issued server command: /znpcs height 1 0
[07:26:07] [Server thread/INFO]: [GamePoints] PSYCHED_SOUL purchased 'key_daily' in 'crate_keys' store for 10 points.
[07:26:07] [Server thread/INFO]: This command is not known.
[07:26:39] [Server thread/INFO]: PSYCHED_SOUL issued server command: /powertool a:/expand
[07:26:47] [Server thread/INFO]: PSYCHED_SOUL issued server command: /powertool a:/expand
[07:26:47] [User Authenticator #12/INFO]: [GamePoints] Created new user data for: '390c7d6d-4949-3841-90ca-7c3aa00db509'
[07:26:47] [User Authenticator #12/INFO]: UUID of player Nottouchme is 390c7d6d-4949-3841-90ca-7c3aa00db509
[07:26:47] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@395e1d8b[id=390c7d6d-4949-3841-90ca-7c3aa00db509,name=Nottouchme,properties={textures=[com.mojang.authlib.properties.Property@24d33949]},legacy=false] (/182.185.64.153:42136): You are not whitelisted on this server!
[07:26:48] [Server thread/INFO]: com.mojang.authlib.GameProfile@395e1d8b[id=390c7d6d-4949-3841-90ca-7c3aa00db509,name=Nottouchme,properties={textures=[com.mojang.authlib.properties.Property@24d33949]},legacy=false] (/182.185.64.153:42136) lost connection: You are not whitelisted on this server!
[07:27:28] [Server thread/INFO]: PSYCHED_SOUL lost connection: Disconnected
[07:28:20] [User Authenticator #13/INFO]: [GamePoints] Created new user data for: 'aeff889b-a926-3292-ab7f-428047c32c90'
[07:28:20] [User Authenticator #13/INFO]: UUID of player Amritk is aeff889b-a926-3292-ab7f-428047c32c90
[07:28:20] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5a4f5b1b[id=aeff889b-a926-3292-ab7f-428047c32c90,name=Amritk,properties={textures=[com.mojang.authlib.properties.Property@6c909a14]},legacy=false] (/27.34.48.27:51649): You are not whitelisted on this server!
[07:28:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@5a4f5b1b[id=aeff889b-a926-3292-ab7f-428047c32c90,name=Amritk,properties={textures=[com.mojang.authlib.properties.Property@6c909a14]},legacy=false] (/27.34.48.27:51649) lost connection: You are not whitelisted on this server!
[07:28:29] [User Authenticator #13/INFO]: UUID of player Amritk is aeff889b-a926-3292-ab7f-428047c32c90
[07:28:29] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@61f17a68[id=aeff889b-a926-3292-ab7f-428047c32c90,name=Amritk,properties={textures=[com.mojang.authlib.properties.Property@8502e65]},legacy=false] (/27.34.48.27:54756): You are not whitelisted on this server!
[07:28:29] [Server thread/INFO]: com.mojang.authlib.GameProfile@61f17a68[id=aeff889b-a926-3292-ab7f-428047c32c90,name=Amritk,properties={textures=[com.mojang.authlib.properties.Property@8502e65]},legacy=false] (/27.34.48.27:54756) lost connection: You are not whitelisted on this server!
[07:29:05] [Server thread/INFO]: sulcrus issued server command: /npc title
[07:29:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[07:29:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[07:29:54] [Craft Scheduler Thread - 58 - GamePoints/INFO]: [GamePoints] Updating balance top...
[07:29:54] [Craft Scheduler Thread - 58 - GamePoints/INFO]: [GamePoints] Balance top updated in 4 ms!
[07:29:54] [Craft Scheduler Thread - 101 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 1 online users | 5 offline users.
[07:30:17] [Server thread/INFO]: sulcrus issued server command: /npc gamemode SURVIVAL
[07:32:55] [Server thread/INFO]: sulcrus lost connection: Disconnected
[07:33:48] [User Authenticator #14/INFO]: UUID of player sulcrus is c0ce9260-640d-3ffe-bc55-94eb2add4391
[07:33:48] [Server thread/INFO]: sulcrus[/103.190.40.56:1242] logged in with entity id 2991 at ([Spawn]-41.62686752065359, 116.0, 19.79981516447618)
[07:33:51] [Craft Scheduler Thread - 75 - mcMMO/INFO]: [mcMMO] Creating new data for player: sulcrus
[07:33:53] [Craft Scheduler Thread - 97 - nLogin/INFO]: [nLogin] The user sulcrus has successfully logged in.
[07:33:57] [Server thread/INFO]: com.mojang.authlib.GameProfile@39919c77[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1690) lost connection: Disconnected
[07:33:57] [User Authenticator #14/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:34:11] [Server thread/INFO]: sulcrus issued server command: /npc rename &7Click to Teleport
[07:34:21] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove
[07:34:24] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 0
[07:34:32] [Server thread/INFO]: sulcrus issued server command: /npc hologram
[07:35:04] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &fTeleport you to the random place in the world
[07:35:15] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 0
[07:35:30] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &6&lWild-Telepor
[07:35:36] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 0
[07:35:38] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &6&lWild-Teleport
[07:35:50] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 0.5
[07:35:53] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 1
[07:35:56] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1
[07:35:59] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1.1
[07:36:01] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1.01
[07:36:04] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1.001
[07:36:07] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1
[07:36:58] [Server thread/INFO]: sulcrus issued server command: /npc skin --url https://s.namemc.com/i/65848a841848c177.png
[07:37:05] [Server thread/INFO]: sulcrus issued server command: /npc skin --url https://s.namemc.com/i/65848a841848c177.png
[07:37:19] [Server thread/INFO]: sulcrus issued server command: /give @p minecraft:player_head{SkullOwner:{Id:[I;-1486421719,-1193060266,-1368372901,1181947051],Properties:{textures:[{Value:"e3RleHR1cmVzOntTS0lOOnt1cmw6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWM2ZWYzNDdkMzBiYzBmZDk1M2RlYmY3Y2FjOWJjNmUzMjAwN
[07:37:32] [Server thread/INFO]: sulcrus issued server command: /npc look
[07:37:35] [Server thread/INFO]: sulcrus issued server command: /npc look
[07:37:53] [Server thread/INFO]: sulcrus issued server command: /znpcs delete 1
[07:38:10] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight -1
[07:38:13] [Server thread/INFO]: sulcrus issued server command: /npc hologram lineheight 1
[07:38:27] [Server thread/INFO]: sulcrus issued server command: /npc hologram remove 0
[07:38:40] [Server thread/INFO]: sulcrus issued server command: /npc rename &6Wild Teleport
[07:38:56] [Server thread/INFO]: sulcrus issued server command: /npc hologram add &7Click to connect
[07:39:30] [User Authenticator #15/INFO]: UUID of player SIDDHU4247 is cb7453c9-7572-393d-a809-512f8fa23f3f
[07:39:30] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5543c7eb[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1697): You are not whitelisted on this server!
[07:39:30] [Server thread/INFO]: com.mojang.authlib.GameProfile@5543c7eb[id=cb7453c9-7572-393d-a809-512f8fa23f3f,name=SIDDHU4247,properties={},legacy=false] (/103.167.233.81:1697) lost connection: You are not whitelisted on this server!
[07:39:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[07:39:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[07:40:23] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction
[07:40:23] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[07:40:23] [Server thread/WARN]:     at Citizens-2.0.32-b3111.jar//net.citizensnpcs.api.command.CommandContext.getString(CommandContext.java:287)
[07:40:23] [Server thread/WARN]:     at Citizens-2.0.32-b3111.jar//net.citizensnpcs.commands.NPCCommands.hologram(NPCCommands.java:1149)
[07:40:23] [Server thread/WARN]:     at jdk.internal.reflect.GeneratedMethodAccessor112.invoke(Unknown Source)
[07:40:23] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[07:40:23] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:568)
[07:40:23] [Server thread/WARN]:     at Citizens-2.0.32-b3111.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:193)
[07:40:23] [Server thread/WARN]:     at Citizens-2.0.32-b3111.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:101)
[07:40:23] [Server thread/WARN]:     at Citizens-2.0.32-b3111.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:234)
[07:40:23] [Server thread/WARN]:     at Citizens-2.0.32-b3111.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:347)
[07:40:23] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[07:40:23] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
[07:40:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.dispatchCommand(CraftServer.java:943)
[07:40:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[07:40:23] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[07:40:23] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[07:40:23] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2389)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$21(PlayerConnection.java:2349)
[07:40:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[07:40:23] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[07:40:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[07:40:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1369)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[07:40:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1346)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1339)
[07:40:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1317)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1205)
[07:40:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[07:40:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[07:40:25] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction 1
[07:40:29] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction 2
[07:40:31] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction 3
[07:40:34] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction -1
[07:40:48] [Server thread/INFO]: sulcrus issued server command: /npc remove
[07:40:51] [Server thread/INFO]: sulcrus issued server command: /npc undo
[07:40:55] [Server thread/INFO]: sulcrus issued server command: /npc remove
[07:41:02] [Server thread/INFO]: sulcrus issued server command: /time set noon
[07:46:22] [Server thread/INFO]: sulcrus issued server command: /npc help hologram
[07:46:35] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction downn
[07:46:37] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction down
[07:46:41] [Server thread/INFO]: sulcrus issued server command: /npc undo
[07:46:43] [Server thread/INFO]: sulcrus issued server command: /npc hologram direction down
[07:49:54] [Server thread/INFO]: BankPlus The BankTop has been updated!
[07:49:54] [Server thread/INFO]: BankPlus [INFO] All player balances have been saved!
[07:49:54] [Craft Scheduler Thread - 117 - GamePoints/INFO]: [GamePoints] Updating balance top...
[07:49:54] [Craft Scheduler Thread - 117 - GamePoints/INFO]: [GamePoints] Balance top updated in 0 ms!
[07:49:54] [Craft Scheduler Thread - 120 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 1 online users | 1 offline users.
[07:53:06] [Server thread/INFO]: sulcrus issued server command: /set
[07:53:11] [Server thread/INFO]: sulcrus issued server command: /up 1
[07:55:09] [User Authenticator #16/INFO]: UUID of player PSYCHED_SOUL is b8c1ac0a-2472-3d2e-b1b6-d7d6815cd9b8
[07:55:09] [Server thread/INFO]: PSYCHED_SOUL[/103.163.238.208:34479] logged in with entity id 3112 at ([Spawn]-23.707378021661377, 123.22817106476863, -9.235721719591133)
[07:55:12] [Craft Scheduler Thread - 117 - mcMMO/INFO]: [mcMMO] Creating new data for player: PSYCHED_SOUL
[07:55:23] [Craft Scheduler Thread - 113 - nLogin/INFO]: [nLogin] The user PSYCHED_SOUL has successfully logged in.
[07:55:29] [Server thread/INFO]: PSYCHED_SOUL issued server command: /tp su
[07:55:50] [Async Chat Thread - #20/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> aj kitna kam hua
[07:55:57] [Async Chat Thread - #21/INFO]: [Not Secure] <Developer ➤ sulcrus> kuch nahi w
[07:55:58] [Async Chat Thread - #21/INFO]: [Not Secure] <Member➤PSYCHED_SOUL> may i work on crates
[07:55:59] [Server thread/INFO]: PSYCHED_SOUL issued server command: /crates
[07:56:05] [Async Chat Thread - #21/INFO]: [Not Secure] <Developer ➤ sulcrus> u can
[07:56:06] [Server thread/INFO]: PSYCHED_SOUL issued server command: /crates
[07:56:28] [Server thread/INFO]: PSYCHED_SOUL issued server command: /crates editor
[07:56:33] [Server thread/INFO]: PSYCHED_SOUL issued server command: /plugins