Paste #125057: need help with citizens

Date: 2024/07/28 03:06:15 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


[09:44:28] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins/mythicmobs-1.20.1-fabric-1.4.5.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins/mythicmobs-1.20.1-fabric-1.4.5.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:70) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:47) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:101) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.Main.main(Main.java:120) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.Main.main(Main.java:326) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/mythicmobs-1.20.1-fabric-1.4.5.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    ... 9 more
[09:44:30] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:44:31] [ServerMain/INFO]: Loaded 1174 recipes
[09:44:32] [ServerMain/INFO]: Loaded 1271 advancements
[09:44:32] [Server thread/INFO]: Starting minecraft server version 1.20.4
[09:44:32] [Server thread/INFO]: Loading properties
[09:44:32] [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)
[09:44:32] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:44:32] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:44:33] [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
[09:44:33] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[09:44:33] [Server thread/INFO]: Default game type: SURVIVAL
[09:44:33] [Server thread/INFO]: Generating keypair
[09:44:33] [Server thread/INFO]: Starting Minecraft server on *:25575
[09:44:33] [Server thread/INFO]: Using epoll channel type
[09:44:33] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[09:44:33] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[09:44:33] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ProtocolLib' for files 'plugins/ProtocolLib (2).jar' and 'plugins/ProtocolLib (1).jar' in 'plugins'
[09:44:33] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[09:44:33] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[09:44:33] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[09:44:33] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[09:44:33] [Server thread/INFO]: [MinehutPlugin] Found matching version for version 1.20.4-R0.1-SNAPSHOT (V1_20_R3)
[09:44:33] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[09:44:35] [Server thread/WARN]: Legacy plugin AdvancedGiveaways v1.7.3 does not specify an api-version.
[09:44:35] [Server thread/WARN]: Legacy plugin PlayerVaults v3.6.0-bSNAPSHOT does not specify an api-version.
[09:44:35] [Server thread/WARN]: Legacy plugin Rules v1.5 does not specify an api-version.
[09:44:35] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[09:44:35] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[09:44:35] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[09:44:35] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[09:44:35] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.1
[09:44:35] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.1 is now loaded. Registering protocol transformers and injecting...
[09:44:36] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[09:44:36] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[09:44:36] [Server thread/ERROR]: [ViaVersion] Error initializing plugin 'ViaVersion.jar' in folder 'plugins' (Is it up to date?)
java.lang.NoSuchMethodError: 'void com.viaversion.viaversion.util.Config.<init>(java.io.File)'
    at com.viaversion.viabackwards.ViaBackwardsConfig.<init>(ViaBackwardsConfig.java:37) ~[ViaBackwards-4.9.2.jar:?]
    at com.viaversion.viabackwards.api.ViaBackwardsPlatform.init(ViaBackwardsPlatform.java:76) ~[ViaBackwards-4.9.2.jar:?]
    at com.viaversion.viabackwards.BukkitPlugin.lambda$new$0(BukkitPlugin.java:35) ~[ViaBackwards-4.9.2.jar:?]
    at com.viaversion.viaversion.ViaManagerImpl.init(ViaManagerImpl.java:114) ~[ViaVersion.jar:?]
    at com.viaversion.viaversion.ViaVersionPlugin.onLoad(ViaVersionPlugin.java:84) ~[ViaVersion.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:507) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:44:36] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[09:44:36] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[09:44:36] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.9.3-SNAPSHOT-724;ca2c18e
