Paste #130578: Citizen 2 error plugin dosent work at all

Date: 2025/02/03 19:08:33 UTC-08: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


[02:16:48] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Linux 6.2.0-36-generic (amd64)
[02:16:48] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.3-81-master@da71382 (2024-12-03T14:58:13Z) for Minecraft 1.21.3
[02:16:48] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[02:16:49] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.37-b3711.jar'...
[02:16:50] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.37-b3711.jar' in 1385ms.
[02:16:51] [ServerMain/INFO]: [PluginInitializerManager] Initialized 46 plugins
[02:16:51] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - EconomyShopGUI (6.10.2)
[02:16:51] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (45):
 - AdvancedBan (2.3.0), AuctionHouse (3.7.1), Badwords (1.0), BetterRTP (3.6.13), BetterTeams (4.10.0), Citizens (2.0.37-SNAPSHOT (build 3711)), DecentHolograms (2.8.12), DeluxeMenus (1.14.0-Release), Essentials (2.21.0-dev+155-803771e), EssentialsChat (2.21.0-dev+155-803771e), EssentialsSpawn (2.21.0-dev+155-803771e), ExcellentCrates (5.3.5), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1026;c522860), Helix (1.0.2), ItemEdit (3.6.3), ItemTag (3.5.1), KeyAllX (0.1.4), LPC (3.6.0), LuckPerms (5.4.131), MinehutCosmetics (1.0.0), MinehutPlugin (0.0.27-SNAPSHOT), Multiverse-Core (4.3.1-b861), NexEngine (2.2.12), PlaceholderAPI (2.11.6), PlayerVaults (3.6.0-bSNAPSHOT), ProtocolLib (5.3.0), SkBee (3.8.1), Skript (2.10.0), TAB (5.0.3), Tebex (2.1.0), Themis (0.17.3), TimeManager (1.10.1), Vault (1.7.3-b131), ViaBackwards (5.2.1), ViaVersion (5.2.1), VotingPlugin (6.18), WorldEdit (7.3.10+7004-768a436), WorldGuard (7.0.12+829a4a4), ajLeaderboards (2.9.0), goBrush (3.8.0-87), nightcore (2.7.3), skRayFall (1.9.28), skript-gui (1.3), skript-reflect (2.6), skript-yaml (1.6.1)
