Paste #122432: Logs for Support

Date: 2024/05/04 12:02:01 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


16:29:49] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[16:29:49] [ServerMain/WARN]: resource-pack-id missing, using default of 2d7439bd-bd31-3af9-90d7-ba4c7cd4578b
[16:29:49] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[16:29:49] [ServerMain/INFO]: Found new data pack file/bukkit, loading it automatically
[16:29:49] [ServerMain/INFO]: No existing world data, creating new world
[16:29:50] [ServerMain/INFO]: Loaded 1174 recipes
[16:29:50] [ServerMain/INFO]: Loaded 1271 advancements
[16:29:50] [Server thread/INFO]: Starting minecraft server version 1.20.4
[16:29:50] [Server thread/INFO]: Loading properties
[16:29:50] [Server thread/INFO]: This server is running Paper version git-Paper-496 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: 7ac24a1 on ver/1.20.4)
[16:29:50] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:29:50] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:29:51] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[16:29:51] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[16:29:51] [Server thread/INFO]: Default game type: SURVIVAL
[16:29:51] [Server thread/INFO]: Generating keypair
[16:29:51] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25592
[16:29:51] [Server thread/INFO]: Using epoll channel type
[16:29:51] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[16:29:51] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[16:29:51] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loading 2 libraries... please wait
[16:29:51] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[16:29:51] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[16:29:51] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /home/container/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[16:29:51] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.10.0
[16:29:51] [Server thread/INFO]: [ViaVersion] ViaVersion 4.10.0 is now loaded. Registering protocol transformers and injecting...
[16:29:52] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[16:29:52] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[16:29:52] [Server thread/INFO]: [ViaBackwards] Loading translations...
[16:29:52] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[16:29:52] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.113
[16:29:52] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[16:29:52] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.5-SNAPSHOT-639;a4a1126
[16:29:53] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@20466150]
[16:29:53] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[16:29:53] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[16:29:53] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[16:29:53] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.5
[16:29:53] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3399)
[16:29:53] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.18
[16:29:53] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.4.377
[16:29:53] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[16:29:53] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[16:29:53] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.4.3
[16:29:53] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.10.0
[16:29:53] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[16:29:53] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.6
[16:29:53] [Server thread/INFO]: [CustomBansPlus] Loading server plugin CustomBansPlus v3.6
[16:29:53] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.4.0.1.1193
[16:29:53] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[16:29:53] [Server thread/INFO]: [CombatLogX] Loading expansions...
[16:29:53] [Server thread/INFO]: [CombatLogX] Loading expansion 'Boss Bar v17.1'...
[16:29:53] [Server thread/INFO]: [CombatLogX]  
[16:29:53] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v17.2'...
[16:29:53] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.9+5934e49
[16:29:53] [Server thread/INFO]: [CombatLogX]  
[16:29:53] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v17.1'...
[16:29:53] [Server thread/INFO]: [CombatLogX]  
[16:29:53] [Server thread/INFO]: [CombatLogX] Loading expansion 'LuckPerms Compatibility v17.1'...
[16:29:53] [Server thread/INFO]: [CombatLogX]  
[16:29:53] [Server thread/INFO]: [CombatLogX] Successfully loaded 4 expansions.
[16:29:53] [Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.2.5
[16:29:53] [Server thread/INFO]: [ViewDistanceTweaks] Loading server plugin ViewDistanceTweaks v1.5.7
[16:29:53] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[16:29:53] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.10
[16:29:53] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.14
[16:29:53] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.19.1.7
[16:29:53] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.62
[16:29:53] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[16:29:53] [Server thread/INFO]: [NoChatReports] Loading server plugin NoChatReports v1.0.5
[16:29:53] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.2.1
[16:29:53] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[16:29:53] [Server thread/INFO]: [LootCrate] Loading server plugin LootCrate v0.11.3
[16:29:53] [Server thread/INFO]: [skript-citizens] Loading server plugin skript-citizens v1.0.0
[16:29:53] [Server thread/INFO]: [Maintenance] Loading server plugin Maintenance v4.2.0
[16:29:53] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[16:29:53] [Server thread/INFO]: [AutomaticBroadcast] Loading server plugin AutomaticBroadcast v1.6.0
[16:29:53] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:29:53] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.113
[16:29:53] [Server thread/INFO]:         __    
[16:29:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.113
[16:29:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[16:29:53] [Server thread/INFO]: 
[16:29:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:29:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[16:29:54] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:29:54] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:29:54] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1115ms)
[16:29:54] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[16:29:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[16:29:54] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:29:54] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[16:29:54] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:29:54] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.5-SNAPSHOT-639;a4a1126
[16:29:54] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[16:29:54] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[16:29:54] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:29:54] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:29:54] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[16:29:55] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[16:29:55] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[16:29:55] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[16:29:55] [Server thread/INFO]: Preparing level "AstroSMP"
[16:29:55] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 116 build(s) out of date.
You are running build 639, the latest version is build 755.
Update at https://www.spigotmc.org/resources/13932/
[16:29:58] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[16:29:58] [Server thread/INFO]: Time elapsed: 107 ms
[16:29:58] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[16:29:58] [Server thread/INFO]: Time elapsed: 41 ms
[16:29:58] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[16:29:58] [Server thread/INFO]: Time elapsed: 64 ms
[16:29:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.10.0
[16:29:58] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.3-1.20.4 (765)
[16:29:58] [Server thread/ERROR]: [ViaVersion] ************************************************
[16:29:58] [Server thread/ERROR]: [ViaVersion] You are using unsupported software and may encounter unforeseeable issues.
[16:29:58] [Server thread/ERROR]: [ViaVersion] 
[16:29:58] [Server thread/ERROR]: [ViaVersion] We strongly advise against using NoChatReports:
[16:29:58] [Server thread/ERROR]: [ViaVersion] Instead of doing the obvious (or nothing at all), these kinds of plugins completely break chat message handling, usually then also breaking other plugins.
[16:29:58] [Server thread/ERROR]: [ViaVersion] 
[16:29:58] [Server thread/ERROR]: [ViaVersion] We will not provide support in case you encounter issues possibly related to this software.
[16:29:58] [Server thread/ERROR]: [ViaVersion] ************************************************
[16:29:58] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[16:29:58] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[16:29:58] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP) TNT ignition is PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP) Lighters are PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP) Lava fire is PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP) Fire spread is UNRESTRICTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP'
[16:29:59] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[16:29:59] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) TNT ignition is PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Lighters are PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Lava fire is PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Fire spread is UNRESTRICTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP_nether'
[16:29:59] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[16:29:59] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) TNT ignition is PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Lighters are PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Lava fire is PERMITTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Fire spread is UNRESTRICTED.
[16:29:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP_the_end'
[16:29:59] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:29:59] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[16:29:59] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:29:59] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[16:29:59] [Server thread/ERROR]: [Essentials] You are using plugins known to cause severe issues with EssentialsX and other plugins.
[16:29:59] [Server thread/INFO]: [Essentials] Status determining class: ml.tcoded.nochatreports.NoChatReportsSpigot
[16:29:59] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[16:29:59] [Server thread/INFO]: [Essentials] No kits found to migrate.
[16:29:59] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[16:29:59] [Server thread/INFO]: [Essentials] Using locale en_US
[16:29:59] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[16:29:59] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[16:29:59] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[16:29:59] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[16:29:59] [Server thread/INFO]: [Skript] Enabling Skript v2.8.5
[16:30:00] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[16:30:06] [Server thread/INFO]: [Skript] Loaded 233032 aliases in 6672ms
[16:30:07] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[16:30:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3399)
[16:30:07] [Server thread/INFO]: [Citizens] Loading external libraries
[16:30:07] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:30:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[16:30:07] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[16:30:07] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.18
[16:30:07] [Server thread/INFO]: [SuperVanish] Please install ProtocolLib to be able to use all SuperVanish features: https://www.spigotmc.org/resources/protocollib.1997/
[16:30:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.18]
[16:30:07] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[16:30:07] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[16:30:07] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[16:30:07] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[16:30:07] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" 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--].
[16:30:07] [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.
[16:30:07] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'AstroSMP' - Env: NORMAL - Type: NORMAL & seed: 2625893924514374789
[16:30:07] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'AstroSMP_nether' - Env: NETHER - Type: NORMAL & seed: 2625893924514374789
[16:30:07] [Server thread/WARN]: [Multiverse-Core] Spawn location from world.dat file was unsafe. Adjusting...
[16:30:07] [Server thread/WARN]: [Multiverse-Core] Original Location: X: 0 Y: 66 Z: 0 P: 0 Y: 0 
[16:30:07] [Server thread/INFO]: [Multiverse-Core] New Spawn for 'AstroSMP_nether' is located at: AstroSMP_nether:7.50,67.00,-6.50:0.00:0.00
[16:30:07] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'AstroSMP_the_end' - Env: THE_END - Type: NORMAL & seed: 2625893924514374789
[16:30:07] [Server thread/INFO]: Preparing start region for dimension minecraft:world_the_end
[16:30:08] [Server thread/INFO]: Time elapsed: 512 ms
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:30:08] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[16:30:08] [Server thread/INFO]: Time elapsed: 48 ms
[16:30:08] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:30:08] [Server thread/INFO]: Preparing start region for dimension minecraft:events
[16:30:08] [Server thread/INFO]: Time elapsed: 40 ms
[16:30:08] [Server thread/INFO]: [WorldGuard] (Events) TNT ignition is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (Events) Lighters are PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (Events) Lava fire is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (Events) Fire spread is UNRESTRICTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Events'
[16:30:08] [Server thread/INFO]: Preparing start region for dimension minecraft:world_nether
[16:30:08] [Server thread/INFO]: Time elapsed: 50 ms
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:30:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:30:08] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[16:30:08] [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.
[16:30:08] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[16:30:08] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[16:30:08] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[16:30:08] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[16:30:08] [Server thread/INFO]: --------------------
[16:30:08] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[16:30:08] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[16:30:08] [Server thread/INFO]: --------------------
[16:30:08] [Server thread/INFO]: [SkBee] Enabling SkBee v3.4.3
[16:30:08] [Server thread/INFO]: [SkBee] Loading NBTApi...
[16:30:08] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[16:30:08] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[16:30:08] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[16:30:09] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[16:30:09] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[16:30:09] [Server thread/INFO]: [SkBee] Loaded (391) elements:
[16:30:09] [Server thread/INFO]: [SkBee]  - 53 events
[16:30:09] [Server thread/INFO]: [SkBee]  - 61 effects
[16:30:09] [Server thread/INFO]: [SkBee]  - 241 expressions
[16:30:09] [Server thread/INFO]: [SkBee]  - 27 conditions
[16:30:09] [Server thread/INFO]: [SkBee]  - 9 sections
[16:30:09] [Server thread/INFO]: [SkBee] Checking for update...
[16:30:09] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[16:30:09] [Server thread/INFO]: [SkBee]  - Current version: v3.4.3
[16:30:09] [Server thread/INFO]: [SkBee]  - Available update: v3.5.0
[16:30:09] [Server thread/INFO]: [SkBee]  - Download available at: https://github.com/ShaneBeee/SkBee/releases
[16:30:09] [Server thread/INFO]: [SkBee] Successfully enabled v3.4.3 in 0.43 seconds
[16:30:09] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.10.0
[16:30:09] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[16:30:09] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[16:30:09] [Server thread/INFO]: [CustomBansPlus] Enabling CustomBansPlus v3.6
[16:30:09] [Server thread/INFO]: v1_20_R3
[16:30:09] [Thread-16/INFO]: [CBP] Checking for updates...
[16:30:09] [Server thread/INFO]: Essentials plugin found.
[16:30:09] [Server thread/INFO]: PlaceholderAPI plugin found.
[16:30:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cbp [3.6]
[16:30:09] [Server thread/INFO]: Database Initialized.
[16:30:09] [Server thread/INFO]: [CustomBansPlus] Tables Initialized.
[16:30:09] [Server thread/INFO]: Save Cache Initiated
[16:30:09] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[16:30:09] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[16:30:09] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[16:30:09] [Server thread/INFO]: CombatLogX was loaded successfully.
[16:30:09] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[16:30:09] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v17.1'...
[16:30:09] [Server thread/INFO]: [CombatLogX]  
[16:30:09] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LuckPerms Compatibility v17.1'...
[16:30:09] [Server thread/INFO]: [CombatLogX] [LuckPerms Compatibility] Successfully found a dependency: LuckPerms v5.4.113
[16:30:09] [Server thread/INFO]: [CombatLogX]  
[16:30:09] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v17.1'...
[16:30:09] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.5
[16:30:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatlogx [17.1]
[16:30:09] [Server thread/INFO]: [CombatLogX]  
[16:30:09] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v17.2'...
[16:30:09] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.9+5934e49
[16:30:09] [Server thread/INFO]: [CombatLogX]  
[16:30:09] [Server thread/INFO]: [CombatLogX] Successfully enabled 4 expansions.
[16:30:09] [Server thread/INFO]: CombatLogX was enabled successfully.
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.2.5
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Checking for update...
[16:30:09] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[16:30:09] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection conn0: url=jdbc:h2:./plugins/ODailyQuests/database user=ODQ
[16:30:09] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database DATABASE.
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Citizens successfully hooked.
[16:30:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: odailyquests [1.0.4]
[16:30:09] [Server thread/INFO]: [O'DailyQuests] PlaceholderAPI successfully hooked.
[16:30:09] [Server thread/INFO]: [O'DailyQuests] globalQuests array successfully loaded (21).
[16:30:09] [Server thread/INFO]: [O'DailyQuests] Plugin is started!
[16:30:09] [Server thread/INFO]: [ViewDistanceTweaks] Enabling ViewDistanceTweaks v1.5.7
[16:30:09] [Server thread/INFO]: [ViewDistanceTweaks] Using PaperSimulationDistanceHook for the simulation distance hook.
[16:30:09] [Server thread/INFO]: [ViewDistanceTweaks] Using PaperViewDistanceHook for the view distance hook.
[16:30:09] [Server thread/INFO]: [ViewDistanceTweaks] Using PaperTickHook for the tick hook.
[16:30:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: viewdistancetweaks [1]
[16:30:09] [Server thread/INFO]: [ViewDistanceTweaks] Registered expansion for PlaceholderAPI.
[16:30:09] [Server thread/INFO]: [ViewDistanceTweaks] Finished startup.
[16:30:09] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[16:30:09] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[16:30:09] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[16:30:09] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[16:30:09] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[16:30:09] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[16:30:09] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[16:30:09] [Server thread/WARN]: [skRayFall] Unable to get bacon for the CoreProtect loggers [Unsupported API version (9)].
[16:30:09] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[16:30:09] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[16:30:10] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[16:30:10] [Server thread/INFO]: [skRayFall] Bacon is ready!
[16:30:10] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.10
[16:30:10] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[16:30:10] [Server thread/INFO]: [skQuery] Beginning to process a total of 117 from SkQuery
[16:30:10] [Server thread/INFO]: [skQuery] Out of 117 classes, 117 classes were loaded from SkQuery
[16:30:10] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.14
[16:30:10] [Server thread/INFO]: InventoryRollbackPlus > Inventory backup data is set to save to: YAML
[16:30:10] [Server thread/INFO]: InventoryRollbackPlus > bStats are enabled
[16:30:10] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.19.1.7
[16:30:10] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.7 Plugin Loading...
[16:30:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[16:30:10] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.7 Plugin Loaded!
[16:30:10] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.62
[16:30:10] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[16:30:10] [Server thread/INFO]: [GrimAC] Registering packets...
[16:30:10] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[16:30:10] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[16:30:10] [Server thread/INFO]: [NoChatReports] Enabling NoChatReports v1.0.5
[16:30:10] [Server thread/INFO]: [NoChatReports] Loading plugin hooks...
[16:30:10] [Server thread/INFO]: [NoChatReports] Loaded 0 plugin hooks!
[16:30:10] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.2.1
[16:30:10] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[16:30:10] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[16:30:10] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[16:30:10] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[16:30:10] [Server thread/INFO]: [ItemEdit] placeholders:
[16:30:10] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[16:30:10] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[16:30:10] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[16:30:10] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[16:30:10] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[16:30:10] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[16:30:10] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[16:30:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[16:30:10] [Server thread/INFO]: [ItemEdit] # Enabled (took 65 ms)
[16:30:10] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[16:30:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[16:30:10] [Server thread/INFO]: [TAB] Enabled in 122ms
[16:30:10] [Server thread/INFO]: [LootCrate] Enabling LootCrate v0.11.3
[16:30:10] [Server thread/INFO]: 
[16:30:10] [Server thread/INFO]: 
[16:30:10] [Server thread/INFO]: [  LootCrate v0.11.3  ]
[16:30:10] [Server thread/INFO]: 
[16:30:10] [Server thread/INFO]: Running Paper v1.20.4-R0.1-SNAPSHOT.
[16:30:10] [Server thread/INFO]: Loaded 2 crate(s).
[16:30:10] [Server thread/INFO]: Detected DecentHolograms.
[16:30:10] [Server thread/INFO]: Detected bStats Metrics.
[16:30:10] [Server thread/INFO]: 
[16:30:10] [Server thread/INFO]: [skript-citizens] Enabling skript-citizens v1.0.0
[16:30:10] [Server thread/INFO]: [skript-citizens] Skript-Citizens has been enabled.
[16:30:10] [Server thread/INFO]: [Maintenance] Enabling Maintenance v4.2.0
[16:30:10] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[16:30:10] [Server thread/INFO]: [AutomaticBroadcast] Enabling AutomaticBroadcast v1.6.0
[16:30:10] [Server thread/INFO]:    _____  _____
[16:30:10] [Server thread/INFO]:   |  _  || __  |  AutomaticBroadcast
[16:30:10] [Server thread/INFO]:   |     || __ -|    Version 1.6.0
[16:30:10] [Server thread/INFO]:   |__|__||_____|      by Pandaaa
[16:30:10] [Server thread/INFO]: 
[16:30:11] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:30:11] [Server thread/INFO]: Running delayed init tasks
[16:30:11] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[16:30:11] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[16:30:11] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[16:30:11] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: InventoryRollbackPlus > Checking for updates...
[16:30:11] [Craft Scheduler Thread - 13 - NoChatReports/INFO]: [NoChatReports] Checking for updates...
[16:30:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[16:30:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[16:30:11] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[16:30:11] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[16:30:11] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[16:30:11] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[16:30:11] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: 
===============================================================================
A minor update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.14, latest: 1.6.16)
===============================================================================

[16:30:11] [Craft Scheduler Thread - 13 - NoChatReports/INFO]: [NoChatReports] You are running the latest version.
[16:30:11] [Craft Scheduler Thread - 9 - ODailyQuests/INFO]: [O'DailyQuests] Plugin is up to date.
[16:30:11] [Server thread/INFO]: [Skript] Loading variables...
[16:30:11] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[16:30:11] [Server thread/INFO]: [Skript] Line 11: (SERVER/Ryleigh_CustomCrafts.sk)
[16:30:11] [Server thread/INFO]:     an inventory cannot be saved, i.e. the contents of the variable {customcraftsGUI} will be lost when the server stops.
[16:30:11] [Server thread/INFO]:     Line: set {customcraftsGUI} to a new chest inventory with 3 rows named "<##9FDBEE>Custom Recipes"
[16:30:11] [Server thread/INFO]:  
[16:30:11] [Server thread/INFO]: [Skript] Line 22: (SERVER/Ryleigh_CustomCrafts.sk)
[16:30:11] [Server thread/INFO]:     an inventory cannot be saved, i.e. the contents of the variable {TotemrecipeGUI} will be lost when the server stops.
[16:30:11] [Server thread/INFO]:     Line: set {TotemrecipeGUI} to a new chest inventory with 3 rows named "<##9FDBEE>Totem of Undying Recipe"
[16:30:11] [Server thread/INFO]:  
[16:30:11] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[16:30:11] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[16:30:11] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[16:30:11] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.4.402
[16:30:11] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[16:30:11] [Server thread/INFO]: [Skript] Line 29: (SERVER/Ryleigh_NPCs.sk)
[16:30:11] [Server thread/INFO]:     an inventory cannot be saved, i.e. the contents of the variable {SkullTraderGUI} will be lost when the server stops.
[16:30:11] [Server thread/INFO]:     Line: set {SkullTraderGUI} to a new chest inventory with 3 rows with name "<##E57373>Skull Trader's Backpack"
[16:30:11] [Server thread/INFO]:  
[16:30:11] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[16:30:11] [Server thread/INFO]: [Skript] Loaded 3 scripts with a total of 13 structures in 0.41 seconds
[16:30:11] [Server thread/INFO]: [Skript] Finished loading.
[16:30:11] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[16:30:12] [Server thread/INFO]: [Citizens] Loaded 4 NPCs.
[16:30:12] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[16:30:12] [Server thread/INFO]: Done (21.677s)! For help, type "help"
[16:30:12] [Server thread/INFO]: Timings Reset
[16:30:12] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:30:12] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] No new version available
[16:30:12] [Server thread/INFO]: pikatntyt (/93.21.44.17:50535) lost connection: Disconnected
[16:30:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[16:30:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[16:30:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: kdratio [1.1.0]
[16:30:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[16:30:12] [Server thread/INFO]: 4 placeholder hook(s) registered!
[16:30:17] [User Authenticator #0/INFO]: UUID of player pikatntyt is be4f2bbe-cdad-417a-a65d-09f68169e15c
[16:30:18] [Server thread/INFO]: pikatntyt joined the game
[16:30:18] [Server thread/INFO]: pikatntyt[/        ip         ] logged in with entity id 621 at ([AstroSMP]-9.5, 82.0, 6.5)
[16:30:19] [Craft Scheduler Thread - 0 - ODailyQuests/WARN]: [O'DailyQuests] Player pikatntyt has more quests than the configuration.
[16:30:19] [Craft Scheduler Thread - 0 - ODailyQuests/WARN]: [O'DailyQuests] Only the first 1 quests will be loaded.
[16:30:19] [Craft Scheduler Thread - 0 - ODailyQuests/WARN]: [O'DailyQuests] After changing the number of quests, we recommend that you reset the progressions to avoid any problems.
[16:30:19] [Craft Scheduler Thread - 0 - ODailyQuests/INFO]: [O'DailyQuests] pikatntyt's quests have been loaded.
[16:30:22] [User Authenticator #0/INFO]: UUID of player xRyleigh is d75c4fc3-148b-474f-be27-b15f2ca56001
[16:30:22] [Server thread/INFO]: xRyleigh joined the game
[16:30:22] [Server thread/INFO]: xRyleigh[/         ip          ] logged in with entity id 641 at ([AstroSMP]-7.5, 80.0, 4.5)
[16:30:23] [Craft Scheduler Thread - 15 - ODailyQuests/INFO]: [O'DailyQuests] xRyleigh's quests have been loaded.
[16:30:31] [Async Chat Thread - #1/INFO]:                chat               
[16:30:35] [Server thread/INFO]: pikatntyt issued server command: /mv
[16:30:36] [Async Chat Thread - #1/INFO]:         chat         
[16:30:43] [Async Chat Thread - #1/INFO]:              chat              
[16:30:44] [Async Chat Thread - #1/INFO]:               chat               
[16:30:48] [Async Chat Thread - #1/INFO]:                    chat                   
[16:30:50] [Async Chat Thread - #1/INFO]:        chat        
[16:30:53] [Async Chat Thread - #1/INFO]:                chat                
[16:30:57] [Server thread/INFO]: xRyleigh issued server command: /mvregen
[16:30:58] [Async Chat Thread - #1/INFO]:         chat         
[16:31:04] [Server thread/INFO]: xRyleigh issued server command: /mvregen AstroSMP
[16:31:08] [Server thread/INFO]: pikatntyt issued server command: /mv regen
[16:31:11] [Server thread/INFO]: xRyleigh issued server command: /mv confirm
[16:31:11] [Server thread/WARN]: [Multiverse-Core] World 'AstroSMP' could not be unloaded from Bukkit. Is it a default world?
[16:31:11] [Server thread/ERROR]: [Multiverse-Core] Unable to regen world as world cannot be deleted.
[16:31:13] [Server thread/INFO]: xRyleigh issued server command: /mvregen AstroSMP
[16:31:14] [Server thread/INFO]: xRyleigh issued server command: /mv confirm
[16:31:14] [Server thread/WARN]: [Multiverse-Core] World 'AstroSMP' could not be unloaded from Bukkit. Is it a default world?
[16:31:14] [Server thread/ERROR]: [Multiverse-Core] Unable to regen world as world cannot be deleted.
[16:31:16] [Server thread/INFO]: xRyleigh issued server command: /mvregen AstroSMP
[16:31:16] [Server thread/INFO]: xRyleigh issued server command: /mv confirm
[16:31:16] [Server thread/WARN]: [Multiverse-Core] World 'AstroSMP' could not be unloaded from Bukkit. Is it a default world?
[16:31:16] [Server thread/ERROR]: [Multiverse-Core] Unable to regen world as world cannot be deleted.
[16:31:23] [Async Chat Thread - #1/INFO]:                    chat                    
[16:31:23] [Server thread/INFO]: pikatntyt issued server command: /mv regen world -s 2625893924514374789
[16:31:27] [Server thread/INFO]: xRyleigh issued server command: /mvregen AstroSMP -s
[16:31:29] [Async Chat Thread - #1/INFO]:                    chat                    
[16:31:30] [Server thread/INFO]: xRyleigh issued server command: /mvregen AstroSMP -s
[16:31:30] [Server thread/INFO]: pikatntyt issued server command: /mv confirm
[16:31:30] [Server thread/INFO]: [Multiverse-Core] World 'world' was unloaded from Multiverse.
[16:31:31] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[16:31:31] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[16:31:31] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[16:31:31] [Server thread/INFO]: [ChunkHolderManager] Saved 880 block chunks, 0 entity chunks, 0 poi chunks in world 'world' in 0.16s
[16:31:31] [Server thread/INFO]: [Multiverse-Core] World 'world' was unloaded from Bukkit.
[16:31:31] [Server thread/INFO]: [Multiverse-Core] World 'world' was DELETED.
[16:31:31] [Server thread/ERROR]: No key layers in MapLike[{}]
[16:31:31] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[16:31:31] [Server thread/INFO]: Time elapsed: 55 ms
[16:31:35] [Server thread/INFO]: pikatntyt issued server command: /gamemode adventure
[16:31:36] [Server thread/INFO]: xRyleigh issued server command: /gmc
[16:31:38] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[16:31:42] [Server thread/INFO]: pikatntyt issued server command: /seed
[16:31:43] [Server thread/INFO]: xRyleigh issued server command: /flyspeed 10
[16:31:46] [Async Chat Thread - #1/INFO]:              chat             
[16:31:58] [Async Chat Thread - #1/INFO]:               chat               
[16:32:00] [Async Chat Thread - #1/INFO]:            chat            
[16:32:01] [Async Chat Thread - #1/INFO]:         chat         
[16:32:04] [Server thread/INFO]: pikatntyt issued server command: /tp 0 73 0
[16:32:12] [Async Chat Thread - #1/INFO]:                           chat                          
[16:32:14] [Server thread/INFO]: pikatntyt issued server command: //schem load spawn4
[16:32:14] [Server thread/INFO]: xRyleigh issued server command: /mv list
[16:32:16] [Server thread/INFO]: pikatntyt issued server command: //paste
[16:32:16] [AsyncNotifyKeyedQueue - 0/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightStarlightRelighterFactory as relighter factory.
[16:32:26] [Server thread/INFO]: pikatntyt issued server command: /mv list
[16:32:27] [Server thread/INFO]: xRyleigh issued server command: /mvremove world_nether
[16:32:27] [Server thread/INFO]: [Multiverse-Core] World 'world_nether' was unloaded from Multiverse.
[16:32:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[16:32:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[16:32:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[16:32:28] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 14 entity chunks, 0 poi chunks in world 'world_nether' in 0.00s
[16:32:28] [Server thread/INFO]: [Multiverse-Core] World 'world_nether' was unloaded from Bukkit.
[16:32:28] [Server thread/INFO]: [Multiverse-Core] World 'world_nether' was removed from config.yml
[16:32:30] [Server thread/INFO]: xRyleigh issued server command: /mvremove world
[16:32:30] [Server thread/INFO]: [Multiverse-Core] World 'world' was unloaded from Multiverse.
[16:32:30] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[16:32:30] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[16:32:30] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[16:32:30] [Server thread/INFO]: [ChunkHolderManager] Saved 1496 block chunks, 0 entity chunks, 0 poi chunks in world 'world' in 0.26s
[16:32:30] [Server thread/INFO]: [Multiverse-Core] World 'world' was unloaded from Bukkit.
[16:32:30] [Server thread/INFO]: [Multiverse-Core] World 'world' was removed from config.yml
[16:32:38] [Server thread/INFO]: xRyleigh issued server command: /mvremove world_the_end
[16:32:38] [Server thread/INFO]: [Multiverse-Core] World 'world_the_end' was unloaded from Multiverse.
[16:32:38] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[16:32:38] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[16:32:38] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[16:32:38] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 46 entity chunks, 0 poi chunks in world 'world_the_end' in 0.00s
[16:32:38] [Server thread/INFO]: [Multiverse-Core] World 'world_the_end' was unloaded from Bukkit.
[16:32:38] [Server thread/INFO]: [Multiverse-Core] World 'world_the_end' was removed from config.yml
[16:32:38] [Server thread/INFO]: pikatntyt issued server command: /mv tp world
[16:32:39] [Server thread/INFO]: pikatntyt issued server command: /mv tp world
[16:32:41] [Server thread/INFO]: pikatntyt issued server command: /mv tp world
[16:32:51] [Async Chat Thread - #1/INFO]:                     chat                     
[16:33:05] [Server thread/INFO]: [CombatLogX] Using non-NMS Paper EntityHandler
[16:33:07] [Server thread/INFO]: pikatntyt issued server command: /mv tp AstroSMP
[16:33:10] [Server thread/INFO]: pikatntyt issued server command: /mvconfirm
[16:33:19] [Async Chat Thread - #1/INFO]:                   chat                   
[16:33:26] [Server thread/INFO]: xRyleigh issued server command: /rg reload
[16:33:27] [Async Chat Thread - #1/INFO]:                  chat                 
[16:33:30] [Async Chat Thread - #1/INFO]:                  chat                  
[16:33:33] [Async Chat Thread - #1/INFO]:                chat               
[16:33:34] [Async Chat Thread - #1/INFO]:               chat              
[16:33:45] [Server thread/INFO]: xRyleigh issued server command: /rg list
[16:34:00] [Server thread/INFO]: xRyleigh issued server command: /world AstroSMP
[16:34:02] [Async Chat Thread - #1/INFO]:                      chat                     
[16:34:12] [Async Chat Thread - #1/INFO]:                  chat                  
[16:34:16] [Server thread/INFO]: pikatntyt issued server command: /mv listt
[16:34:17] [Server thread/INFO]: pikatntyt issued server command: /mv list
[16:34:23] [Async Chat Thread - #1/INFO]:           chat           
[16:34:38] [Async Chat Thread - #1/INFO]:                           chat                           
[16:34:39] [Async Chat Thread - #1/INFO]:          chat         
[16:34:44] [Async Chat Thread - #1/INFO]:              chat              
[16:34:51] [Async Chat Thread - #1/INFO]:             chat            
[16:34:54] [Server thread/INFO]: xRyleigh issued server command: /tp xRyleigh -39, -64, 20
[16:34:56] [Async Chat Thread - #1/INFO]:              chat             
[16:34:56] [Server thread/INFO]: xRyleigh issued server command: /tp xRyleigh -39, -64, 20
[16:35:00] [Server thread/INFO]: xRyleigh issued server command: /tp xRyleigh -39 -64 20
[16:35:02] [Server thread/INFO]: xRyleigh issued server command: /gmc
[16:35:05] [Server thread/INFO]: xRyleigh issued server command: /asvc
[16:35:08] [Server thread/INFO]: xRyleigh issued server command: /ascend
[16:35:09] [Server thread/INFO]: xRyleigh issued server command: /ascend
[16:35:10] [Server thread/INFO]: xRyleigh issued server command: /ascend
[16:35:11] [Server thread/INFO]: xRyleigh issued server command: /ascend
[16:35:27] [Async Chat Thread - #1/INFO]:                              chat                             
[16:35:28] [Async Chat Thread - #1/INFO]:         chat         
[16:35:33] [Server thread/INFO]: xRyleigh issued server command: /flyspeed 1
[16:35:38] [Server thread/INFO]: xRyleigh issued server command: //wand
[16:35:45] [Server thread/INFO]: xRyleigh issued server command: /rg d Events
[16:35:48] [Server thread/INFO]: xRyleigh issued server command: /rg f events pvp deny
[16:35:50] [Server thread/INFO]: pikatntyt issued server command: /crate reload
[16:35:52] [Server thread/INFO]: xRyleigh issued server command: /rg f events block-break deny
[16:35:56] [Server thread/INFO]: xRyleigh issued server command: /rg f events block-place deny
[16:35:58] [Async Chat Thread - #1/INFO]:              chat             
[16:35:59] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[16:36:01] [Server thread/INFO]: xRyleigh issued server command: /rg priority events 1000
[16:36:05] [Async Chat Thread - #1/INFO]:          chat         
[16:36:29] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[16:36:37] [Async Chat Thread - #1/INFO]:                           chat                           
[16:36:40] [Async Chat Thread - #1/INFO]:              chat              
[16:36:45] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[16:36:59] [Async Chat Thread - #1/INFO]:                  chat                 
[16:37:14] [Server thread/INFO]: xRyleigh issued server command: /world AstroSMP
[16:37:51] [Async Chat Thread - #1/INFO]:          chat         
[16:38:02] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[16:38:03] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[16:38:03] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:38:17] [Server thread/INFO]: xRyleigh issued server command: /npc sel 3
[16:38:19] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[16:38:22] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[16:38:22] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:38:24] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:38:30] [Async Chat Thread - #1/INFO]:         chat         
[16:38:33] [Async Chat Thread - #1/INFO]:                   chat                  
[16:38:42] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[16:38:43] [Async Chat Thread - #1/INFO]:          chat         
[16:38:45] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[16:38:45] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:38:50] [Server thread/INFO]: pikatntyt issued server command: /pl
[16:38:52] [Async Chat Thread - #1/INFO]:          chat          
[16:39:04] [Async Chat Thread - #1/INFO]:            chat            
[16:39:22] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[16:39:23] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[16:39:23] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:39:30] [Server thread/INFO]: pikatntyt issued server command: /npc create
[16:39:32] [Server thread/INFO]: pikatntyt issued server command: /npc create test
[16:39:39] [Server thread/INFO]: pikatntyt issued server command: /npc remove test
[16:39:47] [Async Chat Thread - #1/INFO]:          chat         
[16:39:52] [Async Chat Thread - #1/INFO]:                  chat                  
[16:40:06] [Async Chat Thread - #1/INFO]:                      chat                      
[16:40:08] [Server thread/INFO]: pikatntyt issued server command: /gamemode spectator
[16:40:19] [Server thread/INFO]: pikatntyt issued server command: /tp xRyleigh
[16:40:21] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[16:40:34] [Server thread/INFO]: pikatntyt issued server command: /npc moveto
[16:40:38] [Server thread/INFO]: xRyleigh issued server command: /dh reload
[16:40:38] [Craft Scheduler Thread - 34 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[16:40:38] [Craft Scheduler Thread - 34 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[16:40:40] [Server thread/INFO]: pikatntyt issued server command: /npc select --range
[16:40:48] [Server thread/INFO]: pikatntyt issued server command: /npc select &aQuest NPC
[16:40:55] [Server thread/INFO]: pikatntyt issued server command: /npc select --range 100
[16:41:02] [Server thread/INFO]: pikatntyt issued server command: /npc moveto
[16:41:05] [Server thread/INFO]: xRyleigh issued server command: /npc sel
[16:41:07] [Server thread/INFO]: xRyleigh issued server command: /npc sel 3
[16:41:08] [Server thread/INFO]: pikatntyt issued server command: /npc moveto here
[16:41:09] [Server thread/INFO]: xRyleigh issued server command: /npc tpto
[16:41:15] [Server thread/INFO]: xRyleigh issued server command: /npc tpto xryleigh
[16:41:23] [Server thread/INFO]: xRyleigh issued server command: /npc tpto xryleigh 3
[16:41:26] [Server thread/INFO]: xRyleigh issued server command: /gmsp
[16:41:27] [Server thread/INFO]: pikatntyt issued server command: /npc moveto 7.5 65 53.5
[16:41:29] [Server thread/INFO]: xRyleigh issued server command: /ascend
[16:41:31] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[16:41:31] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[16:41:31] [Server thread/INFO]: pikatntyt issued server command: /quests
[16:41:31] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[16:41:31] [Server thread/INFO]: xRyleigh issued server command: /ascend
[16:41:35] [Async Chat Thread - #2/INFO]:                chat                
[16:41:38] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[16:41:38] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[16:41:38] [Server thread/INFO]: pikatntyt issued server command: /quests
[16:41:39] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:41:41] [Server thread/INFO]: xRyleigh issued server command: /gmc
[16:41:45] [Server thread/INFO]: pikatntyt issued server command: /citizens save
[16:41:46] [Server thread/INFO]: xRyleigh issued server command: /gmc
[16:41:48] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:41:54] [Server thread/INFO]: xRyleigh issued server command: /npc list
[16:42:01] [Server thread/INFO]: xRyleigh issued server command: /npc sel 4
[16:42:03] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[16:42:03] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[16:42:03] [Server thread/INFO]: pikatntyt issued server command: /quests
[16:42:05] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:42:25] [Async Chat Thread - #2/INFO]:                     chat                     
[16:42:28] [Server thread/INFO]: xRyleigh issued server command: /npc sel 2
[16:42:31] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:42:41] [Async Chat Thread - #2/INFO]:                    chat                   
[16:42:48] [Async Chat Thread - #2/INFO]:                     chat                     
[16:43:21] [Server thread/INFO]: pikatntyt issued server command: /worldguard reload
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP) TNT ignition is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP) Lighters are PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP) Lava fire is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP) Fire spread is UNRESTRICTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP'
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) TNT ignition is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Lighters are PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Lava fire is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Fire spread is UNRESTRICTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP_nether'
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) TNT ignition is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Lighters are PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Lava fire is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Fire spread is UNRESTRICTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP_the_end'
[16:43:21] [Server thread/INFO]: [WorldGuard] (Events) TNT ignition is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (Events) Lighters are PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (Events) Lava fire is PERMITTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] (Events) Fire spread is UNRESTRICTED.
[16:43:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Events'
[16:43:21] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:43:31] [Async Chat Thread - #2/INFO]:         chat         
[16:43:37] [Async Chat Thread - #2/INFO]:              chat             
[16:44:14] [Server thread/INFO]: pikatntyt issued server command: /worldguard reload
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP) TNT ignition is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP) Lighters are PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP) Lava fire is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP) Fire spread is UNRESTRICTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP'
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) TNT ignition is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Lighters are PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Lava fire is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_nether) Fire spread is UNRESTRICTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP_nether'
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) TNT ignition is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Lighters are PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Lava fire is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (AstroSMP_the_end) Fire spread is UNRESTRICTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AstroSMP_the_end'
[16:44:14] [Server thread/INFO]: [WorldGuard] (Events) TNT ignition is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (Events) Lighters are PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (Events) Lava fire is PERMITTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] (Events) Fire spread is UNRESTRICTED.
[16:44:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Events'
[16:44:14] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:44:14] [Server thread/WARN]: [WorldGuard] Failed to parse flag 'spawn' with value '{AstroSMP=AstroSMP, x=17.5, y=65.0, z=76.5, pitch=1.8000576, yaw=-179.84106}'
[16:44:17] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[16:44:17] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[16:44:19] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[16:44:19] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:44:21] [Async Chat Thread - #2/INFO]:         chat         
[16:44:23] [Async Chat Thread - #2/INFO]:            chat           
[16:44:39] [Server thread/INFO]: pikatntyt issued server command: /butcher -1
[16:44:55] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[16:44:59] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[16:44:59] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[16:45:00] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 2 spawn
[16:45:01] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 3 spawn
[16:45:01] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 4 spawn
[16:45:01] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 5 spawn
[16:45:01] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 5 spawn
[16:45:01] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 6 spawn
[16:45:02] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 5 spawn
[16:45:16] [Server thread/INFO]: pikatntyt issued server command: /rg flag -w "AstroSMP" -h 5 spawn greeting-title &aEntering &fspawn.
[16:45:26] [Server thread/INFO]: pikatntyt issued server command: /rg flag -w "AstroSMP" -h 5 spawn farewell-title &cLeaving &fspawn
[16:45:29] [Server thread/INFO]: xRyleigh issued server command: /npc list
[16:45:29] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[16:45:31] [Server thread/INFO]: pikatntyt issued server command: /rg flag -w "AstroSMP" -h 5 spawn farewell-title &cLeaving &fspawn.
[16:45:33] [Server thread/INFO]: xRyleigh issued server command: /npc sel 2
[16:45:35] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:45:46] [Server thread/INFO]: pikatntyt issued server command: /day
[16:45:58] [Server thread/INFO]: xRyleigh issued server command: /npc list
[16:45:59] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[16:46:01] [Server thread/INFO]: xRyleigh issued server command: /npc sel 4
[16:46:03] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:46:13] [Server thread/INFO]: pikatntyt issued server command: /seed
[16:46:15] [User Authenticator #1/INFO]: UUID of player Kryliie2 is 5176dd5f-3a99-4487-9e91-fc06bf400e87
[16:46:15] [Server thread/INFO]: Disconnecting Kryliie2 (/73.152.52.150:50271): The server is currently under maintenance!
Try again later!
[16:46:15] [Server thread/INFO]: Kryliie2 (/73.152.52.150:50271) lost connection: The server is currently under maintenance!
Try again later!
[16:46:25] [Async Chat Thread - #4/INFO]:                    chat                   
[16:46:30] [Async Chat Thread - #4/INFO]:         chat        
[16:46:36] [Async Chat Thread - #4/INFO]:         chat         
[16:47:02] [Async Chat Thread - #4/INFO]:                              chat                              
[16:47:09] [Async Chat Thread - #4/INFO]:          chat          
[16:47:14] [Async Chat Thread - #4/INFO]:                     chat                     
[16:47:18] [Async Chat Thread - #5/INFO]:              chat             
[16:47:22] [Server thread/INFO]: xRyleigh issued server command: /npc sel
[16:47:26] [Server thread/INFO]: xRyleigh issued server command: /npc tphere
[16:47:40] [User Authenticator #2/INFO]: UUID of player xyluvuvuvuvuvuvu is 93c1059a-83c4-4f6b-bf6b-94597ef33d12
[16:47:40] [Server thread/INFO]: Disconnecting xyluvuvuvuvuvuvu (/67.164.77.250:50492): The server is currently under maintenance!
Try again later!
[16:47:40] [Server thread/INFO]: xyluvuvuvuvuvuvu (/67.164.77.250:50492) lost connection: The server is currently under maintenance!
Try again later!
[16:48:03] [Async Chat Thread - #4/INFO]:                chat                
[16:48:29] [Async Chat Thread - #4/INFO]:         chat         
[16:48:30] [Server thread/INFO]: pikatntyt issued server command: /pl
[16:48:49] [Async Chat Thread - #4/INFO]:                            chat                            
[16:48:51] [Server thread/INFO]: xRyleigh issued server command: /flyspeed 10
[16:48:56] [Async Chat Thread - #4/INFO]:              chat              
[16:49:07] [Async Chat Thread - #4/INFO]:         chat         
[16:49:11] [Async Chat Thread - #4/INFO]:                  chat                  
[16:49:13] [Async Chat Thread - #4/INFO]:         chat         
[16:49:25] [Async Chat Thread - #4/INFO]:                     chat                     
[16:49:44] [Server thread/INFO]: xRyleigh issued server command: /seed
[16:49:52] [Async Chat Thread - #4/INFO]:                chat                
[16:50:07] [Async Chat Thread - #4/INFO]:                     chat                    
[16:50:09] [Async Chat Thread - #4/INFO]:            chat            
[16:50:13] [Async Chat Thread - #4/INFO]:          chat         
[16:50:21] [Async Chat Thread - #4/INFO]:             chat             
[16:50:24] [Server thread/INFO]: xRyleigh issued server command: /flyspeed
[16:50:25] [Server thread/INFO]: xRyleigh issued server command: /flyspeed 1
[16:50:26] [Async Chat Thread - #4/INFO]:                           chat                          
[16:50:29] [Async Chat Thread - #4/INFO]:           chat          
[16:50:30] [Async Chat Thread - #4/INFO]:         chat        
[16:51:13] [Async Chat Thread - #4/INFO]:                                     chat                                    
[16:51:39] [Async Chat Thread - #4/INFO]:           chat          
[16:51:41] [Async Chat Thread - #4/INFO]:         chat         
[16:51:47] [Async Chat Thread - #4/INFO]:                               chat                               
[16:52:19] [Async Chat Thread - #4/INFO]:                                           chat                                           
[16:52:28] [Async Chat Thread - #4/INFO]:                  chat                  
[16:52:29] [Async Chat Thread - #4/INFO]:          chat         
[16:52:33] [Async Chat Thread - #4/INFO]:                    chat                    
[16:52:41] [Async Chat Thread - #4/INFO]:            chat            
[16:52:45] [Async Chat Thread - #4/INFO]:        chat        
[16:52:51] [Async Chat Thread - #4/INFO]:                           chat                          
[16:52:52] [Async Chat Thread - #4/INFO]:            chat           
[16:52:55] [Async Chat Thread - #4/INFO]:                   chat                   
[16:53:11] [Async Chat Thread - #4/INFO]:                      chat                     
[16:53:22] [Async Chat Thread - #5/INFO]:                                       chat                                       
[16:53:29] [Async Chat Thread - #5/INFO]:                           chat                           
[16:53:41] [Async Chat Thread - #5/INFO]:           chat           
[16:53:45] [Async Chat Thread - #5/INFO]:                      chat                      
[16:53:52] [Async Chat Thread - #5/INFO]:         chat         
[16:53:57] [Server thread/INFO]: pikatntyt issued server command: /maintenance reload
[16:54:03] [Async Chat Thread - #5/INFO]:                           chat                          
[16:54:04] [Server thread/INFO]: pikatntyt issued server command: /maintenance motd
[16:54:14] [Async Chat Thread - #5/INFO]:            chat           
[16:54:20] [Async Chat Thread - #5/INFO]:                       chat                      
[16:54:28] [Async Chat Thread - #5/INFO]:                    chat                    
[16:54:40] [Async Chat Thread - #5/INFO]:                       chat                      
[16:54:54] [Async Chat Thread - #5/INFO]:                          chat                         
[16:55:03] [Async Chat Thread - #5/INFO]:            chat            
[16:55:17] [Async Chat Thread - #5/INFO]:                                        chat                                       
[16:55:20] [Server thread/INFO]: pikatntyt issued server command: /maintenance reload
[16:55:27] [Async Chat Thread - #5/INFO]:          chat         
[16:55:30] [Server thread/INFO]: pikatntyt issued server command: /maintenance motd
[16:55:41] [Async Chat Thread - #5/INFO]:                         chat                         
[16:55:45] [Server thread/INFO]: xRyleigh issued server command: /maintenance motd
[16:55:56] [Async Chat Thread - #5/INFO]:                     chat                     
[16:56:02] [Async Chat Thread - #5/INFO]:         chat         
[16:56:05] [Async Chat Thread - #5/INFO]:                                    chat                                    
[16:56:09] [Async Chat Thread - #5/INFO]:                      chat                      
[16:56:20] [Async Chat Thread - #5/INFO]:                  chat                 
[16:56:25] [Async Chat Thread - #5/INFO]:                   chat                   
[16:56:31] [Server thread/INFO]: pikatntyt issued server command: /maintenance reload
[16:56:33] [Server thread/INFO]: pikatntyt issued server command: /maintenance motd
[16:56:36] [Async Chat Thread - #5/INFO]:          chat         
[16:56:37] [Server thread/INFO]: xRyleigh lost connection: Disconnected
[16:56:37] [Server thread/INFO]: xRyleigh left the game
[16:56:37] [Craft Scheduler Thread - 68 - ODailyQuests/INFO]: [O'DailyQuests] xRyleigh's data saved.
[16:56:50] [Server thread/INFO]: pikatntyt issued server command: /maintenance reload
[16:56:51] [Server thread/INFO]: pikatntyt issued server command: /maintenance motd
[16:57:16] [Server thread/INFO]: pikatntyt issued server command: /day
[16:57:25] [User Authenticator #3/INFO]: UUID of player xRyleigh is d75c4fc3-148b-474f-be27-b15f2ca56001
[16:57:25] [Server thread/INFO]: xRyleigh joined the game
[16:57:25] [Server thread/INFO]: xRyleigh[/         ip          ] logged in with entity id 28301 at ([AstroSMP]-4.36863101671332, 84.70638665075164, 32.48665940592762)
[16:57:26] [Craft Scheduler Thread - 74 - ODailyQuests/INFO]: [O'DailyQuests] xRyleigh's quests have been loaded.
[16:57:50] [Server thread/INFO]: pikatntyt issued server command: /backup
[16:58:02] [Async Chat Thread - #5/INFO]:               chat              
[16:58:04] [Async Chat Thread - #5/INFO]:                chat               
[16:58:06] [Async Chat Thread - #5/INFO]:         chat         
[16:58:06] [Async Chat Thread - #5/INFO]:            chat           
[16:58:10] [Async Chat Thread - #5/INFO]:           chat           
[16:58:12] [Server thread/INFO]: pikatntyt issued server command: /tp x
[16:58:16] [Async Chat Thread - #5/INFO]:             chat             
[16:58:19] [Async Chat Thread - #5/INFO]:         chat         
[16:58:21] [Async Chat Thread - #5/INFO]:                           chat                          
[16:58:29] [Async Chat Thread - #5/INFO]:                                 chat                                 
[16:58:35] [Async Chat Thread - #5/INFO]:                          chat                         
[16:58:52] [Async Chat Thread - #5/INFO]:                      chat                      
[16:58:59] [Async Chat Thread - #5/INFO]:          chat         
[16:59:03] [Async Chat Thread - #5/INFO]:                    chat                    
[16:59:05] [Async Chat Thread - #5/INFO]:           chat           
[16:59:24] [Async Chat Thread - #6/INFO]:                 chat                
[16:59:26] [Async Chat Thread - #6/INFO]:         chat        
[17:00:11] [Async Chat Thread - #6/INFO]:                                                      chat                                                      
[17:00:30] [Server thread/INFO]: pikatntyt issued server command: /tp xRyleigh
[17:02:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[17:02:57] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[17:02:57] [Server thread/INFO]: pikatntyt issued server command: /quests
[17:03:09] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:03:23] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:03:42] [Server thread/INFO]: xRyleigh issued server command: /setspawn
[17:03:44] [Server thread/INFO]: xRyleigh issued server command: /spawn
[17:03:46] [Async Chat Thread - #7/INFO]:            chat           
[17:03:48] [Server thread/INFO]: pikatntyt issued server command: /spawn
[17:03:54] [Async Chat Thread - #7/INFO]:                chat               
[17:03:58] [Async Chat Thread - #7/INFO]:          chat         
[17:04:02] [Async Chat Thread - #7/INFO]:        chat        
[17:04:09] [Async Chat Thread - #7/INFO]:                       chat                      
[17:04:09] [Server thread/INFO]: pikatntyt issued server command: /kill
[17:04:11] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:04:11] [Server thread/INFO]: pikatntyt died
[17:04:16] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:04:16] [Server thread/INFO]: pikatntyt died
[17:04:20] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:04:20] [Server thread/INFO]: pikatntyt died
[17:04:27] [Async Chat Thread - #7/INFO]:              chat              
[17:04:29] [Async Chat Thread - #7/INFO]:             chat             
[17:04:35] [Async Chat Thread - #7/INFO]:                       chat                      
[17:04:43] [Async Chat Thread - #7/INFO]:                 chat                
[17:04:47] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:04:59] [Async Chat Thread - #7/INFO]:               chat              
[17:04:59] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:05:03] [Server thread/INFO]: xRyleigh issued server command: /kill pikatntyt
[17:05:03] [Server thread/INFO]: pikatntyt died
[17:05:12] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:05:12] [Server thread/INFO]: xRyleigh died
[17:05:13] [Server thread/INFO]: pikatntyt issued server command: /spawn
[17:05:17] [Server thread/INFO]: pikatntyt issued server command: /setworldspawn
[17:05:17] [Server thread/INFO]: [pikatntyt: Set the world spawn point to 17, 65, 75 [0.0]]
[17:05:19] [Server thread/INFO]: pikatntyt issued server command: /kill
[17:05:22] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:05:22] [Server thread/INFO]: pikatntyt died
[17:05:30] [Server thread/INFO]: xRyleigh issued server command: /gamerule doImmediateRespawn true
[17:05:30] [Server thread/INFO]: [xRyleigh: Gamerule doImmediateRespawn is now set to: true]
[17:05:33] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:05:33] [Server thread/INFO]: xRyleigh died
[17:05:46] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:05:48] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:05:48] [Server thread/INFO]: xRyleigh died
[17:05:50] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:05:50] [Server thread/INFO]: xRyleigh died
[17:06:02] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[17:06:03] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:06:03] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 2 spawn
[17:06:04] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 3 spawn
[17:06:04] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:06:04] [Server thread/INFO]: xRyleigh died
[17:06:05] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 4 spawn
[17:06:06] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:06:06] [Server thread/INFO]: xRyleigh died
[17:06:07] [Async Chat Thread - #9/INFO]:         chat         
[17:06:09] [Server thread/INFO]: pikatntyt issued server command: /spawn
[17:06:12] [Server thread/INFO]: pikatntyt issued server command: /rg flag -w "AstroSMP" -h 4 spawn spawn here
[17:06:14] [Async Chat Thread - #9/INFO]:          chat          
[17:06:20] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:06:20] [Server thread/INFO]: pikatntyt died
[17:06:22] [User Authenticator #4/INFO]: UUID of player Retroless is 2021dd58-cc54-4a06-9d2c-ca1a2a2b95e5
[17:06:22] [Server thread/INFO]: Disconnecting Retroless (/68.39.116.36:54416): The server is currently under maintenance!
Try again later!
[17:06:23] [Server thread/INFO]: Retroless (/68.39.116.36:54416) lost connection: The server is currently under maintenance!
Try again later!
[17:06:23] [Async Chat Thread - #9/INFO]:          chat         
[17:06:29] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[17:06:36] [Server thread/INFO]: pikatntyt issued server command: /spawn
[17:06:58] [Server thread/INFO]: pikatntyt issued server command: /rg flag __global__ spawn here
[17:06:59] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[17:07:02] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:07:02] [Server thread/INFO]: pikatntyt died
[17:07:04] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:07:16] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:07:18] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:07:18] [Server thread/INFO]: xRyleigh died
[17:07:22] [Async Chat Thread - #9/INFO]:           chat           
[17:07:23] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:07:23] [Server thread/INFO]: pikatntyt died
[17:07:25] [Async Chat Thread - #9/INFO]:         chat         
[17:07:27] [Async Chat Thread - #9/INFO]:         chat         
[17:07:30] [Async Chat Thread - #9/INFO]:                chat               
[17:07:35] [Async Chat Thread - #9/INFO]:            chat            
[17:07:42] [Async Chat Thread - #9/INFO]:                  chat                 
[17:07:46] [Async Chat Thread - #9/INFO]:           chat           
[17:07:48] [Server thread/INFO]: pikatntyt has made the advancement [Sweet Dreams]
[17:07:52] [Server thread/INFO]: pikatntyt issued server command: /kill pikatntyt
[17:07:52] [Server thread/INFO]: pikatntyt died
[17:07:56] [Async Chat Thread - #9/INFO]:         chat         
[17:08:01] [Async Chat Thread - #9/INFO]:                chat               
[17:08:01] [Async Chat Thread - #9/INFO]:                     chat                    
[17:08:24] [Server thread/INFO]: pikatntyt issued server command: /day
[17:09:06] [Server thread/INFO]: xRyleigh issued server command: /sk reload scripts
[17:09:08] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:09:08] [Server thread/INFO]: xRyleigh died
[17:09:18] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:09:18] [Server thread/INFO]: xRyleigh died
[17:09:19] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:09:19] [Server thread/INFO]: xRyleigh died
[17:09:22] [Async Chat Thread - #11/INFO]:             chat            
[17:09:24] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[17:09:26] [Server thread/INFO]: xRyleigh issued server command: /kill xRyleigh
[17:09:26] [Server thread/INFO]: xRyleigh died
[17:09:35] [Server thread/INFO]: pikatntyt issued server command: /ex
[17:09:38] [Async Chat Thread - #11/INFO]:               chat              
[17:09:39] [Async Chat Thread - #11/INFO]:           chat          
[17:09:40] [Server thread/INFO]: pikatntyt issued server command: /ec
[17:09:44] [Async Chat Thread - #11/INFO]:          chat         
[17:09:56] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 2
[17:10:02] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 3
[17:10:09] [Server thread/INFO]: pikatntyt issued server command: /suicide
[17:10:09] [Server thread/INFO]: pikatntyt died
[17:10:19] [Server thread/INFO]: pikatntyt issued server command: /suicide
[17:10:19] [Server thread/INFO]: pikatntyt died
[17:10:23] [Server thread/INFO]: pikatntyt issued server command: /suicide
[17:10:23] [Server thread/INFO]: pikatntyt died
[17:10:26] [Async Chat Thread - #11/INFO]:          chat          
[17:10:27] [Async Chat Thread - #11/INFO]:        chat        
[17:10:32] [Server thread/INFO]: xRyleigh issued server command: /spawn
[17:10:35] [Async Chat Thread - #11/INFO]:            chat           
[17:10:35] [Async Chat Thread - #11/INFO]:               chat               
[17:10:35] [Async Chat Thread - #11/INFO]:        chat        
[17:10:44] [Async Chat Thread - #11/INFO]:               chat               
[17:10:55] [Async Chat Thread - #11/INFO]:         chat         
[17:11:10] [Server thread/INFO]: pikatntyt issued server command: /invsee xRyleigh
[17:11:32] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 1
[17:11:39] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 2
[17:11:41] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 3
[17:11:47] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 1
[17:11:49] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 2
[17:11:52] [Server thread/INFO]: pikatntyt issued server command: /ie custommodeldata 3
[17:11:57] [Server thread/INFO]: pikatntyt issued server command: /ec
[17:12:10] [Server thread/INFO]: xRyleigh issued server command: //replacenear 10 mangrove_roots air
[17:12:16] [Server thread/INFO]: xRyleigh issued server command: //replacenear 10 mangrove_log air
[17:12:19] [Server thread/INFO]: xRyleigh issued server command: //replacenear 10 mangrove_wood air
[17:12:23] [Server thread/INFO]: xRyleigh issued server command: //replacenear 10 mangrove_wood air
[17:12:25] [Server thread/INFO]: xRyleigh issued server command: //replacenear 10 mangrove_wood air
[17:12:29] [Server thread/INFO]: pikatntyt issued server command: //fill water
[17:12:32] [Server thread/INFO]: pikatntyt issued server command: //fill water 50
[17:12:33] [Server thread/INFO]: pikatntyt issued server command: //fill water 50
[17:12:35] [Server thread/INFO]: pikatntyt issued server command: //fill water 50
[17:12:38] [Server thread/INFO]: pikatntyt issued server command: //fill water 50
[17:12:40] [Server thread/INFO]: pikatntyt issued server command: //fill water 50
[17:12:45] [Server thread/INFO]: pikatntyt issued server command: //fill water 50
[17:12:52] [Server thread/INFO]: pikatntyt issued server command: /gamemode spectator
[17:13:00] [Server thread/INFO]: pikatntyt issued server command: /effect give pikatntyt minecraft:night_vision infinite 2 true
[17:13:00] [Server thread/INFO]: [pikatntyt: Applied effect Night Vision to pikatntyt]
[17:13:03] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[17:13:07] [Server thread/INFO]: pikatntyt issued server command: /effect clear p
[17:13:07] [Server thread/INFO]: pikatntyt issued server command: /effect clear pikatntyt
[17:13:07] [Server thread/INFO]: [pikatntyt: Removed every effect from pikatntyt]
[17:13:20] [Async Chat Thread - #13/INFO]:                       chat                      
[17:13:25] [Async Chat Thread - #13/INFO]:         chat        
[17:13:27] [Async Chat Thread - #13/INFO]:           chat           
[17:13:28] [Async Chat Thread - #13/INFO]:                                     chat                                     
[17:13:38] [Async Chat Thread - #13/INFO]:                           chat                          
[17:13:39] [Async Chat Thread - #13/INFO]:                  chat                  
[17:13:39] [Async Chat Thread - #13/INFO]:            chat            
[17:13:45] [Async Chat Thread - #13/INFO]:          chat          
[17:13:46] [Async Chat Thread - #13/INFO]:            chat            
[17:13:50] [Async Chat Thread - #13/INFO]:          chat         
[17:13:54] [Async Chat Thread - #13/INFO]:                       chat                      
[17:13:58] [Async Chat Thread - #13/INFO]:                                 chat                                
[17:14:22] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[17:14:22] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[17:14:22] [Server thread/INFO]: pikatntyt issued server command: /quests
[17:14:53] [Async Chat Thread - #13/INFO]:                         chat                        
[17:14:59] [Async Chat Thread - #13/INFO]:                   chat                  
[17:15:08] [Async Chat Thread - #13/INFO]:            chat            
[17:15:09] [Async Chat Thread - #13/INFO]:        chat        
[17:15:33] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[17:15:36] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 2 spawn
[17:15:37] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 3 spawn
[17:15:38] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 4 spawn
[17:15:38] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 5 spawn
[17:15:38] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 6 spawn
[17:17:42] [Server thread/INFO]: pikatntyt issued server command: /clx version
[17:17:51] [Server thread/INFO]: /clx help
[17:17:52] [Server thread/INFO]: Java Version: 21.0.3
[17:17:52] [Server thread/INFO]: Java Vendor: Eclipse Adoptium
[17:17:52] [Server thread/INFO]: Java URL: N/A
[17:17:52] [Server thread/INFO]: Server Version: git-Paper-496 (MC: 1.20.4)
[17:17:52] [Server thread/INFO]: Bukkit Version: 1.20.4-R0.1-SNAPSHOT
[17:17:52] [Server thread/INFO]: Minecraft Version: 1.20.4
[17:17:52] [Server thread/INFO]: NMS Version: 1_20_R3
[17:17:52] [Server thread/INFO]: Dependency Information:
[17:17:52] [Server thread/INFO]:  - AngelChest (not installed)
[17:17:52] [Server thread/INFO]:  - ASkyBlock (not installed)
[17:17:52] [Server thread/INFO]:  - BentoBox (not installed)
[17:17:52] [Server thread/INFO]:  - Citizens v2.0.33-SNAPSHOT (build 3399)
[17:17:52] [Server thread/INFO]:  - CMI (not installed)
[17:17:52] [Server thread/INFO]:  - CrackShot (not installed)
[17:17:52] [Server thread/INFO]:  - CrashClaim (not installed)
[17:17:52] [Server thread/INFO]:  - Essentials v2.20.1
[17:17:52] [Server thread/INFO]:  - FabledSkyBlock (not installed)
[17:17:52] [Server thread/INFO]:  - FeatherBoard (not installed)
[17:17:52] [Server thread/INFO]:  - FlagWar (not installed)
[17:17:52] [Server thread/INFO]:  - GriefDefender (not installed)
[17:17:52] [Server thread/INFO]:  - GriefPrevention (not installed)
[17:17:52] [Server thread/INFO]:  - HuskHomes (not installed)
[17:17:52] [Server thread/INFO]:  - HuskSync (not installed)
[17:17:52] [Server thread/INFO]:  - HuskTowns (not installed)
[17:17:52] [Server thread/INFO]:  - iDisguise (not installed)
[17:17:52] [Server thread/INFO]:  - IridiumSkyblock (not installed)
[17:17:52] [Server thread/INFO]:  - Kingdoms (not installed)
[17:17:52] [Server thread/INFO]:  - Konquest (not installed)
[17:17:52] [Server thread/INFO]:  - Lands (not installed)
[17:17:52] [Server thread/INFO]:  - LibsDisguises (not installed)
[17:17:52] [Server thread/INFO]:  - MarriageMaster (not installed)
[17:17:52] [Server thread/INFO]:  - MythicMobs (not installed)
[17:17:52] [Server thread/INFO]:  - PlaceholderAPI v2.11.5
[17:17:52] [Server thread/INFO]:  - PlayerParticles (not installed)
[17:17:52] [Server thread/INFO]:  - PreciousStones (not installed)
[17:17:52] [Server thread/INFO]:  - PremiumVanish (not installed)
[17:17:52] [Server thread/INFO]:  - ProtectionStones (not installed)
[17:17:52] [Server thread/INFO]:  - ProtocolLib (not installed)
[17:17:52] [Server thread/INFO]:  - RedProtect (not installed)
[17:17:52] [Server thread/INFO]:  - Residence (not installed)
[17:17:52] [Server thread/INFO]:  - Sentinel (not installed)
[17:17:52] [Server thread/INFO]:  - SuperiorSkyblock2 (not installed)
[17:17:52] [Server thread/INFO]:  - SuperVanish v6.2.18
[17:17:52] [Server thread/INFO]:  - Towny (not installed)
[17:17:52] [Server thread/INFO]:  - UltimateClaims (not installed)
[17:17:52] [Server thread/INFO]:  - uSkyBlock (not installed)
[17:17:52] [Server thread/INFO]:  - VanishNoPacket (not installed)
[17:17:52] [Server thread/INFO]:  - WorldGuard v7.0.9+5934e49
[17:17:52] [Server thread/INFO]:  - ViaVersion v4.10.0
[17:17:52] [Server thread/INFO]:  - BlueSlimeCore v2.9.4.377
[17:17:52] [Server thread/INFO]: CombatLogX by SirBlobman
[17:17:52] [Server thread/INFO]: Local Version: 11.4.0.1.1193
[17:17:52] [Server thread/INFO]: Remote Version: 11.4.0.1.1193
[17:17:52] [Server thread/INFO]: Enabled Expansions (4):
[17:17:52] [Server thread/INFO]:  - Boss Bar v17.1
[17:17:52] [Server thread/INFO]:  - LuckPerms Compatibility v17.1
[17:17:52] [Server thread/INFO]:  - PlaceholderAPI Compatibility v17.1
[17:17:52] [Server thread/INFO]:  - WorldGuard Compatibility v17.2
[17:18:24] [Server thread/INFO]: pikatntyt issued server command: /clx
[17:19:24] [Server thread/INFO]: pikatntyt issued server command: /gamemode spectator
[17:19:25] [Server thread/INFO]: pikatntyt issued server command: /gamemode survival
[17:19:27] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[17:19:31] [Server thread/INFO]: pikatntyt issued server command: /gamemode survival
[17:19:33] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[17:19:41] [Server thread/INFO]: pikatntyt issued server command: /gamemode survival
[17:19:51] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[17:22:44] [Async Chat Thread - #15/INFO]:              chat             
[17:22:45] [Async Chat Thread - #15/INFO]:         chat         
[17:22:49] [Async Chat Thread - #15/INFO]:                chat                
[17:22:50] [Async Chat Thread - #15/INFO]:          chat          
[17:22:52] [Async Chat Thread - #15/INFO]:                 chat                 
[17:22:55] [Async Chat Thread - #15/INFO]:                  chat                 
[17:23:01] [Async Chat Thread - #15/INFO]:          chat         
[17:23:02] [Async Chat Thread - #15/INFO]:               chat              
[17:23:32] [Async Chat Thread - #15/INFO]:                                   chat                                  
[17:23:51] [Async Chat Thread - #15/INFO]:                                     chat                                    
[17:23:56] [Async Chat Thread - #15/INFO]:          chat         
[17:24:15] [Async Chat Thread - #15/INFO]:                                        chat                                        
[17:24:22] [Async Chat Thread - #15/INFO]:                      chat                      
[17:24:43] [Async Chat Thread - #15/INFO]:                                                    chat                                                    
[17:24:52] [Async Chat Thread - #15/INFO]:                chat                
[17:25:07] [Async Chat Thread - #15/INFO]:          chat         
[17:26:12] [Async Chat Thread - #17/INFO]:             chat            
[17:26:19] [Async Chat Thread - #17/INFO]:        chat        
[17:31:42] [Async Chat Thread - #19/INFO]:                             chat                            
[17:31:45] [Async Chat Thread - #19/INFO]:            chat            
[17:31:46] [Async Chat Thread - #19/INFO]:          chat         
[17:31:46] [Async Chat Thread - #19/INFO]:         chat        
[17:31:50] [Async Chat Thread - #19/INFO]:         chat         
[17:31:58] [Async Chat Thread - #19/INFO]:                     chat                    
[17:37:23] [Async Chat Thread - #21/INFO]:          chat         
[17:37:25] [Server thread/INFO]: xRyleigh issued server command: /awdawd
[17:37:27] [Async Chat Thread - #21/INFO]:          chat          
[17:38:11] [User Authenticator #5/INFO]: UUID of player METEORINTO is d10649d3-b323-4b6a-9aad-38bf66cf81e8
[17:38:11] [Server thread/INFO]: Disconnecting METEORINTO (/200.217.93.49:52042): The server is currently under maintenance!
Try again later!
[17:38:11] [Server thread/INFO]: METEORINTO (/200.217.93.49:52042) lost connection: The server is currently under maintenance!
Try again later!
[17:41:32] [Async Chat Thread - #23/INFO]:         chat        
[17:42:51] [Async Chat Thread - #25/INFO]:         chat        
[17:43:02] [Async Chat Thread - #25/INFO]:                      chat                      
[17:43:02] [Async Chat Thread - #25/INFO]:        chat        
[17:43:03] [Async Chat Thread - #25/INFO]:        chat        
[17:44:38] [Async Chat Thread - #27/INFO]:         chat        
[17:51:26] [Server thread/WARN]: Player pikatntyt just tried to change non-editable sign
[17:51:26] [Server thread/WARN]: Player pikatntyt just tried to change non-editable sign
[17:51:27] [Server thread/WARN]: Player pikatntyt just tried to change non-editable sign
[17:52:22] [Server thread/INFO]: pikatntyt issued server command: /spawn
[17:58:06] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:particle.soul_escape
[17:58:11] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:particle.soul_escape player pikatntyt
[17:58:11] [Server thread/INFO]: [pikatntyt: Played sound minecraft:particle.soul_escape to pikatntyt]
[17:58:13] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:particle.soul_escape player pikatntyt
[17:58:13] [Server thread/INFO]: [pikatntyt: Played sound minecraft:particle.soul_escape to pikatntyt]
[17:58:19] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:entity.warden.tendril_clicks player pikatntyt
[17:58:19] [Server thread/INFO]: [pikatntyt: Played sound minecraft:entity.warden.tendril_clicks to pikatntyt]
[17:58:26] [Server thread/INFO]: pikatntyt issued server command: /playsound companion:music.game.battle_box_loop player pikatntyt
[17:58:26] [Server thread/INFO]: [pikatntyt: Played sound companion:music.game.battle_box_loop to pikatntyt]
[17:58:43] [Async Chat Thread - #29/INFO]:           chat          
[17:58:48] [Async Chat Thread - #30/INFO]:               chat               
[17:58:50] [Async Chat Thread - #30/INFO]:           chat          
[17:58:53] [Async Chat Thread - #30/INFO]:            chat           
[17:59:51] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:block.ancient_debris.step
[17:59:54] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:block.ancient_debris.step player pikatntyt
[17:59:54] [Server thread/INFO]: [pikatntyt: Played sound minecraft:block.ancient_debris.step to pikatntyt]
[18:00:01] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:ui.button.click player pikatntyt
[18:00:01] [Server thread/INFO]: [pikatntyt: Played sound minecraft:ui.button.click to pikatntyt]
[18:00:08] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:ui.cartography_table.take_result player pikatntyt
[18:00:08] [Server thread/INFO]: [pikatntyt: Played sound minecraft:ui.cartography_table.take_result to pikatntyt]
[18:00:16] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:ui.loom.select_pattern player pikatntyt
[18:00:16] [Server thread/INFO]: [pikatntyt: Played sound minecraft:ui.loom.select_pattern to pikatntyt]
[18:00:22] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:ui.loom.take_result player pikatntyt
[18:00:22] [Server thread/INFO]: [pikatntyt: Played sound minecraft:ui.loom.take_result to pikatntyt]
[18:00:27] [Server thread/INFO]: pikatntyt issued server command: /playsound minecraft:ui.loom.select_pattern player pikatntyt
[18:00:27] [Server thread/INFO]: [pikatntyt: Played sound minecraft:ui.loom.select_pattern to pikatntyt]
[18:01:41] [Server thread/INFO]: pikatntyt issued server command: /dh pages actions quests 1 RIGHT SOUND:ui_loom.select_pattern
[18:02:00] [Server thread/INFO]: pikatntyt issued server command: /dh pages actions quests 1 RIGHT SOUND:ui_loom.select_pattern:1:1
[18:02:10] [Server thread/INFO]: pikatntyt issued server command: /dh pages actions quests 1 RIGHT SOUND:ui_loom.select_pattern:1:1
[18:02:14] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT SOUND:ui_loom.select_pattern:1:1
[18:02:22] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests
[18:02:29] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT
[18:02:41] [Server thread/INFO]: pikatntyt issued server command: /dh page addactions quests 1 RIGHT SOUND:ui_loom.select_pattern:1:1
[18:02:45] [Server thread/INFO]: pikatntyt issued server command: /dh page addaction quests 1 RIGHT SOUND:ui_loom.select_pattern:1:1
[18:02:58] [Server thread/INFO]: pikatntyt issued server command: /stopsound
[18:02:59] [Server thread/INFO]: pikatntyt issued server command: /stopsound pikatntyt
[18:02:59] [Server thread/INFO]: [pikatntyt: Stopped all sounds]
[18:03:11] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT
[18:03:39] [Server thread/INFO]: pikatntyt issued server command: /dh page addaction quests 1 RIGHT SOUND:ui_loom.select_pattern
[18:03:57] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests
[18:03:59] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1
[18:04:01] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT
[18:04:04] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT 1
[18:04:07] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT
[18:04:24] [Server thread/INFO]: pikatntyt issued server command: /dh page removeaction quests 1 RIGHT 2
[18:04:26] [Server thread/INFO]: pikatntyt issued server command: /dh page removeaction quests 1 RIGHT 2
[18:04:28] [Server thread/INFO]: pikatntyt issued server command: /dh page actions quests 1 RIGHT
[18:06:34] [Server thread/INFO]: pikatntyt issued server command: /sun
[18:06:35] [Server thread/INFO]: pikatntyt issued server command: /day
[18:07:28] [Server thread/INFO]: pikatntyt issued server command: /mt whitelist
[18:07:39] [Server thread/INFO]: pikatntyt issued server command: /mt whitelist pikatntyt
[18:07:49] [Server thread/INFO]: pikatntyt issued server command: /mt add pikatntyt
[18:07:51] [Server thread/INFO]: pikatntyt issued server command: /mt add xRyleigh
[18:07:57] [Server thread/INFO]: pikatntyt issued server command: /mt add AvoidMyRevol
[18:08:01] [Server thread/INFO]: pikatntyt issued server command: /mt add hcm
[18:08:08] [Server thread/INFO]: pikatntyt issued server command: /mt motd
[18:08:29] [Server thread/INFO]: pikatntyt issued server command: /mt motd timer
[18:13:31] [Async Chat Thread - #31/INFO]:                                                       chat                                                      
[18:13:57] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:13:57] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:13:57] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:14:02] [Server thread/INFO]: [Essentials] Created a User for Quest NPC (80fd2fd0-93da-2c72-8276-f20563651726) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:14:03] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:14:03] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:14:03] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:14:15] [Server thread/INFO]: pikatntyt issued server command: /npc lookclose --range 5
[18:14:41] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:14:41] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:14:41] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:14:42] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:14:42] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:14:42] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:14:55] [Server thread/INFO]: [Essentials] Created a User for CIT-13b9e3eabfd0 (13b9e3ea-bfd0-2b05-9c4b-a273aef92c1e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:17:11] [Server thread/INFO]: pikatntyt issued server command: /npc create &eFramer
[18:17:14] [Server thread/INFO]: [Essentials] Created a User for Framer (1a7b2031-3067-2e83-9092-3516f9578977) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:17:22] [Server thread/INFO]: pikatntyt issued server command: /npc remove
[18:17:33] [Server thread/INFO]: pikatntyt issued server command: /npc create &eFarmer
[18:17:46] [Server thread/INFO]: pikatntyt issued server command: /npc skin player
[18:17:53] [Server thread/INFO]: pikatntyt issued server command: /npc skin hay
[18:17:57] [Server thread/INFO]: pikatntyt issued server command: /npc skin haybale
[18:18:10] [Server thread/INFO]: pikatntyt issued server command: /npc skin farmer
[18:18:11] [Server thread/INFO]: pikatntyt issued server command: /npc skin farmers
[18:18:19] [Server thread/INFO]: pikatntyt issued server command: /npc skin wheat
[18:18:25] [Server thread/INFO]: pikatntyt issued server command: /npc skin hat
[18:18:31] [Server thread/INFO]: pikatntyt issued server command: /npc skin bighat
[18:18:35] [Server thread/INFO]: pikatntyt issued server command: /npc skin friendship
[18:18:38] [Server thread/INFO]: pikatntyt issued server command: /npc skin eraze
[18:18:41] [Server thread/INFO]: pikatntyt issued server command: /npc skin eeazea
[18:18:46] [Server thread/INFO]: pikatntyt issued server command: /npc skin hgij
[18:18:50] [Async Chat Thread - #33/INFO]:        chat        
[18:18:53] [Server thread/INFO]: pikatntyt issued server command: /npc skin aaaaa
[18:18:55] [Server thread/INFO]: pikatntyt issued server command: /npc skin aaaaaa
[18:19:01] [Server thread/INFO]: [Essentials] Created a User for Farmer (8a9d33ed-7148-28f7-831b-0cb4bfeefb54) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:19:04] [Server thread/INFO]: pikatntyt issued server command: /npc skin self
[18:19:10] [Server thread/INFO]: pikatntyt issued server command: /npc skin look
[18:19:22] [Server thread/INFO]: pikatntyt issued server command: /npc skin avoidmykvs
[18:19:28] [Server thread/INFO]: pikatntyt issued server command: /npc skin guy
[18:21:16] [Server thread/INFO]: pikatntyt issued server command: /npc skin WhoGoJoJo
[18:21:27] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 8a9d33ed-7148-28f7-831b-0cb4bfeefb54
[18:21:32] [Server thread/INFO]: pikatntyt issued server command: /npc look
[18:21:38] [Server thread/INFO]: pikatntyt issued server command: /npc lookclose --range 5
[18:21:56] [Server thread/INFO]: pikatntyt issued server command: /rg flags
[18:22:01] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 2 spawn
[18:22:04] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 3 spawn
[18:22:09] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 4 spawn
[18:22:25] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 5 spawn
[18:22:33] [Server thread/INFO]: pikatntyt issued server command: /rg flags -w "AstroSMP" -p 6 spawn
[18:22:41] [Server thread/INFO]: pikatntyt issued server command: /rg flag -w "AstroSMP" -h 6 spawn mob-combat DENY
[18:22:42] [Server thread/INFO]: pikatntyt issued server command: /rg flag -w "AstroSMP" -h 6 spawn mob-combat 
[18:22:57] [Server thread/INFO]: pikatntyt issued server command: /butcher
[18:22:59] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'AstroSMP' have been background saved
[18:24:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:24:40] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:24:40] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:24:59] [Server thread/INFO]: pikatntyt issued server command: /crate give pikatntyt 987
[18:25:01] [Server thread/INFO]: pikatntyt issued server command: /crate give pikatntyt 836
[18:25:06] [Server thread/INFO]: pikatntyt issued server command: /crate claim
[18:25:11] [Server thread/INFO]: pikatntyt issued server command: /crate gui
[18:25:14] [Server thread/INFO]: pikatntyt issued server command: /crate gui
[18:28:34] [Server thread/WARN]: Player pikatntyt just tried to change non-editable sign
[18:29:06] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:29:06] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:29:06] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:31:10] [Server thread/INFO]: pikatntyt issued server command: /ec
[18:32:39] [Async Chat Thread - #35/INFO]:          chat         
[18:32:49] [Async Chat Thread - #35/INFO]:         chat        
[18:32:53] [Async Chat Thread - #35/INFO]:             chat            
[18:32:57] [Server thread/INFO]: pikatntyt issued server command: /crate remove 471
[18:33:02] [Server thread/INFO]: pikatntyt issued server command: /crate delete 471
[18:33:05] [Async Chat Thread - #35/INFO]:            chat           
[18:33:19] [Async Chat Thread - #35/INFO]:                                      chat                                      
[18:33:22] [Async Chat Thread - #35/INFO]:                                    chat                                   
[18:33:27] [Async Chat Thread - #35/INFO]:                 chat                
[18:33:33] [Async Chat Thread - #35/INFO]:             chat             
[18:33:35] [Async Chat Thread - #35/INFO]:          chat         
[18:33:45] [Server thread/INFO]: xRyleigh issued server command: /npc sel
[18:34:19] [Server thread/INFO]: pikatntyt issued server command: /gamemode spectator
[18:34:25] [Server thread/INFO]: pikatntyt issued server command: /gamemode creative
[18:34:29] [Server thread/INFO]: xRyleigh issued server command: /npc rename &7» &#9BEEA7Q&#9BEEA7u&#9BEEA7e&#9BEEA7s&#9BEEA7t&#9BEEA7s &7«
[18:34:34] [Server thread/INFO]: xRyleigh issued server command: /npc rename awda
[18:34:37] [Server thread/INFO]: xRyleigh issued server command: /npc rename &cTest
[18:34:55] [Server thread/INFO]: xRyleigh issued server command: /npc rename &7› &#9BEEA7Q&#9BEEA7u&#9BEEA7e&#9BEEA7s&#9BEEA7t&#9BEEA7s &7‹
[18:35:01] [Async Chat Thread - #37/INFO]:                chat                
[18:35:24] [Server thread/INFO]: xRyleigh issued server command: /npc rename &7» &#5DF574Q&#5DF574u&#5DF574e&#5DF574s&#5DF574t&#5DF574s &7«
[18:35:46] [Async Chat Thread - #37/INFO]:                           chat                           
[18:35:51] [Async Chat Thread - #37/INFO]:          chat         
[18:35:57] [Async Chat Thread - #37/INFO]:                    chat                   
[18:36:07] [Server thread/INFO]: pikatntyt issued server command: /npc select --range 10
[18:36:11] [Server thread/INFO]: pikatntyt issued server command: /npc name
[18:36:12] [Server thread/INFO]: pikatntyt issued server command: /npc name
[18:36:23] [Async Chat Thread - #37/INFO]:         chat         
[18:36:33] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:36:33] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:36:33] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:36:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:36:36] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:36:36] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:36:40] [Server thread/INFO]: [Essentials] Created a User for Test (80fd2fd0-93da-2c72-8276-f20563651726) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:36:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:36:40] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:36:40] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:37:07] [Server thread/INFO]: pikatntyt issued server command: /citizens save
[18:37:58] [Async Chat Thread - #39/INFO]:            chat           
[18:38:03] [Async Chat Thread - #39/INFO]:            chat           
[18:38:14] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[18:38:16] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[18:38:16] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[18:38:21] [Async Chat Thread - #39/INFO]:         chat         
[18:38:24] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:38:24] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:38:24] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:38:33] [Async Chat Thread - #39/INFO]:                  chat                  
[18:38:58] [Server thread/INFO]: xRyleigh issued server command: /npc sel
[18:39:02] [Server thread/INFO]: xRyleigh issued server command: /npc skin xRyleigh
[18:39:10] [Async Chat Thread - #39/INFO]:                                      chat                                      
[18:39:16] [Server thread/INFO]: xRyleigh issued server command: /npc skin
[18:39:19] [Server thread/INFO]: xRyleigh issued server command: /npc sel
[18:39:20] [Server thread/INFO]: xRyleigh issued server command: /npc skin
[18:39:22] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[18:39:23] [Server thread/INFO]: pikatntyt issued server command: /citizens reload
[18:39:23] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[18:39:37] [Async Chat Thread - #39/INFO]:                         chat                        
[18:40:20] [Server thread/INFO]: pikatntyt issued server command: /npc moveto 7.5 65 53.5
[18:40:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:40:25] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:40:25] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:40:47] [Async Chat Thread - #41/INFO]:                 chat                
[18:40:51] [Async Chat Thread - #41/INFO]:                chat               
[18:40:56] [Async Chat Thread - #41/INFO]:                       chat                       
[18:41:00] [Async Chat Thread - #41/INFO]:            chat           
[18:41:11] [Async Chat Thread - #41/INFO]:                  chat                  
[18:41:18] [Server thread/INFO]: pikatntyt issued server command: /tp xRyleigh pikatntyt
[18:41:30] [Async Chat Thread - #41/INFO]:                          chat                          
[18:41:44] [Async Chat Thread - #41/INFO]:         chat         
[18:41:44] [Async Chat Thread - #41/INFO]:                         chat                        
[18:41:52] [Async Chat Thread - #41/INFO]:                    chat                   
[18:42:24] [Async Chat Thread - #41/INFO]:                                          chat                                          
[18:42:35] [Async Chat Thread - #41/INFO]:         chat        
[18:42:43] [Async Chat Thread - #41/INFO]:                 chat                
[18:42:50] [Async Chat Thread - #41/INFO]:               chat               
[18:42:56] [Async Chat Thread - #41/INFO]:                     chat                    
[18:43:01] [Async Chat Thread - #41/INFO]:            chat           
[18:43:09] [Async Chat Thread - #41/INFO]:                                   chat                                  
[18:43:12] [Async Chat Thread - #41/INFO]:                                     chat                                     
[18:43:24] [Async Chat Thread - #41/INFO]:        chat        
[18:43:33] [Async Chat Thread - #41/INFO]:                              chat                             
[18:43:34] [Async Chat Thread - #41/INFO]:          chat         
[18:43:41] [Async Chat Thread - #41/INFO]:            chat           
[18:43:43] [Async Chat Thread - #41/INFO]:          chat          
[18:43:44] [Async Chat Thread - #41/INFO]:            chat           
[18:43:46] [Async Chat Thread - #41/INFO]:                                         chat                                        
[18:44:22] [Async Chat Thread - #41/INFO]:                       chat                      
[18:44:45] [Server thread/INFO]: pikatntyt issued server command: /npc create &7» &#5DF574Q&#5DF574u&#5DF574e&#5DF574s&#5DF574t&#5DF574s &7«
[18:44:46] [Server thread/INFO]: [Essentials] Created a User for CIT-3c55377a3c1c (3c55377a-3c1c-2c88-aeab-7a16e37b1d9d) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:44:50] [Async Chat Thread - #41/INFO]:            chat           
[18:45:06] [Async Chat Thread - #41/INFO]:                                      chat                                     
[18:45:24] [Server thread/INFO]: pikatntyt issued server command: /npc create &7» &#5DF574Quests &7«
[18:45:24] [Server thread/INFO]: [Essentials] Created a User for CIT-79c95aab5332 (79c95aab-5332-28a1-9ad2-893e2c3e486e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:45:31] [Server thread/INFO]: pikatntyt issued server command: /npc create &7 &#5DF574Quests &7
[18:45:31] [Server thread/INFO]: [Essentials] Created a User for CIT-04a9a4dbf795 (04a9a4db-f795-2a61-b7a1-4fea9d59c397) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:45:39] [Server thread/INFO]: pikatntyt issued server command: /npc create &7&#5DF574Quests&7
[18:45:39] [Server thread/INFO]: [Essentials] Created a User for CIT-1d13467190ad (1d134671-90ad-26c2-8fd1-bdf538bbcb10) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:45:40] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 1d134671-90ad-26c2-8fd1-bdf538bbcb10
[18:45:46] [Server thread/INFO]: pikatntyt issued server command: /npc create &#5DF574Quests
[18:45:51] [Server thread/INFO]: pikatntyt issued server command: /npc create &aQuests
[18:45:55] [Async Chat Thread - #41/INFO]:          chat         
[18:45:57] [Async Chat Thread - #41/INFO]:         chat        
[18:46:11] [Async Chat Thread - #41/INFO]:                           chat                           
[18:46:27] [Async Chat Thread - #41/INFO]:                      chat                     
[18:46:30] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[18:46:31] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[18:46:31] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[18:46:35] [Server thread/INFO]: xRyleigh issued server command: /gamemode spectator
[18:46:46] [Server thread/INFO]: xRyleigh issued server command: /gamemode survival
[18:46:47] [Async Chat Thread - #41/INFO]:              chat             
[18:46:49] [Server thread/INFO]: xRyleigh issued server command: /gamemode creative
[18:46:58] [Async Chat Thread - #41/INFO]:                 chat                 
[18:47:03] [Async Chat Thread - #41/INFO]:         chat        
[18:47:07] [Async Chat Thread - #41/INFO]:               chat               
[18:47:08] [Server thread/INFO]: pikatntyt issued server command: /tp xRyleigh pikatntyt
[18:47:19] [Async Chat Thread - #41/INFO]:             chat            
[18:47:21] [Server thread/INFO]: [Essentials] Created a User for CIT-13b9e3eabfd0 (13b9e3ea-bfd0-2b05-9c4b-a273aef92c1e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R3.entity.EntityHumanNPC$PlayerNPC
[18:47:32] [Async Chat Thread - #41/INFO]:                      chat                      
[18:47:42] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[18:47:43] [Server thread/INFO]: xRyleigh issued server command: /citizens reload
[18:47:43] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[18:47:54] [Async Chat Thread - #41/INFO]:            chat            
[18:48:06] [Async Chat Thread - #41/INFO]:               chat              
[18:48:07] [Async Chat Thread - #41/INFO]:          chat         
[18:48:12] [Server thread/INFO]: xRyleigh has made the advancement [Monster Hunter]
[18:48:28] [Async Chat Thread - #41/INFO]:                         chat                         
[18:48:56] [Async Chat Thread - #41/INFO]:                         chat                        
[18:49:11] [Server thread/INFO]: pikatntyt issued server command: /dh create test
[18:49:22] [Server thread/INFO]: pikatntyt issued server command: /dh holo downorigin test
[18:49:25] [Server thread/INFO]: pikatntyt issued server command: /dh holo test downorigin test
[18:49:30] [Server thread/INFO]: pikatntyt issued server command: /dh holo downorigin test true
[18:49:35] [Async Chat Thread - #41/INFO]:                   chat                  
[18:49:51] [Server thread/INFO]: pikatntyt issued server command: /dh line set test 1 1 &#fffaa test
[18:49:54] [Server thread/INFO]: pikatntyt issued server command: /dh line set test 1 1 #fffaa test
[18:49:58] [Server thread/INFO]: pikatntyt issued server command: /dh line set test 1 1 &#fffaa test
[18:50:06] [Server thread/INFO]: pikatntyt issued server command: /dh line set test 1 1 <gray>test
[18:50:12] [Server thread/INFO]: pikatntyt issued server command: /dh remove test
[18:50:15] [Async Chat Thread - #41/INFO]:         chat         
[18:50:33] [Server thread/INFO]: xRyleigh issued server command: /pl
[18:50:34] [Async Chat Thread - #41/INFO]:        chat       
[18:50:36] [Async Chat Thread - #41/INFO]:        chat        
[18:50:45] [Async Chat Thread - #41/INFO]:                     chat                     
[18:50:51] [Async Chat Thread - #41/INFO]:         chat         
[18:50:56] [Async Chat Thread - #41/INFO]:                chat               
[18:51:01] [Async Chat Thread - #41/INFO]:                     chat                     
[18:51:15] [Async Chat Thread - #42/INFO]:                            chat                           
[18:51:44] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#bbbbffthat's a test message right there
[18:51:45] [Async Chat Thread - #42/INFO]:                     chat                     
[18:51:51] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#bbffffthat's a test message right there
[18:51:54] [Async Chat Thread - #42/INFO]:           chat           
[18:51:56] [Async Chat Thread - #42/INFO]:         chat         
[18:52:05] [Async Chat Thread - #42/INFO]:        chat        
[18:52:05] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#66ffffthat's a test message right there
[18:52:08] [Async Chat Thread - #42/INFO]:                   chat                  
[18:52:11] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#aaffffthat's a test message right there
[18:52:15] [Async Chat Thread - #42/INFO]:          chat         
[18:52:26] [Async Chat Thread - #42/INFO]:                                 chat                                
[18:52:30] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#aaffffthat's a test message right there
[18:52:30] [Async Chat Thread - #42/INFO]:        chat        
[18:52:35] [Server thread/INFO]: xRyleigh issued server command: /lp listgroups
[18:52:42] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#abffffthat's a test message right there
[18:52:47] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#99ffffthat's a test message right there
[18:52:52] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#88ffffthat's a test message right there
[18:52:56] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#77ffffthat's a test message right there
[18:53:02] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#10ffffthat's a test message right there
[18:53:09] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt &#aaffffthat's a test message right there
[18:53:19] [Server thread/INFO]: pikatntyt issued server command: /msg pikatntyt that's a test message right there
[18:53:58] [Async Chat Thread - #43/INFO]:                             chat                             
[18:54:28] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /sudo pikatntyt quests
[18:54:28] [Server thread/INFO]: Forcing pikatntyt to run: /quests
[18:54:28] [Server thread/INFO]: pikatntyt issued server command: /quests
[18:54:32] [Server thread/INFO]: xRyleigh issued server command: /lpc reload
[18:54:34] [Async Chat Thread - #43/INFO]:         chat         
[18:54:35] [Async Chat Thread - #43/INFO]:        chat        
[18:54:37] [Async Chat Thread - #43/INFO]:         chat         
[18:54:40] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set admin
[18:54:40] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:54:40] [luckperms-command-executor/INFO]: [LP] LOG > parent set admin
[18:54:42] [Async Chat Thread - #43/INFO]:         chat         
[18:54:44] [Async Chat Thread - #43/INFO]:             chat             
[18:54:50] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set dev
[18:54:50] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:54:50] [luckperms-command-executor/INFO]: [LP] LOG > parent set dev
[18:54:52] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt demote staff
[18:54:52] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:54:52] [luckperms-command-executor/INFO]: [LP] LOG > demote staff
[18:54:53] [Async Chat Thread - #43/INFO]:        chat        
[18:54:54] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt demote staff
[18:54:54] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:54:54] [luckperms-command-executor/INFO]: [LP] LOG > demote staff
[18:54:55] [Async Chat Thread - #43/INFO]:        chat        
[18:54:56] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt demote staff
[18:54:56] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:54:56] [luckperms-command-executor/INFO]: [LP] LOG > demote staff
[18:54:57] [Async Chat Thread - #43/INFO]:        chat        
[18:54:59] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt demote staff
[18:54:59] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:54:59] [luckperms-command-executor/INFO]: [LP] LOG > demote staff
[18:54:59] [Async Chat Thread - #43/INFO]:        chat        
[18:55:01] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt demote staff
[18:55:01] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:55:01] [luckperms-command-executor/INFO]: [LP] LOG > demote staff
[18:55:02] [Async Chat Thread - #43/INFO]:        chat        
[18:55:14] [Async Chat Thread - #43/INFO]:                         chat                         
[18:55:15] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt demote staff
[18:55:15] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:55:15] [luckperms-command-executor/INFO]: [LP] LOG > demote staff
[18:55:17] [Async Chat Thread - #43/INFO]:        chat        
[18:55:19] [Async Chat Thread - #43/INFO]:             chat            
[18:55:24] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt promote non-staff
[18:55:24] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:55:24] [luckperms-command-executor/INFO]: [LP] LOG > promote non-staff
[18:55:25] [Async Chat Thread - #43/INFO]:        chat        
[18:55:27] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt promote non-staff
[18:55:27] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:55:27] [luckperms-command-executor/INFO]: [LP] LOG > promote non-staff
[18:55:28] [Async Chat Thread - #43/INFO]:        chat        
[18:55:31] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt promote non-staff
[18:55:38] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt parent set owner
[18:55:38] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:55:38] [luckperms-command-executor/INFO]: [LP] LOG > parent set owner
[18:56:11] [Async Chat Thread - #43/INFO]:                                   chat                                  
[18:56:45] [Server thread/INFO]: xRyleigh issued server command: /lpc reload
[18:56:46] [Async Chat Thread - #43/INFO]:         chat         
[18:56:49] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set media
[18:56:49] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:56:49] [luckperms-command-executor/INFO]: [LP] LOG > parent set media
[18:56:50] [Async Chat Thread - #43/INFO]:         chat         
[18:56:53] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set advertiser
[18:56:53] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:56:53] [luckperms-command-executor/INFO]: [LP] LOG > parent set advertiser
[18:56:54] [Async Chat Thread - #43/INFO]:         chat         
[18:56:58] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set helper
[18:56:58] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:56:58] [luckperms-command-executor/INFO]: [LP] LOG > parent set helper
[18:56:59] [Async Chat Thread - #43/INFO]:         chat         
[18:57:02] [Async Chat Thread - #43/INFO]:            chat            
[18:57:03] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt parent set mod
[18:57:04] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:57:04] [luckperms-command-executor/INFO]: [LP] LOG > parent set mod
[18:57:04] [Async Chat Thread - #43/INFO]:        chat        
[18:57:06] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set owner
[18:57:06] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:57:06] [luckperms-command-executor/INFO]: [LP] LOG > parent set owner
[18:57:07] [Async Chat Thread - #43/INFO]:        chat       
[18:57:10] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set default
[18:57:10] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:57:10] [luckperms-command-executor/INFO]: [LP] LOG > parent set default
[18:57:11] [Async Chat Thread - #43/INFO]:        chat        
[18:57:14] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set media
[18:57:14] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:57:14] [luckperms-command-executor/INFO]: [LP] LOG > parent set media
[18:57:15] [Async Chat Thread - #43/INFO]:         chat         
[18:57:18] [Async Chat Thread - #43/INFO]:                             chat                            
[18:57:20] [Async Chat Thread - #43/INFO]:                    chat                   
[18:57:26] [Async Chat Thread - #43/INFO]:           chat           
[18:57:30] [Server thread/INFO]: pikatntyt issued server command: /lp user pikatntyt parent set owner
[18:57:30] [luckperms-command-executor/INFO]: [LP] LOG > (pikatntyt) [U] (pikatntyt)
[18:57:30] [luckperms-command-executor/INFO]: [LP] LOG > parent set owner
[18:57:30] [Async Chat Thread - #43/INFO]:                               chat                              
[18:57:36] [Async Chat Thread - #44/INFO]:            chat           
[18:57:41] [Async Chat Thread - #44/INFO]:         chat         
[18:58:00] [Async Chat Thread - #44/INFO]:                 chat                 
[18:58:02] [Async Chat Thread - #44/INFO]:           chat          
[18:58:03] [Async Chat Thread - #44/INFO]:        chat        
[18:58:04] [Async Chat Thread - #44/INFO]:                                          chat                                          
[18:58:21] [Async Chat Thread - #44/INFO]:          chat         
[18:58:23] [Async Chat Thread - #44/INFO]:                                              chat                                              
[18:58:28] [Server thread/INFO]: xRyleigh issued server command: /lp user xRyleigh parent set manager
[18:58:28] [luckperms-command-executor/INFO]: [LP] LOG > (xRyleigh) [U] (xryleigh)
[18:58:28] [luckperms-command-executor/INFO]: [LP] LOG > parent set manager
[18:59:07] [Server thread/INFO]: xRyleigh issued server command: /time set day
[18:59:52] [Async Chat Thread - #45/INFO]:                          chat                         
[19:00:18] [Async Chat Thread - #45/INFO]:                                  chat                                  
[19:00:43] [Async Chat Thread - #45/INFO]:               chat              
[19:00:48] [Async Chat Thread - #45/INFO]:             chat            
[19:00:51] [Async Chat Thread - #45/INFO]:           chat