[09:44:37] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6c977266]
[09:44:37] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[09:44:37] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[09:44:37] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[09:44:37] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[09:44:37] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+77-c85e179
[09:44:37] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.4
[09:44:37] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.2
[09:44:37] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3489)
[09:44:37] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[09:44:37] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.6
[09:44:37] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[09:44:37] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.6.2-3e052553
[09:44:37] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[09:44:37] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[09:44:37] [Server thread/INFO]: [MinehutPlugin] Loading server plugin MinehutPlugin v0.0.27-SNAPSHOT
[09:44:37] [Server thread/INFO]: [PoaSkRewritev2] Loading server plugin PoaSkRewritev2 v4.7.1
[09:44:37] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.9.5
[09:44:38] [Server thread/INFO]: [AdvancedGiveaways] Loading server plugin AdvancedGiveaways v1.7.3
[09:44:38] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v3.6.0-bSNAPSHOT
[09:44:38] [Server thread/INFO]: [Rules] Loading server plugin Rules v1.5
[09:44:38] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.5.2.1
[09:44:38] [Server thread/INFO]: [Mutechat] Loading server plugin Mutechat v1.2-RELEASE
[09:44:38] [Server thread/INFO]: [ClearChat] Loading server plugin ClearChat v1.0.3
[09:44:38] [Server thread/INFO]: [BedrockOffhand] Loading server plugin BedrockOffhand v1.1.0
[09:44:38] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.5
[09:44:38] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[09:44:38] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+77-c85e179
[09:44:38] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[09:44:38] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.3
[09:44:38] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.5
[09:44:38] [Server thread/INFO]: [Skulls] Loading server plugin Skulls v3.12.0
[09:44:38] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[09:44:38] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.0.0
[09:44:38] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.19.0
[09:44:38] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (256 ms).
[09:44:38] [Server thread/INFO]: [Shopkeepers] Loading config.
[09:44:38] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[09:44:38] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[09:44:38] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[09:44:38] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.1.13
[09:44:38] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.4.3
[09:44:38] [Server thread/INFO]: [CrazyEnchantments] Loading server plugin CrazyEnchantments v2.2.8
[09:44:38] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:44:38] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[09:44:38] [Server thread/INFO]:         __    
[09:44:38] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[09:44:38] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[09:44:38] [Server thread/INFO]: 
[09:44:38] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:44:38] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[09:44:39] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:44:39] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:44:39] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1257ms)
[09:44:39] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[09:44:39] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[09:44:39] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:44:39] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[09:44:39] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:44:39] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.9.3-SNAPSHOT-724;ca2c18e
[09:44:39] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:44:39] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:44:39] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:44:39] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[09:44:40] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[09:44:40] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[09:44:40] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[09:44:40] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[09:44:40] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[09:44:40] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[09:44:40] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[09:44:40] [Server thread/INFO]: [NexEngine] Plugin loaded in 37 ms!
[09:44:40] [Server thread/INFO]: [nightcore] Enabling nightcore v2.5.2.1
[09:44:40] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[09:44:40] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[09:44:40] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[09:44:40] [Server thread/INFO]: [nightcore] Server Version: 1.20.4 (OK)
[09:44:40] [Server thread/INFO]: [nightcore] Entity Id Counter: OK.
[09:44:40] [Server thread/INFO]: [nightcore] Item NBT Compress: OK.
[09:44:40] [Server thread/INFO]: [nightcore] Plugin loaded in 50 ms!
[09:44:40] [Server thread/INFO]: [ClearChat] Enabling ClearChat v1.0.3
[09:44:40] [Server thread/INFO]: [ClearChat] ClearChat v1.0.3 Enabled
[09:44:40] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:44:40] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:44:40] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[09:44:40] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[09:44:40] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:44:40] [Server thread/INFO]: Preparing level "world"
[09:44:40] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:44:40] [Server thread/INFO]: Time elapsed: 183 ms
[09:44:40] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[09:44:41] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 139 build(s) out of date.
You are running build 724, the latest version is build 863.
Update at https://www.spigotmc.org/resources/13932/
[09:44:41] [Server thread/INFO]: Time elapsed: 97 ms
[09:44:41] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[09:44:41] [Server thread/INFO]: Time elapsed: 12 ms
[09:44:41] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.1
[09:44:41] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.3-1.20.4 (765)
[09:44:41] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[09:44:41] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[09:44:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[09:44:41] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:44:41] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[09:44:41] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:44:41] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[09:44:41] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[09:44:41] [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.
[09:44:41] [Server thread/INFO]: Preparing start region for dimension minecraft:trident
[09:44:42] [Server thread/INFO]: Time elapsed: 642 ms
[09:44:42] [Server thread/INFO]: [WorldGuard] (trident) TNT ignition is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (trident) Lighters are PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (trident) Lava fire is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (trident) Fire spread is UNRESTRICTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'trident'
[09:44:42] [Server thread/INFO]: Preparing start region for dimension minecraft:candy
[09:44:42] [Server thread/INFO]: Time elapsed: 16 ms
[09:44:42] [Server thread/INFO]: [WorldGuard] (candy) TNT ignition is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (candy) Lighters are PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (candy) Lava fire is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (candy) Fire spread is UNRESTRICTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'candy'
[09:44:42] [Server thread/INFO]: Preparing start region for dimension minecraft:greekgod
[09:44:42] [Server thread/INFO]: Time elapsed: 34 ms
[09:44:42] [Server thread/INFO]: [WorldGuard] (GreekGod) TNT ignition is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (GreekGod) Lighters are PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (GreekGod) Lava fire is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (GreekGod) Fire spread is UNRESTRICTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GreekGod'
[09:44:42] [Server thread/INFO]: Preparing start region for dimension minecraft:newspawn
[09:44:42] [Server thread/INFO]: Time elapsed: 33 ms
[09:44:42] [Server thread/INFO]: [WorldGuard] (newspawn) TNT ignition is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (newspawn) Lighters are PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (newspawn) Lava fire is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (newspawn) Fire spread is UNRESTRICTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'newspawn'
[09:44:42] [Server thread/INFO]: Preparing start region for dimension minecraft:space
[09:44:42] [Server thread/INFO]: Time elapsed: 104 ms
[09:44:42] [Server thread/INFO]: [WorldGuard] (space) TNT ignition is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (space) Lighters are PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (space) Lava fire is PERMITTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] (space) Fire spread is UNRESTRICTED.
[09:44:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'space'
[09:44:42] [Server thread/INFO]: Preparing start region for dimension minecraft:blueprint
[09:44:43] [Server thread/INFO]: Time elapsed: 92 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (blueprint) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (blueprint) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (blueprint) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (blueprint) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'blueprint'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:event1
[09:44:43] [Server thread/INFO]: Time elapsed: 29 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (event1) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (event1) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (event1) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (event1) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'event1'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:1.20.6themedworld
[09:44:43] [Server thread/INFO]: Time elapsed: 17 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (1.20.6ThemedWorld) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (1.20.6ThemedWorld) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (1.20.6ThemedWorld) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (1.20.6ThemedWorld) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '1.20.6ThemedWorld'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:clearlagtest
[09:44:43] [Server thread/INFO]: Time elapsed: 124 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (clearlagtest) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (clearlagtest) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (clearlagtest) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (clearlagtest) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'clearlagtest'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:timetravel
[09:44:43] [Server thread/INFO]: Time elapsed: 21 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (timetravel) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (timetravel) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (timetravel) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (timetravel) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'timetravel'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:underworld
[09:44:43] [Server thread/INFO]: Time elapsed: 25 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworld) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworld) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworld) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworld) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'underworld'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:mystic
[09:44:43] [Server thread/INFO]: Time elapsed: 107 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (mystic) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (mystic) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (mystic) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (mystic) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mystic'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:create
[09:44:43] [Server thread/INFO]: Time elapsed: 54 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (create) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (create) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (create) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (create) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'create'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:underworlddungeon
[09:44:43] [Server thread/INFO]: Time elapsed: 10 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworlddungeon) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworlddungeon) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworlddungeon) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (underworlddungeon) Fire spread is UNRESTRICTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'underworlddungeon'
[09:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:historydungeon
[09:44:43] [Server thread/INFO]: Time elapsed: 55 ms
[09:44:43] [Server thread/INFO]: [WorldGuard] (HistoryDungeon) TNT ignition is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (HistoryDungeon) Lighters are PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (HistoryDungeon) Lava fire is PERMITTED.
[09:44:43] [Server thread/INFO]: [WorldGuard] (HistoryDungeon) Fire spread is UNRESTRICTED.
[09:44:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'HistoryDungeon'
[09:44:44] [Server thread/INFO]: [Multiverse-Core] 18 - World(s) loaded.
[09:44:44] [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.
[09:44:44] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[09:44:44] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+77-c85e179
[09:44:44] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[09:44:44] [Server thread/INFO]: [Essentials] No kits found to migrate.
[09:44:44] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[09:44:44] [Server thread/INFO]: [Essentials] Using locale en_US
[09:44:44] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[09:44:44] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[09:44:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[09:44:44] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[09:44:44] [Server thread/INFO]: [Skript] Enabling Skript v2.8.4
[09:44:45] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.9.0 (you're currently running 2.8.4)
[09:44:45] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.0/Skript-2.9.0.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.0/Skript-2.9.0.jar
[09:44:50] [Server thread/INFO]: [Skript] Loaded 232658 aliases in 5116ms
[09:44:50] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[09:44:50] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.2
[09:44:50] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3489)
[09:44:50] [Server thread/INFO]: [Citizens] Loading external libraries
[09:44:51] [Server thread/ERROR]: [Citizens] v2.0.35-SNAPSHOT (build 3489) is not compatible with Minecraft v1_20_R3 - try upgrading Minecraft or Citizens. Disabling...
[09:44:51] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3489)
[09:44:51] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[09:44:51] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[09:44:51] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.6.2-3e052553
[09:44:51] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.4)...
[09:44:51] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[09:44:52] [pool-157-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[09:44:52] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[09:44:52] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:GenSkyVM(1226964166309318796)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator-only(1226976035032137729)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcripts(1228057483365580841)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👋┇welcome(1226964166896783414)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📖┇server-information(1226971053264343100)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-8(1258487181068992584)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11(1258489674624794635)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-15(1258518296047648938)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-19(1258903136752373831)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┇announcements┇📢(1226970586635567227)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🛬┇updates┇🛬(1226970638636421221)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📖┇rules┇📖(1226976035032137728)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝┇polls(1226970662070128752)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📌advertise📌(1258868233822408785)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚒┇tickets(1226970863061045380)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎭┇reaction-roles(1226970715811610634)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👤┇staff-changes(1226971210890477709)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👀┇sneek-peaks(1226974372712157214)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📺┇media(1226974272447053884)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇general(1226974250825551993)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖┇commands(1226974297449562283)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌍┇ingame-chat(1226974444040229015)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔢┇counting(1226977306065502229)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:all-staff-chat(1226974665743011904)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-chat(1226974719329304680)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin-chat(1226974854830489793)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:owners-chat(1226974893665685525)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console(1227272627354341496)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-transcript(1226990741570588703)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-24(1266334002395086888)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console(1227272627354341496)
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[09:44:52] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[09:44:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[09:44:53] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[09:44:53] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[09:44:53] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[09:44:53] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[09:44:53] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/server/plugins/MythicMobs/data
[09:44:53] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/server/plugins/MythicMobs/data/worlds
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Packs...
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Items...
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Skills...
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[09:44:54] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[09:44:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: /home/minecraft/server/plugins/MythicMobs/skills/ExampleSkills.yml
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[09:44:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: /home/minecraft/server/plugins/MythicMobs/skills/ExampleSkills.yml
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[09:44:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Skill: SummonSkeletons | File: /home/minecraft/server/plugins/MythicMobs/skills/ExampleSkills.yml
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[09:44:54] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=SkeletalMinion;amount=2;noise=5}
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 10 mobs.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 vanilla mob overrides.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[09:44:54] [Server thread/INFO]: [MythicMobs] ✓ Loaded 37 mob spawners.
[09:44:54] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[09:44:55] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[09:44:55] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.6.2 ( build 3e052553 ) has been successfully loaded!
[09:44:55] [Server thread/INFO]: [MinehutPlugin] Enabling MinehutPlugin v0.0.27-SNAPSHOT
[09:44:55] [Server thread/INFO]: [PoaSkRewritev2] Enabling PoaSkRewritev2 v4.7.1
[09:44:55] [Server thread/INFO]: [GSit] Enabling GSit v1.9.5
[09:44:55] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[09:44:55] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[09:44:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.9.5]
[09:44:55] [Server thread/INFO]: [GSit] Link with ViaVersion successful!
[09:44:55] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[09:44:55] [Server thread/INFO]: [AdvancedGiveaways] Enabling AdvancedGiveaways v1.7.3*
[09:44:55] [Server thread/INFO]: Checking for updates...
[09:44:55] [Server thread/INFO]: No new version available. You are using the latest version.
[09:44:55] [Server thread/INFO]: [AdvancedGiveaways] [STDOUT] [AdvancedGiveaways] Plugin enabled!
[09:44:55] [Server thread/WARN]: Nag author(s): '[guzel]' of 'AdvancedGiveaways v1.7.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[09:44:55] [Server thread/INFO]: [AdvancedGiveaways] [STDOUT] [AdvancedGiveaways] Thanks for downloading the Plugin!
[09:44:55] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v3.6.0-bSNAPSHOT*
[09:44:55] [Server thread/INFO]: [Rules] Enabling Rules v1.5*
[09:44:55] [Server thread/INFO]: [Rules] Rules v1.5 by [Bear53]
[09:44:55] [Server thread/INFO]: [Mutechat] Enabling Mutechat v1.2-RELEASE
[09:44:55] [Server thread/INFO]: [BedrockOffhand] Enabling BedrockOffhand v1.1.0
[09:44:55] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.5
[09:44:55] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 0ms)
[09:44:55] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_20_R3!
[09:44:55] [Server thread/INFO]: [SimplePortals] The version 1.7.5 doesn't match the latest version!
[09:44:55] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[09:44:55] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+77-c85e179
[09:44:55] [Server thread/WARN]: [Essentials] Error serializing key sr
com.earth2me.essentials.libs.configurate.serialize.SerializationException: [spawns, sr] of type com.earth2me.essentials.config.entities.LazyLocation: No world value present!
    at com.earth2me.essentials.config.serializers.LocationTypeSerializer.deserialize(LocationTypeSerializer.java:19) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.config.serializers.LocationTypeSerializer.deserialize(LocationTypeSerializer.java:14) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.libs.configurate.AbstractConfigurationNode.get(AbstractConfigurationNode.java:151) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.libs.configurate.ConfigurationNode.get(ConfigurationNode.java:520) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.config.EssentialsConfiguration.getLocationSectionMap(EssentialsConfiguration.java:146) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.spawn.SpawnStorage.reloadConfig(SpawnStorage.java:33) ~[EssentialsXSpawn-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.spawn.SpawnStorage.<init>(SpawnStorage.java:24) ~[EssentialsXSpawn-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.spawn.EssentialsSpawn.onEnable(EssentialsSpawn.java:39) ~[EssentialsXSpawn-2.21.0-dev77-c85e179.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:44:55] [Server thread/WARN]: [Essentials] Error serializing key co
com.earth2me.essentials.libs.configurate.serialize.SerializationException: [spawns, co] of type com.earth2me.essentials.config.entities.LazyLocation: No world value present!
    at com.earth2me.essentials.config.serializers.LocationTypeSerializer.deserialize(LocationTypeSerializer.java:19) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.config.serializers.LocationTypeSerializer.deserialize(LocationTypeSerializer.java:14) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.libs.configurate.AbstractConfigurationNode.get(AbstractConfigurationNode.java:151) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.libs.configurate.ConfigurationNode.get(ConfigurationNode.java:520) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.config.EssentialsConfiguration.getLocationSectionMap(EssentialsConfiguration.java:146) ~[EssentialsX-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.spawn.SpawnStorage.reloadConfig(SpawnStorage.java:33) ~[EssentialsXSpawn-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.spawn.SpawnStorage.<init>(SpawnStorage.java:24) ~[EssentialsXSpawn-2.21.0-dev77-c85e179.jar:?]
    at com.earth2me.essentials.spawn.EssentialsSpawn.onEnable(EssentialsSpawn.java:39) ~[EssentialsXSpawn-2.21.0-dev77-c85e179.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:44:55] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[09:44:55] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[09:44:55] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[09:44:55] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[09:44:55] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[09:44:55] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[09:44:55] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[09:44:55] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[09:44:55] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[09:44:55] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[09:44:55] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[09:44:55] [Server thread/INFO]: [skRayFall] Bacon is ready!
[09:44:55] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.3
[09:44:55] [Server thread/WARN]: [Tebex] Welcome to Tebex! It seems like this is a new setup.
[09:44:55] [Server thread/WARN]: [Tebex] To get started, please use the 'tebex secret <key>' command in the console.
[09:44:55] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.5
[09:44:55] [Server thread/INFO]: [ChatItem] Detected server version: v1_20
[09:44:55] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[09:44:55] [Server thread/INFO]: [ChatItem] Loaded 4 getter for base components.
[09:44:55] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[09:44:55] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[09:44:55] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[09:44:55] [Server thread/INFO]: [ChatItem] Loaded translation for en_gb.
[09:44:55] [Server thread/INFO]: [Skulls] Enabling Skulls v3.12.0
[09:44:55] [Server thread/INFO]:  
[09:44:55] [Server thread/INFO]: =============================
[09:44:55] [Server thread/INFO]: Skulls v3.12.0 by Tweetzy
[09:44:55] [Server thread/INFO]: Developer: Kiran Hart
[09:44:55] [ForkJoinPool.commonPool-worker-1/INFO]: [ChatItem] A new version of ChatItem is available. Click here to download.
[09:44:56] [Server thread/INFO]: [FlightCore] Enabling metrics for Skulls
[09:44:56] [Server thread/INFO]: =============================
[09:44:56] [Server thread/INFO]:  
[09:44:56] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[09:44:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[09:44:56] [Server thread/INFO]: [TAB] Enabled in 137ms
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.0.0
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[09:44:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.0.0]
[09:44:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:44:56] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@71a4b8ce
[09:44:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Loaded 11 crate keys.
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Loaded 10 crates.
[09:44:56] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'emerald' in 'default' menu!
[09:44:56] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'golden' in 'default' menu!
[09:44:56] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'diamond' in 'default' menu!
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[09:44:56] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 453 ms!
[09:44:56] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.19.0
[09:44:56] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:44:57] [Server thread/INFO]: [Shopkeepers] Loading the data of 143 shopkeepers ...
[09:44:57] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.13
[09:44:57] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[09:44:57] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[09:44:57] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[09:44:57] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[09:44:57] [Server thread/INFO]: [ItemEdit] placeholders:
[09:44:57] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[09:44:57] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[09:44:57] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[09:44:57] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[09:44:57] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[09:44:57] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[09:44:57] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[09:44:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[09:44:57] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[09:44:57] [Server thread/INFO]: [ItemEdit] # Enabled (took 43 ms)
[09:44:57] [Server thread/INFO]: [SkBee] Enabling SkBee v3.4.3
[09:44:57] [Server thread/INFO]: [SkBee] Loading NBTApi...
[09:44:57] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[09:44:57] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[09:44:57] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[09:44:57] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[09:44:57] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[09:44:57] [Server thread/INFO]: [SkBee] Loaded (391) elements:
[09:44:57] [Server thread/INFO]: [SkBee]  - 53 events
[09:44:57] [Server thread/INFO]: [SkBee]  - 61 effects
[09:44:57] [Server thread/INFO]: [SkBee]  - 241 expressions
[09:44:57] [Server thread/INFO]: [SkBee]  - 27 conditions
[09:44:57] [Server thread/INFO]: [SkBee]  - 9 sections
[09:44:57] [Server thread/INFO]: [SkBee] Checking for update...
[09:44:57] [Server thread/INFO]: [SkBee] Checking for update failed!
[09:44:57] [Server thread/INFO]: [SkBee] Successfully enabled v3.4.3 in 0.31 seconds
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v2.2.8
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the HeadMap.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded HeadMap.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: === CrazyEnchantment Hook Status ===
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: WORLDEDIT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: MCMMO NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: FACTIONS_UUID NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: TOWNYADVANCED NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: PLOT_SQUARED NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: WORLDGUARD FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: VAULT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: NO_CHEAT_PLUS NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: ORAXEN NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: GRIEF_PREVENTION NOT FOUND
[09:44:57] [Server thread/INFO]: [CrazyEnchants]: SUPERIORSKYBLOCK NOT FOUND
[09:44:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[09:44:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[09:44:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyEnchantments' to create a bStats instance!
[09:44:57] [Server thread/INFO]: [CrazyEnchantments] G-Kitz support is now enabled.
[09:44:58] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:44:58] [Server thread/INFO]: Running delayed init tasks
[09:44:58] [Craft Scheduler Thread - 1 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[09:44:58] [Craft Scheduler Thread - 6 - PlayerVaults/INFO]: [PlayerVaults] We didn't find an update!
[09:44:58] [Craft Scheduler Thread - 5 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[09:44:58] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:44:58] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:44:58] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] Checking for Updates ... 
[09:44:58] [Craft Scheduler Thread - 12 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[09:44:58] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Fetching version information...
[09:44:58] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[09:44:58] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] No new version available
[09:44:58] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[09:44:58] [Craft Scheduler Thread - 5 - DecentHolograms/INFO]: [DecentHolograms] Loaded 28 holograms!
[09:44:58] [Server thread/INFO]: [Skript] Loading variables...
[09:44:58] [Craft Scheduler Thread - 6 - Skulls/INFO]: Skulls » Tweetzy.ca's api is currently unavailable, you can try again shortly.
[09:44:58] [Craft Scheduler Thread - 6 - Skulls/INFO]: Skulls » Inserts were found, saving the following: 
[09:44:58] [User Authenticator #1/INFO]: UUID of player Monkey_2024 is 1cc5e829-433f-41b6-9fc8-ce5ddcf796d8
[09:44:58] [User Authenticator #0/INFO]: UUID of player Kingomatik is 037318b4-5311-42a1-97d7-d847f51c9f15
[09:44:58] [Server thread/INFO]: [Skript] Loaded 2553 variables in 0.0 seconds
[09:45:01] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[09:45:01] [Server thread/INFO]: [Skript] Loaded 6 scripts with a total of 23 structures in 3.28 seconds
[09:45:01] [Server thread/INFO]: [Skript] Finished loading.
[09:45:01] [Server thread/INFO]: [PlayerVaults] ** Vaults have already been converted to UUIDs. If this is incorrect, shutdown your server and rename the plugins/PlayerVaults/uuidvaults directory.
[09:45:01] [Server thread/INFO]: Skulls » Loaded 57650 skulls in 5,505.764ms
[09:45:01] [Server thread/INFO]: 0 placeholder hook(s) registered!
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition spawn
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: spawn
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/SoulStealer.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/SoulStealer.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/soulCaverner.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/soulCaverner.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/test.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/test.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/synapsecrateguardian.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/synapsecrateguardian.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/historymob1.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/historymob1.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/historymob2.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/historymob2.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop health 35000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/historymob3.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop damage 150000
[09:45:01] [Server thread/WARN]: [MythicMobs] --| File: /home/minecraft/server/plugins/MythicMobs/mobs/historymob3.yml
[09:45:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[09:45:01] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.6) is available at:
[09:45:01] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[09:45:01] [Server thread/INFO]: Done (29.387s)! For help, type "help"
[09:45:01] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3484ms or 69 ticks behind
[09:45:01] [Server thread/INFO]: Timings Reset
[09:45:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.27.0]
[09:45:01] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[09:45:01] [Server thread/INFO]: Kingomatik (/15.4.107.60:54458) lost connection: Disconnected
[09:45:01] [Craft Scheduler Thread - 4 - Essentials/WARN]: [Essentials] You're 29 EssentialsX dev build(s) out of date!
[09:45:01] [Craft Scheduler Thread - 4 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[09:45:01] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into Monkey_2024
[09:45:01] [Server thread/WARN]: Nag author(s): '[Ekpoa]' of 'PoaSkRewritev2 v4.7.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[09:45:04] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player Monkey_2024. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:45:04] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1516) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:45:04] [Server thread/INFO]: Monkey_2024 joined the game
[09:45:04] [Server thread/INFO]: Monkey_2024[/212.63.35.193:33572] logged in with entity id 2678 at ([GreekGod]52.34193193580769, 91.5, -9.753617610892565)
[09:45:07] [User Authenticator #1/INFO]: UUID of player JLking6 is 6427f3c6-c5c7-4e9a-b521-c71ae7f35769
[09:45:08] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into JLking6
[09:45:08] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player JLking6. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:45:08] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:112) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1557) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:45:08] [Server thread/INFO]: JLking6 joined the game
[09:45:08] [Server thread/INFO]: JLking6[/212.63.35.193:36134] logged in with entity id 6667 at ([timetravel]-19.136271821995937, 164.0, 21.792646905229738)
[09:45:10] [User Authenticator #1/INFO]: UUID of player _ccz is 95db0630-852b-4857-971f-2989f36ebb6c
[09:45:10] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into _ccz
[09:45:10] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:45:10] [Server thread/INFO]: [DiscordSRV] Player _ccz joined with silent joining permission, not sending a join message
[09:45:10] [Server thread/INFO]: _ccz joined the game
[09:45:10] [Server thread/INFO]: _ccz[/25.99.13.10:39178] logged in with entity id 6918 at ([newspawn]31.4892024720727, 62.0, -37.50362499443601)
[09:45:13] [Server thread/INFO]: _ccz issued server command: /pl
[09:45:15] [Server thread/INFO]: _ccz issued server command: /citizens
[09:45:15] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'citizens' in plugin Citizens v2.0.35-SNAPSHOT (build 3489) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchCommand(CraftServer.java:999) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.20.4.jar:git-Paper-496]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.2.9.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.CommandQueueEntry.a(CommandQueueEntry.java:5) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:434) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:336) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:323) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2230) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$14(ServerGamePacketListenerImpl.java:2190) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:112) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1557) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:45:24] [Server thread/INFO]: Monkey_2024 issued server command: /kit mugifpookie
[09:45:32] [Server thread/INFO]: _ccz lost connection: Disconnected
[09:45:32] [Server thread/INFO]: [DiscordSRV] Player _ccz quit with silent quitting permission, not sending a quit message
[09:45:33] [Server thread/INFO]: _ccz left the game
[09:45:37] [Server thread/INFO]: Monkey_2024 issued server command: /fly
[09:46:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:46:11] [Server thread/INFO]: GenSkysVM: • Killed 6442 dropped items
[09:46:12] [User Authenticator #2/INFO]: UUID of player Kingomatik is 037318b4-5311-42a1-97d7-d847f51c9f15
[09:46:12] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into Kingomatik
[09:46:13] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player Kingomatik. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:46:13] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:46:13] [Server thread/INFO]: Kingomatik joined the game
[09:46:13] [Server thread/INFO]: Kingomatik[/15.4.107.60:33540] logged in with entity id 14869 at ([mystic]-17.186340717583448, 99.0, -13.965306340364002)
[09:46:54] [Server thread/INFO]: JLking6 lost connection: Timed out
[09:46:54] [Server thread/INFO]: JLking6 left the game
[09:47:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:47:11] [Server thread/INFO]: GenSkysVM: • Killed 1171 dropped items
[09:47:27] [User Authenticator #3/INFO]: UUID of player JLking6 is 6427f3c6-c5c7-4e9a-b521-c71ae7f35769
[09:47:27] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into JLking6
[09:47:28] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player JLking6. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:47:28] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:47:28] [Server thread/INFO]: JLking6 joined the game
[09:47:28] [Server thread/INFO]: JLking6[/212.63.35.193:38358] logged in with entity id 24245 at ([timetravel]-26.10917696534106, 161.0, 31.947652315153288)
[09:47:41] [Async Chat Thread - #2/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: hi
[09:47:42] [Server thread/INFO]: Monkey_2024 issued server command: /spawn
[09:47:49] [Async Chat Thread - #2/INFO]: [Not Secure] ᴍᴜɢɪғ's ᴘᴏᴏᴋɪᴇ JLking6: hi
[09:48:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:48:03] [Server thread/INFO]: Monkey_2024 issued server command: /fly
[09:48:11] [Server thread/INFO]: GenSkysVM: • Killed 1248 dropped items
[09:48:26] [Async Chat Thread - #2/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: hi
[09:48:53] [Async Chat Thread - #2/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: bro why
[09:48:59] [Server thread/INFO]: Monkey_2024 issued server command: /warp greekgods
[09:49:00] [Async Chat Thread - #2/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: Monkey_2024
[09:49:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:49:11] [Server thread/INFO]: GenSkysVM: • Killed 893 dropped items
[09:49:20] [Server thread/INFO]: JLking6 issued server command: /echest
[09:49:29] [Server thread/INFO]: Monkey_2024 issued server command: /echest
[09:49:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /time set 6001 world1_nether
[09:49:50] [Server thread/INFO]: Error: Invalid world.
[09:49:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /time set 6001 world1_the_end
[09:49:50] [Server thread/INFO]: Error: Invalid world.
[09:49:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /time set 6001 world1
[09:49:50] [Server thread/INFO]: Error: Invalid world.
[09:49:50] [Server thread/INFO]: GenBoost: Monkey_2024 Activated a 25x gen boost for 300 seconds!
[09:49:55] [Server thread/INFO]: Monkey_2024 issued server command: /fly
[09:50:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:50:11] [Server thread/INFO]: GenSkysVM: • Killed 1769 dropped items
[09:51:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:51:11] [Server thread/INFO]: GenSkysVM: • Killed 3524 dropped items
[09:51:26] [Server thread/INFO]: JLking6 issued server command: /fly
[09:52:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:52:11] [Server thread/INFO]: GenSkysVM: • Killed 3525 dropped items
[09:52:18] [User Authenticator #4/INFO]: UUID of player _ccz is 95db0630-852b-4857-971f-2989f36ebb6c
[09:52:18] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into _ccz
[09:52:18] [Server thread/WARN]: Nag author(s): '[Ekpoa]' of 'PoaSkRewritev2 v4.7.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[09:52:19] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:52:19] [Server thread/INFO]: [DiscordSRV] Player _ccz joined with silent joining permission, not sending a join message
[09:52:19] [Server thread/INFO]: _ccz joined the game
[09:52:19] [Server thread/INFO]: _ccz[/25.99.13.10:35170] logged in with entity id 60857 at ([newspawn]32.1834859051231, 63.433375469222256, -36.971096127331265)
[09:52:20] [User Authenticator #4/INFO]: UUID of player JLking6 is 6427f3c6-c5c7-4e9a-b521-c71ae7f35769
[09:52:20] [Server thread/INFO]: JLking6 lost connection: You logged in from another location
[09:52:20] [Server thread/INFO]: JLking6 left the game
[09:52:20] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into JLking6
[09:52:21] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player JLking6. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:52:21] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:52:21] [Server thread/INFO]: JLking6 joined the game
[09:52:21] [Server thread/INFO]: JLking6[/212.63.35.193:42546] logged in with entity id 61109 at ([timetravel]-10.748068609146078, 161.25487298072872, 19.721792069203666)
[09:52:22] [Async Chat Thread - #4/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: hi
[09:52:25] [Async Chat Thread - #4/INFO]: ᴏᴡɴᴇʀ _ccz: hi
[09:53:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:53:03] [Server thread/INFO]: JLking6 issued server command: /fly
[09:53:11] [Server thread/INFO]: GenSkysVM: • Killed 3641 dropped items
[09:53:33] [Server thread/INFO]: JLking6 lost connection: Timed out
[09:53:33] [Server thread/INFO]: JLking6 left the game
[09:54:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:54:11] [Server thread/INFO]: GenSkysVM: • Killed 3797 dropped items
[09:54:12] [User Authenticator #5/INFO]: UUID of player JLking6 is 6427f3c6-c5c7-4e9a-b521-c71ae7f35769
[09:54:12] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into JLking6
[09:54:13] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player JLking6. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:54:13] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:54:13] [Server thread/INFO]: JLking6 joined the game
[09:54:13] [Server thread/INFO]: JLking6[/212.63.35.193:44424] logged in with entity id 74997 at ([timetravel]-19.69999998807907, 164.0, 21.440251218416087)
[09:54:25] [Server thread/INFO]: JLking6 issued server command: /fly
[09:54:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /time set 5999 world1_nether
[09:54:50] [Server thread/INFO]: Error: Invalid world.
[09:54:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /time set 5999 world1_the_end
[09:54:50] [Server thread/INFO]: Error: Invalid world.
[09:54:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /time set 5999 world1
[09:54:50] [Server thread/INFO]: Error: Invalid world.
[09:55:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:55:05] [Server thread/INFO]: Kingomatik issued server command: /spawn
[09:55:11] [Server thread/INFO]: GenSkysVM: • Killed 2955 dropped items
[09:55:18] [Server thread/INFO]: JLking6 lost connection: Disconnected
[09:55:18] [Server thread/INFO]: JLking6 left the game
[09:55:40] [Server thread/INFO]: Kingomatik issued server command: /warp
[09:56:00] [Server thread/INFO]: Monkey_2024 issued server command: /spawn
[09:56:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:56:05] [Server thread/INFO]: Monkey_2024 issued server command: /fly
[09:56:11] [Server thread/INFO]: GenSkysVM: • Killed 1436 dropped items
[09:56:59] [User Authenticator #6/INFO]: UUID of player JLking6 is 6427f3c6-c5c7-4e9a-b521-c71ae7f35769
[09:56:59] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into JLking6
[09:57:00] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 767 for player JLking6. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[09:57:00] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:57:00] [Server thread/INFO]: JLking6 joined the game
[09:57:00] [Server thread/INFO]: JLking6[/212.63.35.193:38154] logged in with entity id 95907 at ([timetravel]-7.300000011920929, 161.0, 31.165150999356158)
[09:57:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:57:03] [Async Chat Thread - #5/INFO]: ᴏᴡɴᴇʀ _ccz: i need to update the server
[09:57:08] [Async Chat Thread - #5/INFO]: ᴏᴡɴᴇʀ _ccz: or change its version
[09:57:11] [Server thread/INFO]: GenSkysVM: • Killed 1276 dropped items
[09:57:17] [Async Chat Thread - #5/INFO]: [Not Secure] ᴍᴜɢɪғ's ᴘᴏᴏᴋɪᴇ JLking6: ok
[09:57:26] [Server thread/INFO]: JLking6 issued server command: /fly
[09:57:28] [Async Chat Thread - #5/INFO]: ᴏᴡɴᴇʀ _ccz: but it may corrupt some stuff
[09:57:28] [Async Chat Thread - #5/INFO]: ᴏᴡɴᴇʀ _ccz: idk
[09:57:29] [Async Chat Thread - #5/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: where i can buy ranks
[09:57:45] [Async Chat Thread - #5/INFO]: ᴏᴡɴᴇʀ _ccz: Kingomatik hidden around spawn
[09:57:53] [Async Chat Thread - #5/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: ok
[09:57:54] [Async Chat Thread - #5/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: ty
[09:57:56] [Server thread/INFO]: Kingomatik issued server command: /spawn
[09:57:57] [Async Chat Thread - #5/INFO]: ᴏᴡɴᴇʀ _ccz: np
[09:58:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:58:11] [Server thread/INFO]: GenSkysVM: • Killed 1409 dropped items
[09:58:59] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: where at the spawn
[09:59:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[09:59:11] [Server thread/INFO]: GenSkysVM: • Killed 1271 dropped items
[09:59:31] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: _ccz
[09:59:34] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: yo
[09:59:35] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: hidden
[09:59:37] [Server thread/INFO]: _ccz issued server command: /pl
[09:59:39] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: where
[09:59:57] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: the point is that its hidden
[09:59:58] [Server thread/INFO]: Kingomatik issued server command: /spawbn
[10:00:00] [Async Chat Thread - #7/INFO]: [Not Secure] ᴍᴜɢɪғ's ᴘᴏᴏᴋɪᴇ JLking6: spawn
[10:00:01] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: you have to find it
[10:00:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[10:00:11] [Server thread/INFO]: GenSkysVM: • Killed 1243 dropped items
[10:00:15] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: broo
[10:00:32] [Async Chat Thread - #7/INFO]: [Not Secure] ᴍᴜɢɪғ's ᴘᴏᴏᴋɪᴇ JLking6: it is somwhere
[10:00:34] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: Monkey_2024 can you say where
[10:00:54] [Async Chat Thread - #7/INFO]: [Not Secure] ᴡɪᴛʜᴇʀʟᴏʀᴅ Monkey_2024: where
[10:01:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[10:01:11] [Server thread/INFO]: GenSkysVM: • Killed 1273 dropped items
[10:01:16] [Server thread/INFO]: Monkey_2024 issued server command: /echest
[10:01:22] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: are the ranks
[10:01:26] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: ty
[10:01:40] [Server thread/INFO]: JLking6 issued server command: /kit mugifpookie
[10:01:40] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: how i use it
[10:02:01] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: ok
[10:02:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[10:02:09] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: and how i use it
[10:02:11] [Server thread/INFO]: GenSkysVM: • Killed 1242 dropped items
[10:02:24] [Async Chat Thread - #7/INFO]: [Not Secure] ᴅɪᴀᴍᴏɴᴅ Kingomatik: _ccz how i use a rank
[10:02:30] [Server thread/INFO]: _ccz issued server command: /invsee Kingomatik
[10:02:35] [Server thread/INFO]: _ccz issued server command: /lp user Kingomatik parent set goddess
[10:02:35] [luckperms-command-executor/INFO]: [LP] LOG > (_ccz) [U] (kingomatik)
[10:02:35] [luckperms-command-executor/INFO]: [LP] LOG > parent set goddess
[10:02:38] [Async Chat Thread - #7/INFO]: [Not Secure] ɢᴏᴅᴅᴇss Kingomatik: ty
[10:02:44] [User Authenticator #7/INFO]: UUID of player dark_mika is 83d82992-098e-408d-8e0d-5c276a67e6e5
[10:02:44] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into dark_mika
[10:02:44] [Server thread/WARN]: Nag author(s): '[Ekpoa]' of 'PoaSkRewritev2 v4.7.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[10:02:44] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[10:02:44] [Server thread/INFO]: dark_mika joined the game
[10:02:44] [Server thread/INFO]: dark_mika[/140.22.222.243:37112] logged in with entity id 139774 at ([world]571.455941669773, 298.0, 764.7547474802367)
[10:02:52] [Async Chat Thread - #7/INFO]: sʀ.ᴍᴏᴅ dark_mika: yo yo
[10:02:53] [Async Chat Thread - #7/INFO]: [Not Secure] ɢᴏᴅᴅᴇss Kingomatik: what i can with godess
[10:03:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[10:03:07] [Async Chat Thread - #7/INFO]: sʀ.ᴍᴏᴅ dark_mika: _ccz
[10:03:10] [User Authenticator #7/INFO]: UUID of player Topaqqe is 3c77797b-5533-4320-bf48-bf3a4eff37a1
[10:03:10] [Server thread/INFO]: [PoaSkRewritev2] [STDOUT] Injected packet listener into Topaqqe
[10:03:11] [Server thread/INFO]: GenSkysVM: • Killed 1244 dropped items
[10:03:11] [TAB Processing Thread/INFO]: [TAB] [WARN] ViaVersion returned unknown protocol version 766 for player Topaqqe. Latest version recognized by this plugin version is 765 (1.20.3). Did a new MC version come out without you updating the plugin? This may result in plugin not working correctly for them.
[10:03:11] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Rules v1.5
java.lang.IllegalArgumentException: Cannot translate null text
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.ChatColor.translateAlternateColorCodes(ChatColor.java:356) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.bear53.rules.Main.OnPlayerJoin(Main.java:122) ~[Rules.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor350.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:git-Paper-496]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:345) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:134) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:54) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:133) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1343) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1232) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[10:03:11] [Server thread/INFO]: Topaqqe joined the game
[10:03:11] [Server thread/INFO]: Topaqqe[/5.59.206.131:35640] logged in with entity id 143150 at ([world]576.435940741605, 309.37605943634753, 758.5926713718087)
[10:03:16] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: ylo
[10:03:17] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: yo*
[10:03:19] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: HELLLLLLO
[10:03:19] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: wait wtf
[10:03:21] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: wth
[10:03:21] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: TOP?
[10:03:24] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: are you owner now?
[10:03:28] [Server thread/INFO]: Topaqqe issued server command: /fly
[10:03:29] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: xD
[10:03:36] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: you still dont know who i am :/
[10:03:37] [Async Chat Thread - #7/INFO]: [Not Secure] ɢᴏᴅᴅᴇss Kingomatik: what is
[10:03:40] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: you are mugif
[10:03:40] [Async Chat Thread - #7/INFO]: [Not Secure] ɢᴏᴅᴅᴇss Kingomatik: dark_mika
[10:03:42] [Async Chat Thread - #7/INFO]: sʀ.ᴍᴏᴅ dark_mika: ?
[10:03:52] [Server thread/INFO]: dark_mika issued server command: /fly
[10:03:56] [Async Chat Thread - #7/INFO]: [Not Secure] ɢᴏᴅᴅᴇss Kingomatik: ey
[10:03:56] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: uhm
[10:03:56] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: yup
[10:03:58] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: sorry sir
[10:04:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[10:04:03] [Server thread/INFO]: dark_mika issued server command: /tp2p _ccz
[10:04:07] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: how did you even change your name
[10:04:11] [Server thread/INFO]: GenSkysVM: • Killed 1242 dropped items
[10:04:16] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: idk i just did
[10:04:24] [Server thread/INFO]: Kingomatik issued server command: /spawn
[10:04:31] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: DO KEYALL
[10:04:31] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: dark_mika i would have done a hella lot more by now
[10:04:32] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: but
[10:04:37] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: im tryna fix citizens
[10:04:43] [Async Chat Thread - #7/INFO]: ᴏᴡɴᴇʀ _ccz: so we can have cool traders
[10:04:49] [Server thread/INFO]: Topaqqe issued server command: /crates
[10:04:50] [Async Chat Thread - #7/INFO]: sʀ.ᴍᴏᴅ dark_mika: alr
[10:04:58] [Async Chat Thread - #7/INFO]: [Not Secure] ᴄᴏᴏʟʙᴀɴᴀɴᴀ's ᴘᴇᴛ Topaqqe: ishowballs
[10:05:01] [Server thread/INFO]: GenSkysVM: • Clearing lag in 10 seconds
[10:05:02] [Server thread/INFO]: Kingomatik issued server command: /sapwn
[10:05:03] [Async Chat Thread - #7/INFO]: [Not Secure] ɢᴏᴅᴅᴇss Kingomatik: 7spawbn
[10:05:05] [Server thread/INFO]: Kingomatik issued server command: /spawbn
[10:05:11] [Server thread/INFO]: GenSkysVM: • Killed 1241 dropped items
[10:05:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[10:05:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[10:05:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Skulls' to create a bStats instance!