[02:16:53] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:16:55] [ServerMain/INFO]: Loaded 1337 recipes
[02:16:55] [ServerMain/INFO]: Loaded 1448 advancements
[02:16:55] [Server thread/INFO]: Starting minecraft server version 1.21.3
[02:16:55] [Server thread/INFO]: Loading properties
[02:16:55] [Server thread/INFO]: This server is running Paper version 1.21.3-81-master@da71382 (2024-12-03T14:58:13Z) (Implementing API version 1.21.3-R0.1-SNAPSHOT)
[02:16:55] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[02:16:55] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:16:55] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:16:56] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[02:16:56] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[02:16:56] [Server thread/INFO]: Default game type: SURVIVAL
[02:16:56] [Server thread/INFO]: Generating keypair
[02:16:56] [Server thread/INFO]: Starting Minecraft server on *:25575
[02:16:56] [Server thread/INFO]: Using epoll channel type
[02:16:56] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[02:16:56] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[02:16:56] [Server thread/WARN]: [ModernPluginLoadingStrategy] `WorldEdit' is provided by both `FastAsyncWorldEdit' and `WorldEdit'
[02:16:57] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'worldedit-bukkit-7.3.10.jar' in folder 'plugins/.paper-remapped'
java.lang.IllegalStateException: Provider SpigotPluginProvider{path=plugins/.paper-remapped/worldedit-bukkit-7.3.10.jar, description=org.bukkit.plugin.PluginDescriptionFile@1605ac76, jarFile=java.util.jar.JarFile@567e214c, status=null, dependencyContext=null} attempted to add duplicate plugin identifier FastAsyncWorldEdit v2.12.4-SNAPSHOT-1026;c522860 THIS WILL CREATE BUGS!!!
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage$1.applyContext(ServerPluginProviderStorage.java:28) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:113) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:561) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:289) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/minecraft/server/libraries/net/kyori/adventure-text-serializer-legacy/4.16.0/adventure-text-serializer-legacy-4.16.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[02:16:57] [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
[02:16:57] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.3.
[02:16:57] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[02:16:57] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[02:16:57] [Server thread/INFO]: [MinehutPlugin] Found matching version for version 1.21.3-R0.1-SNAPSHOT (V1_21_R3)
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[02:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/minecraft/server/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[02:16:57] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[02:17:04] [Server thread/WARN]: Legacy plugin PlayerVaults v3.6.0-bSNAPSHOT does not specify an api-version.
[02:17:04] [Server thread/WARN]: Legacy plugin Badwords v1.0 does not specify an api-version.
[02:17:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[02:17:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[02:17:04] [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
[02:17:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[02:17:04] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[02:17:04] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[02:17:04] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[02:17:04] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[02:17:04] [Server thread/INFO]: [ViaBackwards] Loading translations...
[02:17:04] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[02:17:05] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[02:17:05] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[02:17:05] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1026;c522860
[02:17:05] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[02:17:06] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@704fb95a]
[02:17:06] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[02:17:06] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+155-803771e
[02:17:06] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[02:17:06] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[02:17:06] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.3) has not yet been tested! Proceed with caution.
[02:17:06] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[02:17:06] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.10.0
[02:17:06] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[02:17:06] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+155-803771e
[02:17:06] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[02:17:06] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3711)
[02:17:06] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.6.3
[02:17:06] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.3
[02:17:06] [Server thread/INFO]: [MinehutCosmetics] Loading server plugin MinehutCosmetics v1.0.0
[02:17:06] [Server thread/INFO]: [MinehutPlugin] Loading server plugin MinehutPlugin v0.0.27-SNAPSHOT
[02:17:06] [Server thread/INFO]: [TimeManager] Loading server plugin TimeManager v1.10.1
[02:17:06] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[02:17:06] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[02:17:06] [Server thread/INFO]: [skript-yaml] Loading server plugin skript-yaml v1.6.1
[02:17:06] [Server thread/INFO]: [skript-reflect] Loading server plugin skript-reflect v2.6
[02:17:06] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.17.3
[02:17:08] [Server thread/INFO]: [goBrush] Loading server plugin goBrush v3.8.0-87
[02:17:08] [Server thread/INFO]: [skript-gui] Loading server plugin skript-gui v1.3
[02:17:08] [Server thread/INFO]: [KeyAllX] Loading server plugin KeyAllX v0.1.4
[02:17:08] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18
[02:17:08] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.10.2
[02:17:08] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.1.0
[02:17:08] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.10.0
[02:17:08] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[02:17:08] [Server thread/INFO]: [BetterTeams] File is up to date
[02:17:08] [Server thread/INFO]: [Helix] Loading server plugin Helix v1.0.2
[02:17:08] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.7.1
[02:17:08] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[02:17:08] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v3.6.0-bSNAPSHOT
[02:17:08] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[02:17:08] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[02:17:08] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.8.1
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[02:17:08] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[02:17:08] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[02:17:08] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.5.1
[02:17:08] [Server thread/INFO]: [Badwords] Loading server plugin Badwords v1.0
[02:17:08] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.5
[02:17:08] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+155-803771e
[02:17:08] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[02:17:08] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[02:17:08] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:17:08] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[02:17:09] [Server thread/INFO]:         __    
[02:17:09] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[02:17:09] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[02:17:09] [Server thread/INFO]: 
[02:17:09] [Server thread/INFO]: [LuckPerms] Loading configuration...
[02:17:09] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[02:17:10] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[02:17:10] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[02:17:10] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2254ms)
[02:17:10] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[02:17:10] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[02:17:11] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[02:17:11] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[02:17:11] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[02:17:11] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1026;c522860
[02:17:11] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[02:17:11] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[02:17:11] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:17:11] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:17:11] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_3.PaperweightFaweAdapter as the Bukkit adapter
[02:17:11] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[02:17:11] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.3
[02:17:11] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[02:17:11] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[02:17:11] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[02:17:11] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[02:17:11] [Server thread/INFO]: [nightcore] Plugin loaded in 88 ms!
[02:17:11] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[02:17:11] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[02:17:11] [Server thread/WARN]: [NexEngine] ==================================
[02:17:11] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[02:17:11] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[02:17:11] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[02:17:11] [Server thread/WARN]: [NexEngine] ==================================
[02:17:11] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[02:17:11] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[02:17:11] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[02:17:12] [Server thread/INFO]: [NexEngine] Plugin loaded in 66 ms!
[02:17:12] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[02:17:12] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[02:17:12] [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.
[02:17:12] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[02:17:12] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[02:17:12] [Server thread/INFO]: Preparing level "world"
[02:17:12] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:17:12] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 9 build(s) out of date.
You are running build 1026, the latest version is build 1035.
Update at https://www.spigotmc.org/resources/13932/
[02:17:12] [Paper Common Worker #0/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[02:17:12] [Paper Common Worker #0/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 250.5ms
[02:17:12] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:12] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:13] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:13] [Server thread/INFO]: Time elapsed: 1117 ms
[02:17:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:17:13] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:13] [Server thread/INFO]: Time elapsed: 116 ms
[02:17:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:17:13] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:13] [Server thread/INFO]: Time elapsed: 65 ms
[02:17:13] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[02:17:13] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.2-1.21.3 (768)
[02:17:13] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[02:17:13] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[02:17:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[02:17:13] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:17:13] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+155-803771e
[02:17:14] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[02:17:14] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[02:17:14] [Server thread/INFO]: [Essentials] No kits found to migrate.
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Reflection Spawner Block Provider as the provider for SpawnerBlockProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[02:17:14] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[02:17:14] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[02:17:14] [Server thread/INFO]: [Essentials] Using locale en_US
[02:17:14] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:17:14] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:17:14] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[02:17:14] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[02:17:14] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[02:17:14] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:17:14] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[02:17:14] [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--].
[02:17:14] [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.
[02:17:15] [Server thread/INFO]: Preparing start region for dimension minecraft:the
[02:17:15] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:15] [Server thread/INFO]: Time elapsed: 105 ms
[02:17:15] [Server thread/INFO]: [WorldGuard] (The) TNT ignition is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (The) Lighters are PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (The) Lava fire is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (The) Fire spread is UNRESTRICTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'The'
[02:17:15] [Server thread/INFO]: Preparing start region for dimension minecraft:actualspawn
[02:17:15] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:15] [Server thread/INFO]: Time elapsed: 148 ms
[02:17:15] [Server thread/INFO]: [WorldGuard] (ACTUALSPAWN) TNT ignition is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (ACTUALSPAWN) Lighters are PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (ACTUALSPAWN) Lava fire is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (ACTUALSPAWN) Fire spread is UNRESTRICTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ACTUALSPAWN'
[02:17:15] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[02:17:15] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:15] [Server thread/INFO]: Time elapsed: 114 ms
[02:17:15] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[02:17:15] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn1
[02:17:15] [Server thread/INFO]: Preparing spawn area: 0%
[02:17:15] [Server thread/INFO]: Time elapsed: 79 ms
[02:17:15] [Server thread/INFO]: [WorldGuard] (SPAWN1) TNT ignition is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (SPAWN1) Lighters are PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (SPAWN1) Lava fire is PERMITTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] (SPAWN1) Fire spread is UNRESTRICTED.
[02:17:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SPAWN1'
[02:17:15] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[02:17:15] [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.
[02:17:15] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[02:17:15] [Server thread/INFO]: [Skript] Enabling Skript v2.10.0
[02:17:16] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript]     Checking for updates failed. Do you have Internet connection?
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]: java.util.concurrent.CompletionException: java.lang.RuntimeException: java.io.IOException: Server returned HTTP response code: 403 for URL: https://api.github.com/repos/SkriptLang/Skript/releases
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]: Caused by: java.lang.RuntimeException: java.io.IOException: Server returned HTTP response code: 403 for URL: https://api.github.com/repos/SkriptLang/Skript/releases
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at Skript-2.10.0.jar//ch.njol.skript.update.GithubChecker.lambda$check$0(GithubChecker.java:97)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     ... 6 more
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]: Caused by: java.io.IOException: Server returned HTTP response code: 403 for URL: https://api.github.com/repos/SkriptLang/Skript/releases
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1998)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1599)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at java.base/java.net.URL.openStream(URL.java:1325)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     at Skript-2.10.0.jar//ch.njol.skript.update.GithubChecker.lambda$check$0(GithubChecker.java:91)
[02:17:16] [ForkJoinPool.commonPool-worker-1/WARN]:     ... 7 more
[02:17:16] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[02:17:16] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[02:17:16] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+155-803771e
[02:17:16] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[02:17:16] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[02:17:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[02:17:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[02:17:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[02:17:16] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3711)
[02:17:16] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[02:17:16] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3711) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens-2.0.37-b3711.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2730) ~[Citizens-2.0.37-b3711.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at Citizens-2.0.37-b3711.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens-2.0.37-b3711.jar:?]
    at Citizens-2.0.37-b3711.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens-2.0.37-b3711.jar:?]
    at Citizens-2.0.37-b3711.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.37-b3711.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[02:17:16] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3711)
[02:17:16] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.6.3
[02:17:16] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[02:17:17] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[02:17:17] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[02:17:17] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[02:17:17] [Server thread/INFO]: [ItemEdit] placeholders:
[02:17:17] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[02:17:17] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[02:17:17] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[02:17:17] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[02:17:17] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[02:17:17] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[02:17:17] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[02:17:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[02:17:17] [Server thread/INFO]: [ItemEdit] # Enabled (took 199 ms)
[02:17:17] [Server thread/INFO]: [MinehutCosmetics] Enabling MinehutCosmetics v1.0.0
[02:17:17] [Server thread/INFO]: [MinehutCosmetics] Using operation mode 'PLAYER_SERVER'!
[02:17:17] [Server thread/INFO]: [MinehutPlugin] Enabling MinehutPlugin v0.0.27-SNAPSHOT
[02:17:17] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5418 aliases in 1347ms
[02:17:18] [Server thread/INFO]: [TimeManager] Enabling TimeManager v1.10.1
[02:17:18] [Server thread/INFO]: [TimeManager] The configuration file already exists.
[02:17:19] [Server thread/INFO]: [TimeManager] The worlds list was actualized.
[02:17:19] [Server thread/INFO]: [TimeManager] Enabled config.yml v1.10.1.
[02:17:19] [Server thread/INFO]: [TimeManager] The language file already exists.
[02:17:19] [Server thread/INFO]: [TimeManager] Default translation is actually set to default.
[02:17:19] [Server thread/INFO]: [TimeManager] default exists in lang.yml, keep it as default translation.
[02:17:19] [Server thread/INFO]: [TimeManager] Multilanguage support is disable.
[02:17:19] [Server thread/INFO]: [TimeManager] Enabled lang.yml v1.10.1.
[02:17:19] [Server thread/INFO]: [TimeManager] The language file already exists.
[02:17:19] [Server thread/INFO]: [TimeManager] The commands scheduler is disable.
[02:17:19] [Server thread/INFO]: [TimeManager] Enabled cmds.yml v1.10.1.
[02:17:19] [Server thread/INFO]: [TimeManager] The plugin is now enabled, timers will be initialized when all the other plugins are loaded.
[02:17:19] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[02:17:19] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[02:17:19] [Server thread/ERROR]: [DeluxeMenus] Detected invalid configuration in file: config.yml
[02:17:19] [Server thread/ERROR]: [DeluxeMenus] Detected invalid configuration in file: config.yml
org.bukkit.configuration.InvalidConfigurationException: expected '<document start>', but found '<block mapping start>'
 in 'reader', line 3, column 1:
    A full wiki on how to use this p ... 
    ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at DeluxeMenus-1.14.0-Release.jar/com.extendedclip.deluxemenus.config.DeluxeMenusConfig.checkConfig(DeluxeMenusConfig.java:245) ~[DeluxeMenus-1.14.0-Release.jar:?]
    at DeluxeMenus-1.14.0-Release.jar/com.extendedclip.deluxemenus.config.DeluxeMenusConfig.checkConfig(DeluxeMenusConfig.java:238) ~[DeluxeMenus-1.14.0-Release.jar:?]
    at DeluxeMenus-1.14.0-Release.jar/com.extendedclip.deluxemenus.config.DeluxeMenusConfig.loadDefConfig(DeluxeMenusConfig.java:144) ~[DeluxeMenus-1.14.0-Release.jar:?]
    at DeluxeMenus-1.14.0-Release.jar/com.extendedclip.deluxemenus.DeluxeMenus.onEnable(DeluxeMenus.java:119) ~[DeluxeMenus-1.14.0-Release.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: expected '<document start>', but found '<block mapping start>'
 in 'reader', line 3, column 1:
    A full wiki on how to use this p ... 
    ^

    at org.yaml.snakeyaml.parser.ParserImpl$ParseDocumentStart.produce(ParserImpl.java:250) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    ... 18 more
[02:17:19] [Server thread/WARN]: [DeluxeMenus] Failed to load from config.yml. Use /dm reload after fixing your errors.
[02:17:19] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[02:17:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[02:17:19] [Server thread/INFO]: [skript-yaml] Enabling skript-yaml v1.6.1
[02:17:19] [Server thread/INFO]: [skript-reflect] Enabling skript-reflect v2.6
[02:17:19] [ForkJoinPool.commonPool-worker-1/ERROR]: Failed to check for updates: Unexpected JSON format.
[02:17:19] [Server thread/INFO]: [Themis] Enabling Themis v0.17.3
[02:17:19] [Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[02:17:20] [Server thread/INFO]: [goBrush] Enabling goBrush v3.8.0-87
[02:17:21] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3
[02:17:21] [Server thread/INFO]: [Skript]     Missing version in default.lang
[02:17:21] [Server thread/ERROR]: [Skript] 

WARNING!

An addon attempted to load a deprecated/outdated/removed 'Converters' class.

The plugin 'skript-gui v1.3' tried to use a class that has been deprecated/removed in this version of Skript.
Please make sure you are using the latest supported version of the addon.

If there are no supported versions, you should contact the author(s): [APickledWalrus, Tuke_Nuke], and ask them to update it.

(This addon may not work correctly on this version of Skript.)


[02:17:21] [Server thread/INFO]: [KeyAllX] Enabling KeyAllX v0.1.4
[02:17:21] [Server thread/INFO]: [KeyAllX] Loading Commands
[02:17:21] [Server thread/INFO]: [KeyAllX] Loaded Commands
[02:17:21] [Server thread/INFO]: [KeyAllX] Loading Metrics / bStats
[02:17:21] [Server thread/INFO]: [KeyAllX] Loaded Metrics / bStats
[02:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: keyallx [0.1.4]
[02:17:21] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18
[02:17:21] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[02:17:21] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[02:17:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[02:17:21] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[02:17:22] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[02:17:22] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[02:17:22] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18
[02:17:22] [Server thread/INFO]: [VotingPlugin] Using dev build, this is not a stable build, use at your own risk. Build number: NOTSET
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.10.2
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.3...
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[02:17:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[02:17:22] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 246ms to complete
[02:17:22] [Server thread/INFO]: [Tebex] Enabling Tebex v2.1.0
[02:17:22] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.10.0
[02:17:22] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[02:17:22] [Server thread/INFO]: [BetterTeams] File is up to date
[02:17:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.10.0]
[02:17:22] [Server thread/INFO]: Display team name config value: prefix
[02:17:22] [Server thread/INFO]: Loading below name. Type: PREFIX
[02:17:22] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@768cb377
[02:17:22] [Server thread/INFO]: [Helix] Enabling Helix v1.0.2
[02:17:22] [Server thread/INFO]: [Helix 1.0.2]  === STARTING ACTIVATION ===
[02:17:22] [Server thread/WARN]: java.lang.NoSuchFieldException: modifiers
[02:17:22] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[02:17:22] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.<clinit>(ReflectionUtil.java:17)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.command.CommandHandler.<init>(CommandHandler.java:155)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.command.CommandHandler.<clinit>(CommandHandler.java:19)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.plugin.BPlugin.onEnable(BPlugin.java:29)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[02:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.setInt(Object, int)" because "me.ByteMagic.Helix.utils.reflection.ReflectionUtil.FIELD_DOT_MODIFIERS" is null
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.makeAccessible(ReflectionUtil.java:37)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.getField(ReflectionUtil.java:67)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.command.CommandHandler.<init>(CommandHandler.java:155)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.command.CommandHandler.<clinit>(CommandHandler.java:19)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.plugin.BPlugin.onEnable(BPlugin.java:29)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[02:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.setInt(Object, int)" because "me.ByteMagic.Helix.utils.reflection.ReflectionUtil.FIELD_DOT_MODIFIERS" is null
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.makeAccessible(ReflectionUtil.java:37)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.getField(ReflectionUtil.java:67)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.command.CommandHandler.<clinit>(CommandHandler.java:149)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.plugin.BPlugin.onEnable(BPlugin.java:29)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[02:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:17:22] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.setInt(Object, int)" because "me.ByteMagic.Helix.utils.reflection.ReflectionUtil.FIELD_DOT_MODIFIERS" is null
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.makeAccessible(ReflectionUtil.java:37)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.utils.reflection.ReflectionUtil.getField(ReflectionUtil.java:67)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.command.CommandHandler.<init>(CommandHandler.java:155)
[02:17:22] [Server thread/WARN]:     at Helix - 1.0.2.jar//me.ByteMagic.Helix.plugin.BPlugin.onEnable(BPlugin.java:29)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:17:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:17:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[02:17:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[02:17:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[02:17:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:17:22] [Server thread/INFO]: [Helix 1.0.2]  Activating Helix 1.0.2
[02:17:22] [Server thread/INFO]: [Helix 1.0.2]  === Activation Complete in (37ms) ===
[02:17:22] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.7.1
[02:17:22] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[02:17:22] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[02:17:22] [Server thread/INFO]: [AuctionHouse] Using NMS version craftbukkit
[02:17:22] [Server thread/ERROR]: [AuctionHouse] Error! This plugin only supports Spigot-API 1.20.4-R0.1-SNAPSHOT!
[02:17:22] [Server thread/ERROR]: [AuctionHouse] Plugin will be disabled!
[02:17:22] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v3.7.1
[02:17:22] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[02:17:22] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[02:17:22] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[02:17:22] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[02:17:22] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[02:17:22] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[02:17:22] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[02:17:22] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[02:17:22] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[02:17:22] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[02:17:22] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[02:17:22] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to OutOfHearts - Minecraft: Java Edition server.
[02:17:23] [Server thread/INFO]: [skRayFall] Bacon is ready!
[02:17:23] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v3.6.0-bSNAPSHOT*
[02:17:23] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[02:17:23] [Server thread/INFO]: [TAB] Loaded NMS hook in 15ms
[02:17:23] [Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "placeholders.register-tab-expansion" of type Boolean, using default value false.
[02:17:23] [Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "mysql.useSSL" of type Boolean, using default value true.
[02:17:23] [Server thread/INFO]: [TAB] [WARN] [config.yml] Both global playerlist and layout features are enabled, but layout makes global playerlist redundant. Layout automatically works with all connected players on the proxy and replaces real player entries with fake players, making global playerlist completely useless. Disable global playerlist for the same result, but with better performance.
[02:17:23] [Server thread/INFO]: [TAB] [WARN] Failed to connect to MySQL: java.net.ConnectException: Connection refused
[02:17:23] [Server thread/INFO]: [TAB] [WARN] Found a total of 3 issues.
[02:17:23] [Server thread/INFO]: [TAB] Enabled in 207ms
[02:17:23] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[02:17:23] [Server thread/INFO]: [SkBee] Enabling SkBee v3.8.1
[02:17:23] [Server thread/INFO]: [SkBee] Registry Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Loading NBTApi...
[02:17:23] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[02:17:23] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[02:17:23] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[02:17:23] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Damage Source Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Display Entity Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Fishing Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] RayTrace Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Scoreboard[Adventure] Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] SwitchCase Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Minecraft Tag Elements disabled (now in Skript)
[02:17:23] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Tick Manager Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[02:17:23] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[02:17:23] [Server thread/INFO]: [SkBee] Loaded (443) elements:
[02:17:23] [Server thread/INFO]: [SkBee]  - 51 events
[02:17:23] [Server thread/INFO]: [SkBee]  - 72 effects
[02:17:23] [Server thread/INFO]: [SkBee]  - 266 expressions
[02:17:23] [Server thread/INFO]: [SkBee]  - 25 conditions
[02:17:23] [Server thread/INFO]: [SkBee]  - 29 sections
[02:17:23] [Server thread/INFO]: [SkBee] Checking for update...
[02:17:23] [Server thread/INFO]: [SkBee] Checking for update failed!
[02:17:23] [Server thread/INFO]: [SkBee] Successfully enabled v3.8.1 in 0.49 seconds
[02:17:23] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[02:17:24] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[02:17:24] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[02:17:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[02:17:24] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[02:17:24] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[02:17:24] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[02:17:24] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[02:17:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[02:17:24] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.5.1
[02:17:24] [Server thread/INFO]: [ItemTag] Data using Spigot PersistentDataContainer
[02:17:24] [Server thread/INFO]: [ItemTag] EquipmentChangeListener
[02:17:24] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[02:17:24] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[02:17:24] [Server thread/INFO]: [ItemTag] placeholders:
[02:17:24] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[02:17:24] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[02:17:24] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[02:17:24] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[02:17:24] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[02:17:24] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[02:17:24] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[02:17:24] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[02:17:24] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[02:17:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemtag [1.0]
[02:17:24] [Server thread/INFO]: [ItemTag] # Enabled (took 33 ms)
[02:17:24] [Server thread/INFO]: [Badwords] Enabling Badwords v1.0*
[02:17:24] [Server thread/INFO]: The badwords.yml file has been saved
[02:17:24] [Server thread/INFO]: The badwords.yml file has been reload
[02:17:24] [Server thread/INFO]: -----------------------------
[02:17:24] [Server thread/INFO]: Badwords Plugin Enabled!
[02:17:24] [Server thread/INFO]: Plugin develloped by GFelberg
[02:17:24] [Server thread/INFO]: -----------------------------
[02:17:24] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.5
[02:17:24] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[02:17:24] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[02:17:24] [Server thread/WARN]: [ExcellentCrates] EconomyBridge is not installed. Crate open cost feature will be disabled.
[02:17:24] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[02:17:24] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@24be809e
[02:17:24] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[02:17:24] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:17:24] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[02:17:25] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[02:17:25] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[02:17:25] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[02:17:25] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[02:17:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.5]
[02:17:25] [Server thread/INFO]: [ExcellentCrates] [DEBUG] Inject post-loading code...
[02:17:25] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 454 ms!
[02:17:25] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+155-803771e
[02:17:25] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[02:17:25] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[02:17:25] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[02:17:25] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[02:17:25] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[02:17:25] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[02:17:25] [Server thread/INFO]: [spark] Starting background profiler...
[02:17:25] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[02:17:25] [Server thread/INFO]: Done preparing level "world" (13.960s)
[02:17:25] [Server thread/INFO]: Running delayed init tasks
[02:17:25] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[02:17:25] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[02:17:25] [Craft Scheduler Thread - 10 - PlayerVaults/INFO]: [PlayerVaults] We didn't find an update!
[02:17:25] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] Checking for Updates ... 
[02:17:25] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[02:17:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[02:17:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[02:17:26] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[02:17:26] [Craft Scheduler Thread - 6 - Themis/WARN]: [Themis] You're running an outdated version of Themis, you should update as soon as possible!
[02:17:26] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] No new version available
[02:17:26] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loaded 17 holograms!
[02:17:26] [Server thread/INFO]: [Skript] Loading variables...
[02:17:26] [Server thread/INFO]: [Skript] Loaded 60 variables in 0.0 seconds
[02:17:26] [Server thread/INFO]: [Skript] Line 1: (CombatLog.sk)
[02:17:26] [Server thread/INFO]:     indentation error: expected 0 tabs, but found 1 space
[02:17:26] [Server thread/INFO]:     Line: Thanks for installing this Skript, before you run it make sure to fully edit the config at the top of the Skript. Thanks.
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript]     'FreeRank.sk' is empty
[02:17:26] [Server thread/INFO]: [Skript] Line 36: (PlayTime.sk)
[02:17:26] [Server thread/INFO]:     indentation error: expected 16 spaces, but found 13 spaces
[02:17:26] [Server thread/INFO]:     Line: make gui slot 14 with minecart with hopper named "&f&lPlayTime 4" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", " &f24 hours", "", "&f&lʀᴇᴡᴀʀᴅ:", " &9✦ 150 Gems", " &a$150,000", "", "&c✘ ʏᴏᴜ ᴄᴀɴ'ᴛ ᴄʟᴀɪᴍ ᴛʜɪꜱ ʀᴇᴡᴀʀᴅ":
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 212: (purechat.sk)
[02:17:26] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[02:17:26] [Server thread/INFO]:     Line: if {{@mutechatbypass}::%player%} is true:
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 10: (Staffchat.sk)
[02:17:26] [Server thread/INFO]:     undefined option {@perms}
[02:17:26] [Server thread/INFO]:     Line: permission message: {@perms}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 10: (Staffchat.sk)
[02:17:26] [Server thread/INFO]:     undefined option {@perms}
[02:17:26] [Server thread/INFO]:     Line: permission message: {@perms}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 10: (Staffchat.sk)
[02:17:26] [Server thread/INFO]:     undefined option {@perms}
[02:17:26] [Server thread/INFO]:     Line: permission message: {@perms}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 10: (Staffchat.sk)
[02:17:26] [Server thread/INFO]:     undefined option {@perms}
[02:17:26] [Server thread/INFO]:     Line: permission message: {@perms}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 28: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: set {_num} to {-announcementNum}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 32: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: delete {-announcementNum}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 36: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: add 1 to {-announcementNum}
[02:17:26] [Server thread/INFO]:  
[02:17:26] [pool-102-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[02:17:26] [Server thread/INFO]: [Skript] Line 37: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: else if {-announcementNum} is not set:
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 38: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: set {-announcementNum} to 1
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 40: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: send text component {_announcement::%{-announcementNum}%} to loop-player
[02:17:26] [Server thread/INFO]:  
[02:17:26] [Server thread/INFO]: [Skript] Line 41: (BroadCast.sk)
[02:17:26] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:26] [Server thread/INFO]:     Line: add 1 to {-announcementNum}
[02:17:26] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 106: (ClearLag.sk)
[02:17:27] [Server thread/INFO]:     chest named "&fWhitelisted Items: &e%amount of ({simple.clear.lag::whitelisted.items::*})% item(s)" is not an nbt compound
[02:17:27] [Server thread/INFO]:     Line: set slot 16 of {_config.gui} to minecart with chest with name "&fWhitelisted Items: &e%size of {simple.clear.lag::whitelisted.items::*}% item(s)" with lore "&7Click to change" and "&a*Whitelisted items will not be cleared"
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 15: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: if {-frozenChat} is not set:
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 16: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: set {-frozenChat} to true
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 21: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: else if {-frozenChat} is true:
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 22: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: delete {-frozenChat}
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 28: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: if {-frozenChat} is not set:
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 29: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: set {-frozenChat} to true
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 35: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: else if {-frozenChat} is true:
[02:17:27] [Server thread/INFO]:  
[02:17:27] [Server thread/INFO]: [Skript] Line 36: (ClearChat.sk)
[02:17:27] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:27] [Server thread/INFO]:     Line: delete {-frozenChat}
[02:17:27] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 15: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     chest named "&f&lPlaytime 1" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 11 with minecart with chest named "&f&lPlaytime 1" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &71 hour", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &a$5,000", "", "&a✔ ʏᴏᴜ ᴄᴀɴ ᴄʟᴀɪᴍ ᴛʜɪꜱ ʀᴇᴡᴀʀᴅ":
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 18: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     furnace named "&f&lPlaytime 1" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 11 with minecart with furnace named "&f&lPlaytime 1" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &7&lFINISHED", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &7&lFINISHED", "", "&7Quest is finished"
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 23: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     chest named "&f&lPlaytime 2" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 12 with minecart with chest named "&f&lPlaytime 2" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &73 hours", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &f3+ &cHearts", "", "&a✔ ʏᴏᴜ ᴄᴀɴ ᴄʟᴀɪᴍ ᴛʜɪꜱ ʀᴇᴡᴀʀᴅ":
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 26: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     furnace named "&f&lPlaytime 2" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 12 with minecart with furnace named "&f&lPlaytime 2" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &7&lFINISHED", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &7&lFINISHED", "", "&7Quest is finished"
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 31: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     chest named "&f&lPlaytime 3" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 13 with minecart with chest named "&f&lPlaytime 3" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &712 hours", "", "&f&lʀᴇᴡᴀʀᴅ:", "&9✦ 50 Gems", "", "&c✘ ʏᴏᴜ ᴄᴀɴ'ᴛ ᴄʟᴀɪᴍ ᴛʜɪꜱ ʀᴇᴡᴀʀᴅ":
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 34: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     furnace named "&f&lPlaytime 3" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 13 with minecart with furnace named "&f&lPlaytime 3" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &7&lFINISHED", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &7&lFINISHED", "", "&7Quest is finished"
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 39: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     chest named "&f&lPlaytime 4" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 14 with minecart with chest named "&f&lPlaytime 4" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &712 hours", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &9✦ 150 Gems", " &a$150,000", "", "&c✘ ʏᴏᴜ ᴄᴀɴ'ᴛ ᴄʟᴀɪᴍ ᴛʜɪꜱ ʀᴇᴡᴀʀᴅ":
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 42: (PlayTime.sk)
[02:17:57] [Server thread/INFO]:     furnace named "&f&lPlaytime 4" is not an nbt compound
[02:17:57] [Server thread/INFO]:     Line: make gui slot 14 with minecart with furnace named "&f&lPlaytime 4" with lore "&8Playtime", "", "&fᴏʙᴊᴇᴄᴛɪᴠᴇ", "  &7&lFINISHED", "", "&f&lʀᴇᴡᴀʀᴅ:", "  &7&lFINISHED", "", "&7Quest is finished"
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 10: (Staffchat.sk)
[02:17:57] [Server thread/INFO]:     undefined option {@perms}
[02:17:57] [Server thread/INFO]:     Line: permission message: {@perms}
[02:17:57] [Server thread/INFO]:  
[02:17:57] [Server thread/INFO]: [Skript] Line 13: (Staffchat.sk)
[02:17:57] [Server thread/INFO]:     Can't understand this condition: player input has permission chat.staffchat
[02:17:57] [Server thread/INFO]:     Line: send "&f[&eStaffChat&f] &e» &f%player%: &e%colored arg-1%" to all players where [player input has permission {@perm}]
[02:17:57] [Server thread/INFO]:  
[02:17:58] [Server thread/INFO]: [Skript] Line 282: (purechat.sk)
[02:17:58] [Server thread/INFO]:     A command with the name /staffchat is already defined in Staffchat.sk
[02:17:58] [Server thread/INFO]:     Line: command /staffchat [<text>]:
[02:17:58] [Server thread/INFO]:  
[02:17:58] [Server thread/INFO]: [Skript] Line 53: (ChatColorTags.sk)
[02:17:58] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:58] [Server thread/INFO]:     Line: if {-rank::%player's uuid%} is not set:
[02:17:58] [Server thread/INFO]:  
[02:17:58] [Server thread/INFO]: [Skript] Line 54: (ChatColorTags.sk)
[02:17:58] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:58] [Server thread/INFO]:     Line: set {-rank::%player's uuid%} to "&7"
[02:17:58] [Server thread/INFO]:  
[02:17:58] [Server thread/INFO]: [Skript] Line 42: (ClearChat.sk)
[02:17:58] [Server thread/INFO]:     The character '-' is reserved at the start of variable names, and may be restricted in future versions
[02:17:58] [Server thread/INFO]:     Line: if {-frozenChat} is true:
[02:17:58] [Server thread/INFO]:  
[02:17:59] [Server thread/INFO]: [Skript] Line 60: (rRules GUI.sk)
[02:17:59] [Server thread/INFO]:     undefined option {@version}
[02:17:59] [Server thread/INFO]:     Line: message "&7Version: &f{@version}" to console
[02:17:59] [Server thread/INFO]:  
[02:17:59] [Server thread/INFO]: [Skript] Line 68: (rRules GUI.sk)
[02:17:59] [Server thread/INFO]:     undefined option {@version}
[02:17:59] [Server thread/INFO]:     Line: message "&7Version: &f{@version}" to console
[02:17:59] [Server thread/INFO]:  
[02:17:59] [Server thread/INFO]: [Skript] Line 77: (rRules GUI.sk)
[02:17:59] [Server thread/INFO]:     undefined option {@version}
[02:17:59] [Server thread/INFO]:     Line: message "&7Version: &f{@version}" to console
[02:17:59] [Server thread/INFO]:  
[02:17:59] [Server thread/INFO]: [Skript] Line 78: (rRules GUI.sk)
[02:17:59] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[02:17:59] [Server thread/INFO]:     Line: message "&7By Rv2_ to console
[02:17:59] [Server thread/INFO]:  
[02:17:59] [Server thread/INFO]: [Quallysk] > Simple Clearlag loaded!
[02:17:59] [Server thread/INFO]: 
[02:17:59] [Server thread/INFO]: [SKRIPT] PlayTime.sk has been reloaded in 0.31 seconds...
[02:17:59] [Server thread/INFO]: 
[02:17:59] [Server thread/INFO]: +---------------------------+
[02:17:59] [Server thread/INFO]: Activating rRules
[02:17:59] [Server thread/INFO]: Rules.sk
[02:17:59] [Server thread/INFO]: 
[02:17:59] [Server thread/INFO]: Version: {@version}
[02:17:59] [Server thread/INFO]: By Rv2_
[02:17:59] [Server thread/INFO]: +---------------------------+
[02:17:59] [Server thread/INFO]: [Skript] Loaded 22 scripts with a total of 137 structures in 32.94 seconds
[02:17:59] [Server thread/INFO]: [Skript] Finished loading.
[02:17:59] [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.
[02:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[02:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[02:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.7.0]
[02:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[02:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[02:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: healthbar [1.3]
[02:17:59] [Server thread/INFO]: 6 placeholder hook(s) registered!
[02:17:59] [Server thread/INFO]: Done (71.175s)! For help, type "help"
[02:17:59] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 33193ms or 663 ticks behind
[02:17:59] [Server thread/INFO]: [TimeManager] The server's initial tick was set in the config.yml.
[02:17:59] [Server thread/INFO]: [TimeManager] The server's initial tick is #165583 (02:17:59 UTC).
[02:17:59] [Server thread/INFO]: [TimeManager] The server's current tick is #165583 (02:17:59 UTC).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world world is running since 261 whole day(s) (0001-09-19).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world's current speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_nether had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_nether is running since 294 whole day(s) (0001-10-22).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_nether starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_nether's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_nether's current speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_the_end had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_the_end is running since 294 whole day(s) (0001-10-22).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_the_end starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_the_end's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world world_the_end's current speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world The had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world The is running since 240 whole day(s) (0001-08-29).
[02:17:59] [Server thread/INFO]: [TimeManager] The world The starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world The's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world The's current speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world ACTUALSPAWN had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world ACTUALSPAWN is running since 99 whole day(s) (0001-04-10).
[02:17:59] [Server thread/INFO]: [TimeManager] The world ACTUALSPAWN starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world ACTUALSPAWN's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world ACTUALSPAWN's current day speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world ACTUALSPAWN's current night speed is 10.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world spawn had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world spawn is running since 14 whole day(s) (0001-01-15).
[02:17:59] [Server thread/INFO]: [TimeManager] The world spawn starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world spawn's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world spawn's current speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] The world SPAWN1 had its time resynchronized to the server time.
[02:17:59] [Server thread/INFO]: [TimeManager] The world SPAWN1 is running since 134 whole day(s) (0001-05-15).
[02:17:59] [Server thread/INFO]: [TimeManager] The world SPAWN1 starts at 6:00:00 (+0 ticks).
[02:17:59] [Server thread/INFO]: [TimeManager] The world SPAWN1's current time is 6:00:00 (#0).
[02:17:59] [Server thread/INFO]: [TimeManager] The world SPAWN1's current speed is 1.0.
[02:17:59] [Server thread/INFO]: [TimeManager] All worlds have been syncronized to the server time. If you want to keep them synchronized, set their 'sync' option to true.
[02:17:59] [Craft Scheduler Thread - 7 - Essentials/WARN]: [Essentials] You're 9 EssentialsX dev build(s) out of date!
[02:17:59] [Craft Scheduler Thread - 7 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[02:18:01] [Server thread/INFO]: +---------------------------+
[02:18:01] [Server thread/INFO]: Activated plugin
[02:18:01] [Server thread/INFO]: Rules.sk
[02:18:01] [Server thread/INFO]: 
[02:18:01] [Server thread/INFO]: Version: {@version}
[02:18:01] [Server thread/INFO]: By VARboosted
[02:18:01] [Server thread/INFO]: +---------------------------+
[02:18:02] [User Authenticator #0/INFO]: UUID of player waxhy is f6120b08-3252-4dda-a0e4-74335c63e0ec
[02:18:03] [TAB Processing Thread/INFO]: [TAB] [WARN] Player waxhy's group (vip+) is not in sorting list! Sorting list: owner,manager,head-dev,dev,head-admin,admin,head-mod,mod,helper,head-builder,builder,default. Player will be sorted on the bottom.
[02:18:03] [Server thread/INFO]: [VotingPlugin] Login: waxhy (f6120b08-3252-4dda-a0e4-74335c63e0ec)
[02:18:03] [Server thread/INFO]: waxhy joined the game
[02:18:03] [Server thread/INFO]: waxhy[/104.192.63.160:37700] logged in with entity id 356 at ([ACTUALSPAWN]-651.3052113739666, 95.0, -1091.7748442938562)
[02:18:04] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[02:18:04] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[02:18:08] [Server thread/INFO]: waxhy issued server command: /pl
[02:18:09] [Craft Scheduler Thread - 7 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.18 New Version: 6.18.2
[02:18:11] [Server thread/INFO]: waxhy issued server command: /version Citizens
[02:20:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:21:04] [Server thread/INFO]: [Clearlag] >> Cleared 4 ground items.
[02:23:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:24:04] [Server thread/INFO]: [Clearlag] >> Cleared 2 ground items.
[02:26:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:27:00] [Server thread/INFO]: waxhy issued server command: /gmc
[02:27:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[02:28:00] [Server thread/INFO]: waxhy issued server command: /npc
[02:28:00] [Server thread/ERROR]: Command exception: /npc
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3711) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2241) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2215) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1578) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1555) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1548) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:138) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1499) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1509) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1345) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[02:28:03] [Server thread/INFO]: waxhy issued server command: /npc e
[02:28:03] [Server thread/ERROR]: Command exception: /npc e
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3711) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2241) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2215) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1578) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1555) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1548) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:138) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1499) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1509) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1345) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[02:28:11] [Server thread/INFO]: waxhy issued server command: /citizens reload
[02:28:11] [Server thread/ERROR]: Command exception: /citizens reload
org.bukkit.command.CommandException: Cannot execute command 'citizens' in plugin Citizens v2.0.37-SNAPSHOT (build 3711) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2241) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2215) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1578) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1555) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1548) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:138) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1499) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1509) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1345) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[02:29:22] [Server thread/INFO]: waxhy issued server command: /pl
[02:29:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:30:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[02:32:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:33:04] [Server thread/INFO]: [Clearlag] >> Cleared 11 ground items.
[02:35:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:36:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[02:36:11] [Server thread/INFO]: waxhy issued server command: /version Citizens
[02:38:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:39:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[02:39:17] [Server thread/INFO]: waxhy issued server command: /ah
[02:39:17] [Server thread/ERROR]: Command exception: /ah
org.bukkit.command.CommandException: Cannot execute command 'ah' in plugin AuctionHouse v3.7.1 - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2241) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2215) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1578) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1555) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1548) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:117) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1505) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1345) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-81-da71382]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[02:41:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:42:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[02:44:04] [Server thread/INFO]: waxhy issued server command: //wand
[02:44:14] [Server thread/INFO]: waxhy issued server command: //smooth
[02:44:38] [Server thread/INFO]: waxhy issued server command: //smooth
[02:44:38] [AsyncNotifyKeyedQueue - 0/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_3.PaperweightStarlightRelighterFactory as relighter factory.
[02:44:44] [Server thread/INFO]: waxhy issued server command: //smooth
[02:44:55] [Server thread/INFO]: waxhy issued server command: //smooth
[02:44:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:45:01] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:02] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:04] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:04] [Server thread/INFO]: [Clearlag] >> Cleared 4 ground items.
[02:45:31] [Server thread/INFO]: waxhy issued server command: //brush smooth 2
[02:45:47] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:48] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:49] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:50] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:51] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:51] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:52] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:53] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:54] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:55] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:55] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:56] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:57] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:58] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:59] [Server thread/INFO]: waxhy issued server command: //undo
[02:45:59] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:00] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:01] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:02] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:03] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:04] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:05] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:06] [Server thread/INFO]: waxhy issued server command: //undot
[02:46:08] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:09] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:10] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:11] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:12] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:13] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:14] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:15] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:16] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:17] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:18] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:19] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:20] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:22] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:22] [Server thread/INFO]: waxhy issued server command: //undo
[02:46:26] [Server thread/INFO]: waxhy issued server command: //undo 2\
[02:46:28] [Server thread/INFO]: waxhy issued server command: //undo 2
[02:46:31] [Server thread/INFO]: waxhy issued server command: //undo 6
[02:46:38] [Server thread/INFO]: waxhy issued server command: //brush smooth 10
[02:46:42] [Server thread/INFO]: waxhy issued server command: //undo
[02:47:02] [Server thread/INFO]: waxhy issued server command: /up 1
[02:47:05] [Server thread/INFO]: waxhy issued server command: //air
[02:47:15] [Server thread/INFO]: waxhy issued server command: //undo
[02:47:17] [Server thread/INFO]: waxhy issued server command: //undo
[02:47:18] [Server thread/INFO]: waxhy issued server command: //undo
[02:47:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:48:01] [Server thread/INFO]: waxhy issued server command: //undo 5
[02:48:04] [Server thread/INFO]: [Clearlag] >> Cleared 80 ground items.
[02:49:41] [Server thread/INFO]: waxhy issued server command: //set grass_block
[02:50:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:51:04] [Server thread/INFO]: [Clearlag] >> Cleared 167 ground items.
[02:52:01] [Server thread/INFO]: waxhy issued server command: //undo 10
[02:52:04] [Server thread/INFO]: waxhy issued server command: //undo 10
[02:53:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:54:04] [Server thread/INFO]: [Clearlag] >> Cleared 185 ground items.
[02:56:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[02:57:04] [Server thread/INFO]: [Clearlag] >> Cleared 15 ground items.
[02:59:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[03:00:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[03:02:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[03:03:04] [Server thread/INFO]: [Clearlag] >> Cleared 1 ground item.
[03:05:59] [Server thread/INFO]: [Clearlag] >> Clearing ground items in 5 seconds!
[03:06:04] [Server thread/INFO]: [Clearlag] >> Cleared 19 ground items.