Paste #119644: DenizenMetaBot Auto-Repaste Of log From nexarpy

Date: 2024/01/22 13:16:54 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


[00:08:19] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[00:08:20] [ServerMain/INFO]: Loaded 7 recipes
[00:08:20] [Server thread/INFO]: Starting minecraft server version 1.20
[00:08:20] [Server thread/INFO]: Loading properties
[00:08:20] [Server thread/INFO]: This server is running Paper version git-Paper-17 (MC: 1.20) (Implementing API version 1.20-R0.1-SNAPSHOT) (Git: c287e92)
[00:08:20] [Server thread/INFO]: Server Ping Player Sample Count: 12
[00:08:20] [Server thread/INFO]: Using 4 threads for Netty based IO
[00:08:21] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[00:08:21] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[00:08:21] [Server thread/INFO]: Default game type: SURVIVAL
[00:08:21] [Server thread/INFO]: Generating keypair
[00:08:21] [Server thread/INFO]: Starting Minecraft server on localhost:25565
[00:08:21] [Server thread/INFO]: Using default channel type
[00:08:21] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[00:08:21] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[00:08:21] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loading 5 libraries... please wait
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\club\minnced\discord-webhooks\0.8.4\discord-webhooks-0.8.4.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\slf4j\slf4j-api\1.7.32\slf4j-api-1.7.32.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\com\squareup\okhttp3\okhttp\4.10.0\okhttp-4.10.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\com\squareup\okio\okio-jvm\3.0.0\okio-jvm-3.0.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\jetbrains\kotlin\kotlin-stdlib-jdk8\1.5.31\kotlin-stdlib-jdk8-1.5.31.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\jetbrains\kotlin\kotlin-stdlib-jdk7\1.5.31\kotlin-stdlib-jdk7-1.5.31.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\jetbrains\kotlin\kotlin-stdlib-common\1.5.31\kotlin-stdlib-common-1.5.31.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\jetbrains\kotlin\kotlin-stdlib\1.6.20\kotlin-stdlib-1.6.20.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\json\json\20230618\json-20230618.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\apache\commons\commons-lang3\3.13.0\commons-lang3-3.13.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\commons-io\commons-io\2.13.0\commons-io-2.13.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-platform-bungeecord\4.3.1\adventure-platform-bungeecord-4.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-platform-api\4.3.1\adventure-platform-api-4.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.1\adventure-text-serializer-bungeecord-4.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-platform-facet\4.3.1\adventure-platform-facet-4.3.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loading 1 libraries... please wait
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[00:08:22] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library C:\Users\alier\OneDrive\Masaüstü\ArtinasSurvival\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[00:08:22] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[00:08:24] [Server thread/WARN]: Legacy plugin AnimaBossBar v4.7 does not specify an api-version.
[00:08:24] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
[00:08:24] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[00:08:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[00:08:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[00:08:24] [Server thread/INFO]: [ViaBackwards] Loading translations...
[00:08:24] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[00:08:24] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[00:08:25] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[00:08:25] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.5-SNAPSHOT-639;a4a1126
[00:08:26] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@578e0e1]
[00:08:26] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[00:08:26] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[00:08:26] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0
[00:08:26] [Server thread/INFO]: [MineableSpawners] Loading server plugin MineableSpawners v3.1.5
[00:08:26] [Server thread/INFO]: [Farmer] Loading server plugin Farmer vv6-b005
[00:08:26] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.3
[00:08:26] [Server thread/INFO]: [CrazyEnchantments] Loading server plugin CrazyEnchantments v2.1.2
[00:08:26] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3305)
[00:08:26] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[00:08:26] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+25-fbfd7e9
[00:08:26] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.3
[00:08:26] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.6
[00:08:26] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.4.377
[00:08:26] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.24
[00:08:26] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.6.3
[00:08:26] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.1
[00:08:26] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[00:08:26] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[00:08:26] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.2
[00:08:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[00:08:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[00:08:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[00:08:26] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.4.0.1.1193
[00:08:26] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[00:08:26] [Server thread/INFO]: [CombatLogX] Loading expansions...
[00:08:26] [Server thread/INFO]: [CombatLogX] There were no expansions to load.
[00:08:26] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.7
[00:08:26] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.15
[00:08:26] [Server thread/INFO]: [VeinMiner] Loading server plugin VeinMiner v2.1.1
[00:08:27] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[00:08:27] [Server thread/INFO]: [TreeAssist] Loading server plugin TreeAssist v7.3.51
[00:08:27] [Server thread/INFO]: [TreeAssist] Loading main config file: \config.yml
[00:08:27] [Thread-10/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[00:08:27] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.5.2
[00:08:27] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[00:08:27] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.59
[00:08:27] [Server thread/INFO]: [skript-reflect] Loading server plugin skript-reflect v2.2.3
[00:08:27] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.26
[00:08:27] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.4
[00:08:27] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.19.0
[00:08:27] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (251 ms).
[00:08:27] [Server thread/WARN]: [Shopkeepers] Incompatible server version: v1_20_R1 (mappings: 34f399b4f2033891290b7f0700e9e47b)
[00:08:27] [Server thread/WARN]: [Shopkeepers] Shopkeepers is trying to run in 'compatibility mode'.
[00:08:27] [Server thread/INFO]: [Shopkeepers] Check for updates at: https://dev.bukkit.org/projects/shopkeepers/
[00:08:27] [Server thread/INFO]: [Shopkeepers] Loading config.
[00:08:27] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[00:08:27] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[00:08:27] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[00:08:27] [Server thread/INFO]: [ServerListPlus] Loading server plugin ServerListPlus v3.5.0
[00:08:27] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.29.0
[00:08:27] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.11
[00:08:27] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.27.1
[00:08:27] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.2-SNAPSHOT
[00:08:27] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.1
[00:08:27] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-1.6.1.jar'
[00:08:27] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R1
[00:08:27] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[00:08:27] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[00:08:27] [Server thread/INFO]: [MOTD] Loading server plugin MOTD v2.3.10
[00:08:27] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[00:08:27] [Server thread/INFO]: [LockettePro] Loading server plugin LockettePro v2.11.1
[00:08:27] [Server thread/INFO]: [LagFixer] Loading server plugin LagFixer v1.1.19 (build 34)
[00:08:27] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.9.0
[00:08:27] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.8
[00:08:27] [Server thread/INFO]: [HoloExtension] Loading server plugin HoloExtension v0.1.0.2 Alpha
[00:08:27] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.3
[00:08:27] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.7.0
[00:08:27] [Server thread/INFO]: [Duels] Loading server plugin Duels v3.5.2
[00:08:27] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[00:08:27] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[00:08:27] [Server thread/INFO]: [DeathMessages] Loading server plugin DeathMessages v1.4.15
[00:08:27] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v1.19.3
[00:08:27] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.4.2
[00:08:27] [Server thread/INFO]: [ClansLite] Loading server plugin ClansLite v1.4.3
[00:08:27] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[00:08:27] [Server thread/INFO]: [ChatBrawl] Loading server plugin ChatBrawl v2.1
[00:08:27] [Server thread/INFO]: [BPS-Free] Loading server plugin BPS-Free v4.0.19
[00:08:27] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.11.1-RELEASE
[00:08:27] [Server thread/INFO]: [BetterSocial] Loading server plugin BetterSocial v1.3-BETA
[00:08:27] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.12
[00:08:27] [Server thread/INFO]: [BeastWithdraw] Loading server plugin BeastWithdraw v2.9.8
[00:08:27] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v1.3.0-b10
[00:08:27] [Server thread/INFO]: [AntiDonkeyDupe] Loading server plugin AntiDonkeyDupe v1.0.2
[00:08:27] [Server thread/INFO]: [AnimaBossBar] Loading server plugin AnimaBossBar v4.7
[00:08:28] [Server thread/INFO]: [AfkPool] Loading server plugin AfkPool v1.3.1
[00:08:28] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[00:08:28] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[00:08:28] [Server thread/INFO]:         __    
[00:08:28] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[00:08:28] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[00:08:28] [Server thread/INFO]: 
[00:08:28] [Server thread/INFO]: [LuckPerms] Loading configuration...
[00:08:29] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[00:08:29] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[00:08:29] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[00:08:29] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1888ms)
[00:08:29] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[00:08:29] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[00:08:29] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[00:08:29] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[00:08:30] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[00:08:30] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.5-SNAPSHOT-639;a4a1126
[00:08:30] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[00:08:30] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[00:08:30] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[00:08:30] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[00:08:30] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[00:08:30] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[00:08:30] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[00:08:30] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[00:08:30] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[00:08:30] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.7
[00:08:30] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[00:08:30] [Server thread/WARN]: It seems like you're running on paper.
[00:08:30] [Server thread/WARN]: PlugManX cannot interact with paper-plugins, yet.
[00:08:30] [Server thread/WARN]: Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[00:08:30] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[00:08:30] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[00:08:30] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 7 build(s) out of date.
You are running build 639, the latest version is build 646.
Update at https://www.spigotmc.org/resources/13932/
[00:08:31] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.4
[00:08:31] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_20_R1, using MappingSpigotSkinRefresher.
[00:08:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.0.4]
[00:08:31] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[00:08:31] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[00:08:31] [Server thread/INFO]: [MOTD] Enabling MOTD v2.3.10
[00:08:31] [Server thread/INFO]: [MOTD] [Placeholder] PlaceholderAPI hooked.
[00:08:31] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[00:08:31] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[00:08:31] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[00:08:31] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[00:08:31] [Server thread/INFO]: Preparing level "world"
[00:08:31] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[00:08:32] [Server thread/INFO]: Time elapsed: 190 ms
[00:08:32] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[00:08:32] [Server thread/INFO]: Time elapsed: 19 ms
[00:08:32] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[00:08:32] [Server thread/INFO]: Time elapsed: 18 ms
[00:08:32] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[00:08:32] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20/1.20.1 (763)
[00:08:32] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[00:08:32] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[00:08:32] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[00:08:33] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[00:08:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[00:08:33] [Server thread/INFO]: [WorldGuard] Loading region data...
[00:08:33] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.5
[00:08:33] [Server thread/INFO]: [Farmer] Enabling Farmer vv6-b005
[00:08:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: farmer [v6-b002]
[00:08:33] [Server thread/INFO]:         FARMER         
[00:08:33] [Server thread/INFO]: Developed by Geik
[00:08:33] [Server thread/INFO]: Discord: https://discord.geik.xyz
[00:08:33] [Server thread/INFO]: Web: https://geik.xyz
[00:08:33] [Server thread/INFO]: [xyz.geik.farmer.shades.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:08:33] [Server thread/INFO]: [xyz.geik.farmer.shades.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@7daff69d
[00:08:33] [Server thread/INFO]: [xyz.geik.farmer.shades.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:08:33] [Server thread/INFO]: [Farmer] SQLite tables created successfully
[00:08:33] [Server thread/INFO]: [FarmerModules] Voucher enabled
[00:08:33] [Server thread/INFO]: [FarmerManager] VoucherEvent was registered
[00:08:33] [Server thread/INFO]: [FarmerModules] Production disabled
[00:08:33] [Server thread/INFO]: [FarmerModules] AutoHarvest disabled
[00:08:33] [Server thread/INFO]: [FarmerModules] AutoSeller disabled
[00:08:33] [Server thread/INFO]: [FarmerModules] SpawnerKiller disabled
[00:08:33] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.3
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v2.1.2
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml.
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] === CrazyEnchantment Hook Status ===
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] VAULT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] SPARTAN NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] PLOT_SQUARED NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] GRIEF_PREVENTION NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] WORLDEDIT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] ORAXEN NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] NO_CHEAT_PLUS NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] SUPERIORSKYBLOCK NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] WORLDGUARD FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] FACTIONS_UUID NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] SILK_SPAWNERS NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] MCMMO NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] SILK_SPAWNERS_V2 NOT FOUND
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] TOWNYADVANCED NOT FOUND
[00:08:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[00:08:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[00:08:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyEnchantments' to create a bStats instance!
[00:08:33] [Server thread/WARN]: [NBTAPI] #########################################- NBTAPI -#########################################
[00:08:33] [Server thread/WARN]: [NBTAPI] The NBT-API inside CrazyEnchantments is the plugin version, not the API!
[00:08:33] [Server thread/WARN]: [NBTAPI] The plugin itself should never be shaded! Remove the `-plugin` from the dependency and fix your shading setup.
[00:08:33] [Server thread/WARN]: [NBTAPI] For more info check: https://github.com/tr7zw/Item-NBT-API/wiki/Using-Maven#option-2-shading-the-nbt-api-into-your-plugin
[00:08:33] [Server thread/WARN]: [NBTAPI] #########################################- NBTAPI -#########################################
[00:08:33] [Server thread/INFO]: [CrazyEnchantments] G-Kitz support is now enabled.
[00:08:33] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3305)
[00:08:33] [Server thread/INFO]: [Citizens] Loading external libraries
[00:08:35] [Server thread/INFO]: Creating file: config.yml
[00:08:35] [Server thread/ERROR]: [Citizens] v2.0.33-SNAPSHOT (build 3305) is not compatible with Minecraft v1_20_R1 - try upgrading Minecraft or Citizens. Disabling...
[00:08:35] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3305)
[00:08:35] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[00:08:36] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[00:08:36] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[00:08:36] [Server thread/INFO]: --------------------
[00:08:36] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[00:08:36] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[00:08:36] [Server thread/INFO]: --------------------
[00:08:36] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+25-fbfd7e9
[00:08:36] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[00:08:36] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[00:08:36] [Server thread/INFO]: [Essentials] No kits found to migrate.
[00:08:36] [Server thread/WARN]: [Essentials] File plugins\Essentials\items.json has been modified by user and file version differs, please update the file manually.
[00:08:36] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[00:08:36] [Server thread/INFO]: [Essentials] Using locale tr
[00:08:36] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[00:08:36] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[00:08:36] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[00:08:36] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[00:08:36] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.3
[00:08:36] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[00:08:36] [Server thread/INFO]: [WildStacker] Loading configuration started...
[00:08:36] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[00:08:36] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[00:08:36] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[00:08:36] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[00:08:36] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 45ms)
[00:08:36] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[00:08:36] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 40ms)
[00:08:36] [Server thread/INFO]: [WildStacker] Loading messages started...
[00:08:36] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[00:08:36] [Server thread/INFO]: [WildStacker] Loading messages done (Took 3ms)
[00:08:36] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[00:08:36] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.6
[00:08:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.6]
[00:08:36] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[00:08:36] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[00:08:36] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.24
[00:08:36] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[00:08:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [Beta 1.3.24]
[00:08:36] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[00:08:36] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[00:08:36] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 1 ms
[00:08:36] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 4ms
[00:08:36] [Server thread/INFO]: [AureliumSkills] HolographicDisplays Support Enabled!
[00:08:36] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loading languages...
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loaded 17 languages in 660ms
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[00:08:37] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[00:08:37] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[00:08:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[00:08:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[00:08:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AureliumSkills' to create a bStats instance!
[00:08:37] [Server thread/INFO]: [Skript] Enabling Skript v2.6.3
[00:08:37] [Server thread/INFO]: [Skript] Skript's language file english.lang is outdated, some messages will be english.
[00:08:38] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[00:08:40] [Server thread/INFO]: [Skript] Loaded 153763 aliases in 2382ms
[00:08:40] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[00:08:40] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.1
[00:08:40] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[00:08:40] [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--].
[00:08:40] [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.
[00:08:40] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[00:08:41] [Server thread/INFO]: Time elapsed: 567 ms
[00:08:41] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[00:08:41] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[00:08:41] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[00:08:41] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[00:08:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[00:08:41] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[00:08:41] [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.
[00:08:41] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[00:08:41] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[00:08:41] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:08:41] [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)
[00:08:41] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:08:41] [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
[]================================[]
 
[00:08:41] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[00:08:41] [Server thread/INFO]: [NBTAPI] Adding listeners...
[00:08:41] [Server thread/INFO]: [NBTAPI] Checking bindings...
[00:08:41] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[00:08:41] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[00:08:41] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[00:08:41] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[00:08:41] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[00:08:42] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[00:08:42] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[00:08:42] [Server thread/INFO]: CombatLogX was loaded successfully.
[00:08:42] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[00:08:42] [Server thread/INFO]: [CombatLogX] There were no expansions to enable.
[00:08:42] [Server thread/INFO]: CombatLogX was enabled successfully.
[00:08:42] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.15
[00:08:42] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[00:08:42] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[00:08:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[00:08:42] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[00:08:42] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[00:08:42] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[00:08:42] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.15
[00:08:42] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v2.1.1
[00:08:42] [Server thread/INFO]: [VeinMiner] Using SQLITE for persistent storage.
[00:08:42] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[00:08:42] [Server thread/INFO]: [VeinMiner] Added 13 aliases.
[00:08:42] [Server thread/INFO]: [VeinMiner] Registered category with id "Axe" holding 6 unique items and 26 unique blocks.
[00:08:42] [Server thread/INFO]: [VeinMiner] Registered category with id "Hoe" holding 6 unique items and 10 unique blocks.
[00:08:42] [Server thread/INFO]: [VeinMiner] Registered category with id "Pickaxe" holding 6 unique items and 23 unique blocks.
[00:08:42] [Server thread/INFO]: [VeinMiner] Registered category with id "Shears" holding 1 unique items and 27 unique blocks.
[00:08:42] [Server thread/INFO]: [VeinMiner] Registered category with id "Shovel" holding 6 unique items and 10 unique blocks.
[00:08:42] [Server thread/INFO]: [VeinMiner] Registering commands
[00:08:42] [Server thread/INFO]: [VeinMiner] Performing an update check!
[00:08:42] [Server thread/INFO]: [VeinMiner] Registering events
[00:08:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: veinminer [2.1.1]
[00:08:42] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[00:08:42] [Server thread/INFO]: [VeinMiner] Economy found! Hooked successfully.
[00:08:42] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[00:08:42] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[00:08:42] [Server thread/INFO]: [TreeAssist] Enabling TreeAssist v7.3.51
[00:08:42] [Server thread/INFO]: [TreeAssist] sending full Metrics! You can deactivate this in the config.yml
[00:08:42] [Server thread/INFO]: [TreeAssist] debugging: off
[00:08:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ta [0.0.1]
[00:08:42] [Thread-21/INFO]: [TreeAssist] Checking for updates...
[00:08:42] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.2
[00:08:42] [Server thread/INFO]:  
[00:08:42] [Server thread/INFO]: __________________________________________________________
[00:08:42] [Server thread/INFO]:  
[00:08:42] [Server thread/INFO]:                        TradeSystem [2.5.2]
[00:08:42] [Server thread/INFO]:  
[00:08:42] [Server thread/INFO]: Status:
[00:08:42] [Server thread/INFO]:  
[00:08:42] [Server thread/INFO]: MC-Version: 1.20 (R0.1-SNAPSHOT, Paper)
[00:08:42] [Server thread/INFO]:  
[00:08:42] [ForkJoinPool.commonPool-worker-1/INFO]: [VeinMiner] You are on the latest version of VeinMiner.
[00:08:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[00:08:42] [Server thread/INFO]:   > Loading sounds
[00:08:42] [Server thread/INFO]:   > Loading blacklist
[00:08:42] [Server thread/INFO]:     ...got 3 blocked item(s)
[00:08:42] [Server thread/INFO]:   > Loading layouts
[00:08:42] [Server thread/INFO]:     ...got 5 layout(s)
[00:08:42] [Server thread/INFO]:   > Queuing database initializing task
[00:08:43] [Server thread/INFO]:  
[00:08:43] [Server thread/INFO]: Finished (183ms)
[00:08:43] [Server thread/INFO]:  
[00:08:43] [Server thread/INFO]: __________________________________________________________
[00:08:43] [Server thread/INFO]:  
[00:08:43] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[00:08:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[00:08:43] [Server thread/INFO]: [TAB] Enabled in 86ms
[00:08:43] [Server thread/INFO]: [spark] Enabling spark v1.10.59
[00:08:43] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[00:08:43] [Server thread/INFO]: [spark] Starting background profiler...
[00:08:43] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[00:08:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.59]
[00:08:43] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[00:08:43] [Server thread/INFO]: [skript-reflect] Enabling skript-reflect v2.2.3
[00:08:43] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.26
[00:08:43] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.26!
[00:08:43] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[00:08:43] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[00:08:43] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[00:08:43] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[00:08:43] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[00:08:43] [Server thread/INFO]: [skRayFall] Bacon holograms found
[00:08:43] [Server thread/INFO]: [skRayFall] Client Side bacon holograms enabled
[00:08:43] [Server thread/WARN]: [skRayFall] Unable to get bacon for the CoreProtect loggers [Unsupported API version (9)].
[00:08:43] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[00:08:43] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[00:08:43] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[00:08:43] [Server thread/INFO]: [skRayFall] Bacon is ready!
[00:08:43] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.19.0
[00:08:43] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.5.0
[00:08:43] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[00:08:43] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[00:08:43] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[00:08:43] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: BukkitConf
[00:08:43] [Server thread/WARN]: [ServerListPlus] [Core] Configuration is not enabled, nothing will be changed on the server! Please execute /slp enable to enable the configuration.
[00:08:43] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[00:08:43] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[00:08:43] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.0 enabled.
[00:08:43] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.29.0
[00:08:43] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[00:08:45] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[00:08:45] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[00:08:45] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[00:08:45] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[00:08:45] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[00:08:45] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[00:08:45] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[00:08:45] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[00:08:45] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[00:08:45] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.11
[00:08:46] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[00:08:46] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[00:08:46] [Server thread/INFO]: [PlayerVaults] Loaded! Took 169ms
[00:08:46] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.27.1
[00:08:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [2.27.1]
[00:08:46] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.27.1
[00:08:46] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[00:08:46] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2-SNAPSHOT
[00:08:46] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.1
[00:08:46] [Server thread/INFO]: [MythicLib] Hooked onto HolographicDisplays
[00:08:46] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[00:08:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.1]
[00:08:46] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[00:08:46] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[00:08:46] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[00:08:46] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[00:08:46] [Server thread/INFO]: | Command file(s) found : 1
[00:08:46] [Server thread/INFO]: | Config : Ready.
[00:08:46] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[00:08:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[00:08:46] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[00:08:46] [Server thread/INFO]: | Custom commands loaded : 44
[00:08:46] [Server thread/INFO]: | You're running the latest version of MyCommand.
[00:08:46] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[00:08:46] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[00:08:46] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[00:08:46] [Server thread/INFO]: [LockettePro] Enabling LockettePro v2.11.1
[00:08:46] [Server thread/INFO]: [LockettePro] Incompatible server version detected: 1.20 . Trying to run into 1.16 compatibility mode!
[00:08:46] [Server thread/INFO]: [LockettePro] ===================================
[00:08:46] [Server thread/INFO]: [LagFixer] Enabling LagFixer v1.1.19 (build 34)
[00:08:46] [Server thread/INFO]: [LagFixer] (ForkManager) -> Enabling manager...
[00:08:46] [Server thread/INFO]: [LagFixer]  • Loaded fork support ~ xyz.lychee.lagfixer.support.Paper
[00:08:46] [Server thread/INFO]: [LagFixer] (ForkManager) -> Enabled manager in 11ms!
[00:08:46] [Server thread/INFO]: [LagFixer] (HookManager) -> Enabling manager...
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded hook spark in 4ms!
[00:08:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lagfixer [1.1.19 (build 34)]
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded hook PlaceholderAPI in 1ms!
[00:08:46] [Server thread/INFO]: [LagFixer] (HookManager) -> Enabled manager in 5ms!
[00:08:46] [Server thread/INFO]: [LagFixer] (MetricsManager) -> Enabling manager...
[00:08:46] [Server thread/INFO]: [LagFixer] (MetricsManager) -> Enabled manager in 2ms!
[00:08:46] [Server thread/INFO]: [LagFixer] (ModuleManager) -> Enabling manager...
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module LagMonitor in 2ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module ItemsCleaner in 1ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module CustomAi in 2ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module AntiRedstone in 0ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module Command in 17ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module LogFilter in 1ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module WorldOptimizer in 0ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module EntityLimiter in 0ms.
[00:08:46] [Server thread/INFO]: [LagFixer]  • Sucessfully loaded module Notification in 1ms.
[00:08:46] [Server thread/INFO]: [LagFixer] (ModuleManager) -> Enabled manager in 24ms!
[00:08:46] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.9.0
[00:08:46] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[00:08:46] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[00:08:46] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[00:08:46] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[00:08:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.9.0]
[00:08:46] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[00:08:46] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.8
[00:08:46] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
[00:08:46] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[00:08:46] [Server thread/INFO]: [IllegalStack/fListener] MC Version v1_20_r1 detected!
[00:08:46] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[00:08:46] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[00:08:46] [Server thread/INFO]: [HoloExtension] Enabling HoloExtension v0.1.0.2 Alpha
[00:08:46] [Server thread/INFO]: [eu.virtusdevelops.holographicplaceholders.hikari.HikariDataSource] Storage - Starting...
[00:08:46] [Server thread/INFO]: [eu.virtusdevelops.holographicplaceholders.hikari.pool.HikariPool] Storage - Added connection org.sqlite.jdbc4.JDBC4Connection@51dc5f2f
[00:08:46] [Server thread/INFO]: [eu.virtusdevelops.holographicplaceholders.hikari.HikariDataSource] Storage - Start completed.
[00:08:47] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.3
[00:08:47] [Server thread/INFO]: [GSit] Enabling GSit v1.7.0
[00:08:47] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[00:08:47] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[00:08:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.7.0]
[00:08:47] [Server thread/INFO]: [GSit] Link with ViaVersion successful!
[00:08:47] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[00:08:47] [Server thread/INFO]: [Duels] Enabling Duels v3.5.2
[00:08:47] [Server thread/WARN]: [Duels] Failed to hook into CombatLogX: This version of CombatLogX is not supported. Please try upgrading to the latest version.
[00:08:47] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[00:08:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duels [1.0]
[00:08:47] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[00:08:47] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[00:08:47] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[00:08:47] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[00:08:47] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 1 kit(s).
[00:08:47] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 1 arena(s).
[00:08:47] [Server thread/INFO]: [Duels] QueueManager: Loaded 0 queue(s).
[00:08:47] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 0 queue sign(s).
[00:08:47] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[00:08:47] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[00:08:47] [Server thread/INFO]: [DeluxeMenus] 19 GUI menus loaded!
[00:08:47] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[00:08:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[00:08:47] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.4.15
[00:08:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deathmessages [1.4.15]
[00:08:47] [Server thread/INFO]: [DeathMessages] PlaceholderAPI Hook Enabled!
[00:08:47] [Server thread/INFO]: [DeathMessages] WorldGuard Hook Enabled!
[00:08:47] [Server thread/INFO]: [DeathMessages] PlugMan found. Adding this plugin to its ignored plugins list due to WorldGuard hook being enabled!
[00:08:47] [Server thread/INFO]: [DeathMessages] bStats Hook Enabled!
[00:08:47] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.19.3
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loading the events.log
[00:08:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded events.log
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[00:08:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[00:08:47] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/CosmicCrateExample.yml.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/CrateExample.yml.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/QuadCrateExample.yml.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/QuickCrateExample.yml.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[00:08:47] [Server thread/WARN]: [CrazyCrates] Created examples because we couldn't find it.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Holographic Displays support has been enabled.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[00:08:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[00:08:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[00:08:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyCrates' to create a bStats instance!
[00:08:47] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[00:08:47] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[00:08:47] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[00:08:47] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[00:08:47] [Server thread/INFO]: [CrazyCrates] DECENT_HOLOGRAMS NOT FOUND
[00:08:47] [Server thread/INFO]: [CrazyCrates] HOLOGRAPHIC_DISPLAYS FOUND
[00:08:47] [Server thread/INFO]: [CrazyCrates] CMI NOT FOUND
[00:08:47] [Server thread/INFO]: [CrazyCrates] PLACEHOLDERAPI FOUND
[00:08:47] [Server thread/INFO]: [CrazyCrates] ORAXEN NOT FOUND
[00:08:47] [Server thread/INFO]: [CrazyCrates] ITEMS_ADDER NOT FOUND
[00:08:47] [Server thread/INFO]: [CrazyCrates] PlaceholderAPI support is enabled!
[00:08:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [1.19.3]
[00:08:47] [Server thread/INFO]: [CrazyCrates] You can disable logging by going to the plugin-config.yml and setting verbose to false.
[00:08:47] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.4.2
[00:08:48] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.0 - paper
[00:08:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.4.2]
[00:08:48] [Server thread/INFO]: PlaceholderAPI hooked.
[00:08:48] [Server thread/INFO]: Updated (EN) language file. Took 13ms
[00:08:48] [Server thread/INFO]: Updated (TR) language file. Took 10ms
[00:08:48] [Server thread/INFO]: [ClansLite] Enabling ClansLite v1.4.3
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: ClansLite: A supported Minecraft version has been detected
[00:08:48] [Server thread/INFO]: ClansLite: Your server version is: git-Paper-17 (MC: 1.20)
[00:08:48] [Server thread/INFO]: ClansLite: Continuing plugin startup
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: ClansLite: Successfully hooked into PlugManX
[00:08:48] [Server thread/INFO]: ClansLite: Successfully added ClansLite to ignoredPlugins list.
[00:08:48] [Server thread/INFO]: ClansLite: Continuing plugin startup
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: ClansLite: Global GUI system enabled!
[00:08:48] [Server thread/INFO]: ClansLite: Chest protection system enabled!
[00:08:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clansLite [1.4.3]
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: ClansLite: PlaceholderAPI found!
[00:08:48] [Server thread/INFO]: ClansLite: External placeholders enabled!
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: ClansLite: FloodgateApi not found!
[00:08:48] [Server thread/INFO]: ClansLite: Bedrock support may not function!
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: ClansLite: Plugin by: Loving11ish
[00:08:48] [Server thread/INFO]: ClansLite: has been loaded successfully
[00:08:48] [Server thread/INFO]: ClansLite: Plugin Version: 1.4.3
[00:08:48] [Server thread/INFO]: -------------------------------------------
[00:08:48] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[00:08:48] [Server thread/INFO]: [ChatBrawl] Enabling ChatBrawl v2.1
[00:08:48] [Server thread/INFO]: Yarış başlatıldı.
[00:08:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cb [2.1]
[00:08:48] [Server thread/INFO]: [BPS-Free] Enabling BPS-Free v4.0.19
[00:08:48] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[00:08:48] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the config.yml
[00:08:48] [Server thread/WARN]: Nag author(s): '[BadBones69, Felux]' of 'BlockParticles v1.11.1-RELEASE' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[00:08:48] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded config.yml
[00:08:48] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the data.yml
[00:08:48] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded data.yml
[00:08:48] [Server thread/INFO]: [BetterSocial] Enabling BetterSocial v1.3-BETA
[00:08:48] [Server thread/INFO]: [BetterSocial] Inventory title with support for more than 32 characters. Skipping..
[00:08:48] [Server thread/INFO]: [BetterSocial] Hex colors are available! Ready for RGB..
[00:08:48] [Server thread/INFO]: [BetterSocial] Old constructor for HoverEvent found! Using it..
[00:08:48] [Server thread/INFO]: [BetterSocial] New sendTitle method found! Using it..
[00:08:48] [Server thread/INFO]: [BetterSocial] New setUnbreakable method found! Using it..
[00:08:48] [Server thread/INFO]: [BetterSocial] New isUnbreakable method found! Using it..
[00:08:48] [Server thread/INFO]:   ___      _   _           ___          _      _ 
[00:08:48] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _/ __| ___  __(_)__ _| |
[00:08:48] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_\__ \/ _ \/ _| / _` | |
[00:08:48] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |___/\___/\__|_\__,_|_|
[00:08:48] [Server thread/INFO]: 
[00:08:48] [Server thread/INFO]:    Running plugin BetterSocial v1.3-BETA
[00:08:48] [Server thread/INFO]:    Server running Paper version git-Paper-17 (MC: 1.20)
[00:08:48] [Server thread/INFO]:    (Implementing API version git-Paper-17 (MC: 1.20))
[00:08:48] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[00:08:48] [Server thread/INFO]:    (If you loved the plugin consider leaving a review and mentioning your server IP in it!
[00:08:48] [Server thread/INFO]: 
[00:08:48] [Server thread/INFO]: ===================================================================================
[00:08:48] [Server thread/INFO]: [BetterSocial] You are using a Paper fork (Paper). Plugin might have errors
[00:08:48] [Server thread/INFO]: [BetterSocial] and not work properly. Consider using SPIGOT!
[00:08:48] [Server thread/INFO]: [BetterSocial] This is not an error! This is just a warning to let you know that this
[00:08:48] [Server thread/INFO]: [BetterSocial] plugin has not been tested on paper forks. This plugin was made for spigot
[00:08:48] [Server thread/INFO]: [BetterSocial] and has been tested on spigot only. If you have issues report them to the
[00:08:48] [Server thread/INFO]: [BetterSocial] developer instead of reviewing 1 star. Thanks in advanced!
[00:08:48] [Server thread/INFO]: [BetterSocial] Join our official support server on alonsoaliaga.com/discord
[00:08:48] [Server thread/INFO]: ===================================================================================
[00:08:48] [Server thread/INFO]: 
[00:08:48] [Server thread/INFO]: [BetterSocial] BungeeCord action bar available. Hooking..
[00:08:48] [Server thread/INFO]: [BetterSocial] ProtocolLib found! Checking..
[00:08:48] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[00:08:48] [Server thread/INFO]: [BetterSocial] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[00:08:48] [Server thread/INFO]: [BetterSocial] [SQLite] Attempting to create 'bettersocial' table..
[00:08:48] [Server thread/INFO]: [SQLite] Connecting to database 'database-bettersocial.db'!
[00:08:48] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC
[00:08:48] [Server thread/INFO]: [SQLite] Successfully connected to database!
[00:08:48] [Server thread/INFO]: [BetterSocial] [SQLite] Table 'bettersocial' has been created if didn't exist.
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'twitter' is enabled in config. Loading..
[00:08:48] [Server thread/INFO]: [BetterSocial] GameProfile field is available for heads. Hooking..
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'twitter' successfully enabled! Slot: 10
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'youtube' is enabled in config. Loading..
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'youtube' successfully enabled! Slot: 11
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'instagram' is enabled in config. Loading..
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'instagram' successfully enabled! Slot: 12
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'twitch' is enabled in config. Loading..
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'twitch' successfully enabled! Slot: 14
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'facebook' is enabled in config. Loading..
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'facebook' successfully enabled! Slot: 15
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'discord' is enabled in config. Loading..
[00:08:48] [Server thread/INFO]: [BetterSocial] Media 'discord' successfully enabled! Slot: 16
[00:08:48] [Server thread/INFO]: [BetterSocial] Social media 'youtube' column already registered in database!
[00:08:48] [Server thread/INFO]: [BetterSocial] Social media 'twitter' column already registered in database!
[00:08:48] [Server thread/INFO]: [BetterSocial] Social media 'twitch' column already registered in database!
[00:08:48] [Server thread/INFO]: [BetterSocial] Social media 'discord' column already registered in database!
[00:08:48] [Server thread/INFO]: [BetterSocial] Social media 'facebook' column already registered in database!
[00:08:48] [Server thread/INFO]: [BetterSocial] Social media 'instagram' column already registered in database!
[00:08:48] [Server thread/INFO]: [BetterSocial] PlaceholderAPI found! Hooking..
[00:08:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bettersocial [1.3-BETA]
[00:08:48] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.12
[00:08:48] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[00:08:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.12]
[00:08:48] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.9.8
[00:08:48] [Server thread/INFO]: [BeastWithdraw] /XpBottle command aliases [xpb, beastxpb, bottle] are registered.
[00:08:48] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [cashnote, withdraw, moneywithdraw, moneynote] are registered.
[00:08:48] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[00:08:48] [Server thread/WARN]: [NBTAPI] [NBTAPI] Wasn't able to find NMS Support! Some functions may not work!
[00:08:48] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[00:08:48] [Server thread/INFO]: [BeastWithdraw] Version 2.9.8 : has been enabled!
[00:08:48] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v1.3.0-b10
[00:08:48] [Server thread/INFO]: [AuctionHouse] ========== Akarian Auction House ==========
[00:08:48] [Server thread/INFO]: [AuctionHouse]  
[00:08:48] [Server thread/INFO]: [AuctionHouse] Loading Akarian Auction House v1.3.0-b10...
[00:08:48] [Server thread/INFO]: [AuctionHouse] Setting up Economy...
[00:08:48] [Server thread/INFO]: [AuctionHouse] Successfully hooked into EssentialsX Economy.
[00:08:48] [Server thread/INFO]: [AuctionHouse] Loading database...
[00:08:48] [Server thread/INFO]: [AuctionHouse] Successfully connected to FILE database.
[00:08:48] [Server thread/INFO]: [AuctionHouse] Loading listings...
[00:08:48] [Server thread/INFO]: [AuctionHouse] Listings loaded successfully.
[00:08:48] [Server thread/INFO]: [AuctionHouse] Loading users...
[00:08:48] [Server thread/INFO]: [AuctionHouse] Users loaded successfully.
[00:08:48] [Server thread/INFO]: [AuctionHouse] Loading layouts...
[00:08:48] [Server thread/INFO]: [AuctionHouse] =================================================
[00:08:48] [Server thread/INFO]: [AntiDonkeyDupe] Enabling AntiDonkeyDupe v1.0.2
[00:08:48] [Server thread/INFO]: [AnimaBossBar] Enabling AnimaBossBar v4.7*
[00:08:48] [Server thread/INFO]: [AnimaBossBar] [STDOUT] ------------------------------------------------------------------
[00:08:48] [Server thread/WARN]: Nag author(s): '[Dutchwilco]' of 'AnimaBossBar v4.7' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[00:08:48] [Server thread/INFO]: [AnimaBossBar] [STDOUT]                                                                   
[00:08:48] [Server thread/INFO]: [AnimaBossBar] [STDOUT]       This BossBar Plugin is made by: Dutchwilco Version 4.7      
[00:08:48] [Server thread/INFO]: [AnimaBossBar] [STDOUT]                                                                   
[00:08:48] [Server thread/INFO]: [AnimaBossBar] [STDOUT] ------------------------------------------------------------------
[00:08:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: player [1.0]
[00:08:48] [Server thread/INFO]: [AfkPool] Enabling AfkPool v1.3.1
[00:08:48] [Server thread/INFO]: [AfkPool] AfkPool Version 1.3.1 enabled.
[00:08:49] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[00:08:49] [Server thread/INFO]: Running delayed init tasks
[00:08:49] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[00:08:49] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[00:08:49] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[00:08:49] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[00:08:49] [Craft Scheduler Thread - 38 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[00:08:49] [Craft Scheduler Thread - 45 - Vault/INFO]: [Vault] Checking for Updates ... 
[00:08:49] [Craft Scheduler Thread - 30 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[00:08:49] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[00:08:49] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[00:08:49] [Server thread/INFO]: [WildStacker] Loading providers started...
[00:08:49] [Craft Scheduler Thread - 31 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[00:08:49] [Server thread/INFO]: [WildStacker]  - Using MineableSpawners as SpawnersProvider.
[00:08:49] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[00:08:49] [Craft Scheduler Thread - 45 - Vault/INFO]: [Vault] No new version available
[00:08:49] [Server thread/INFO]: [WildStacker] 
[00:08:49] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[00:08:49] [Server thread/INFO]: [WildStacker] Loading providers done (Took 39ms)
[00:08:49] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[00:08:49] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[00:08:49] [Server thread/INFO]: [Skript] Loading variables...
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     Version: 15.0.4
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     Commit: 677e967
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[00:08:49] [Craft Scheduler Thread - 4 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[00:08:49] [Craft Scheduler Thread - 27 - Duels/INFO]: [Duels] ===============================================
[00:08:49] [Craft Scheduler Thread - 27 - Duels/INFO]: [Duels] An update for Duels is available!
[00:08:49] [Craft Scheduler Thread - 27 - Duels/INFO]: [Duels] Download Duels v3.5.3 here:
[00:08:49] [Craft Scheduler Thread - 27 - Duels/INFO]: [Duels] https://www.spigotmc.org/resources/duels.20171/
[00:08:49] [Craft Scheduler Thread - 27 - Duels/INFO]: [Duels] ===============================================
[00:08:49] [Server thread/INFO]: [Skript] Loaded 12 variables in 0.0 seconds
[00:08:49] [Craft Scheduler Thread - 13 - AfkPool/ERROR]: [AfkPool] There is a new AfkPool update available. Please update to the latest version (1.3.1 --> 1.3.2).
[00:08:49] [Craft Scheduler Thread - 34 - CMILib/INFO]: New version of CMILib was detected. Please update it
[00:08:49] [Craft Scheduler Thread - 53 - BeastWithdraw/INFO]: [BeastWithdraw] There is a new update available.
[00:08:49] [Craft Scheduler Thread - 46 - AnimaBossBar/INFO]: AnimaBossBar is up to date!
[00:08:49] [Craft Scheduler Thread - 43 - ClansLite/INFO]: *-------------------------------------------*
[00:08:49] [Craft Scheduler Thread - 43 - ClansLite/INFO]: ClansLite: Plugin is up to date!
[00:08:49] [Craft Scheduler Thread - 43 - ClansLite/INFO]: *-------------------------------------------*
[00:08:49] [Server thread/INFO]: [Skript] Line 9: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Başlangıç noktası ayarlandı!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 12: (genel.sk)
[00:08:49] [Server thread/INFO]:     me.ryanhamshire.GriefPrevention.GriefPrevention refers to a non-existent class.
[00:08:49] [Server thread/INFO]:     Line: me.ryanhamshire.GriefPrevention.GriefPrevention
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 13: (genel.sk)
[00:08:49] [Server thread/INFO]:     me.ryanhamshire.GriefPrevention.DataStore refers to a non-existent class.
[00:08:49] [Server thread/INFO]:     Line: me.ryanhamshire.GriefPrevention.DataStore
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 15: (genel.sk)
[00:08:49] [Server thread/INFO]:     Can't understand this expression: 'GriefPrevention.instance.dataStore.getClaimAt(event-location, false, null)'
[00:08:49] [Server thread/INFO]:     Line: set {_claim} to GriefPrevention.instance.dataStore.getClaimAt(event-location, false, null)
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[00:08:49] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[00:08:49] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[00:08:49] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.4.402
[00:08:49] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[00:08:49] [Server thread/INFO]: [Skript] Line 18: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sadece claimine <##e8e850>Doğurucu <##f3f3a0>koyabilirsin!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 26: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sunucuda geçerli olmayan bir komut girdin!" to the player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 31: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sunucuda geçerli olmayan bir komut girdin!" to the player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 88: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu <##e8e850>iksir <##f3f3a0>yasaklı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 106: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sunucuda geçerli olmayan bir komut girdin!" to the player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 113: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliğine son <##e8e850>3 saniye <##f3f3a0>kaldı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 115: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliğine son <##e8e850>2 saniye <##f3f3a0>kaldı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 117: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliğine son <##e8e850>1 saniye <##f3f3a0>kaldı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 126: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliği bitti, iyi oyunlar!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 132: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliğine son <##e8e850>3 saniye <##f3f3a0>kaldı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 134: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliğine son <##e8e850>2 saniye <##f3f3a0>kaldı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 136: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliğine son <##e8e850>1 saniye <##f3f3a0>kaldı!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 145: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: broadcast "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Envanter etkinliği bitti, iyi oyunlar!"
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 165: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sandık sınırın başarıyla <##e8e850>7 <##f3f3a0>oldu!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 172: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sandık sınırın başarıyla <##e8e850>8 <##f3f3a0>oldu!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 179: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>PW sınırın başarıyla <##e8e850>2 <##f3f3a0>oldu!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 186: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>PW sınırın başarıyla <##e8e850>3 <##f3f3a0>oldu!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 193: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sethome sınırın başarıyla <##e8e850>4 <##f3f3a0>oldu!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 200: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sethome sınırın başarıyla <##e8e850>5 <##f3f3a0>oldu!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 211: (genel.sk)
[00:08:49] [Server thread/INFO]:     an entity cannot be saved, i.e. the contents of the variable {bannedItems::*} will be lost when the server stops.
[00:08:49] [Server thread/INFO]:     Line: add hopper minecart to {bannedItems::*}
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 217: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu eşyayı koyamazsın." to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 222: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu eşyayı kullanamazsın." to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 227: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu eşyayı oluşturamazsın." to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 232: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu eşyayı kullanamazsın." to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 242: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Eşyalarını güle güle kullan!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 256: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Işınlanıyorsun!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 264: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>%arg 1% <##f3f3a0>adlı oyuncuyu başlangıca ışınladın!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 265: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>%player% <##f3f3a0>adlı oyuncuyu seni başlangıca ışınladı!" to arg 1
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 268: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Ad <##f3f3a0>girmeyi unuttun!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 273: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>%victim% <##f3f3a0>adlı oyuncuyu öldürerek kafasını aldın!" to attacker
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 333: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu komutu kullanabilmek için <##e8e850>efekt süresinin <##f3f3a0>bitmesi lazım."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 337: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Hız <##f3f3a0>efekti verildi."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 345: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu komutu kullanabilmek için <##e8e850>efekt süresinin <##f3f3a0>bitmesi lazım."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 349: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Güç <##f3f3a0>efekti verildi."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 357: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu komutu kullanabilmek için <##e8e850>efekt süresinin <##f3f3a0>bitmesi lazım."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 361: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Gece görüşü <##f3f3a0>efekti verildi."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 369: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu komutu kullanabilmek için <##e8e850>efekt süresinin <##f3f3a0>bitmesi lazım."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 373: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Yenileme <##f3f3a0>efekti verildi."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 381: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Bu komutu kullanabilmek için <##e8e850>efekt süresinin <##f3f3a0>bitmesi lazım."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 385: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: message "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Su altında nefes alma <##f3f3a0>efekti verildi."
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 425: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sohbet <##e8e850>kapatıldı<##f3f3a0>." to players
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 428: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sohbet <##e8e850>açıldı<##f3f3a0>." to players
[00:08:49] [Server thread/INFO]:  
[00:08:49] [Server thread/INFO]: [Skript] Line 434: (genel.sk)
[00:08:49] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:49] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Sohbet kapalı!" to player
[00:08:49] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 498: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>1 <##f3f3a0>adet <##e8e850>Keskinlik 4 Elmas Kılıç <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 501: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>1 <##f3f3a0>adet <##e8e850>Kırılmazlık 3 Elmas Kazma <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 504: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>1 <##f3f3a0>adet <##e8e850>Zümrüt <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 507: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>1 <##f3f3a0>adet <##e8e850>Elmas <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 510: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>4 <##f3f3a0>adet <##e8e850>Demir Külçesi <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 513: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>2 <##f3f3a0>adet <##e8e850>Altın Külçesi <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 516: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Donsuz'un Baltası'nı <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 519: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Taş <##f3f3a0>gibi eşyalar buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 522: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>Altın Elma <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 525: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##e8e850>7 <##f3f3a0>adet <##e8e850>Kömür <##f3f3a0>buldun!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Line 527: (genel.sk)
[00:08:50] [Server thread/INFO]:     Invalid use of quotes ("). If you want to use quotes in "quoted text", double them: "".
[00:08:50] [Server thread/INFO]:     Line: send "<#fb0000>&lA<#fb2700>&lr<#fc4e00>&lt<#fc7600>&li<#fc9d00>&ln<#fdc400>&la<#fdeb00>&ls <##4b4b49>⇴ <##f3f3a0>Hiçbir şey bulamadın!"
[00:08:50] [Server thread/INFO]:  
[00:08:50] [Server thread/INFO]: [Skript] Loaded 3 scripts with a total of 47 triggers and 16 commands in 1.6 seconds
[00:08:50] [Server thread/INFO]: [Skript] Finished loading.
[00:08:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [1.0.0]
[00:08:50] [Server thread/INFO]: [BPS Free] Successfully enabled v4.0.19
[00:08:50] [Server thread/INFO]: --------------------------------------------------------------------------------------
[00:08:50] [Server thread/INFO]:          Developed by Ruben_Artz
[00:08:50] [Server thread/INFO]: [BPS Free] Version: 4.0.19 is loading... (Current)
[00:08:50] [Server thread/INFO]: [BPS Free] Server: git-Paper-17 (MC: 1.20)
[00:08:50] [Server thread/INFO]: [BPS Free] Loading necessary files...
[00:08:50] [Server thread/INFO]: 
[00:08:50] [Server thread/INFO]: BPS Free [Loader] Loaded archive 'config.yml'
[00:08:50] [Server thread/INFO]: BPS Free Starting plugin...
[00:08:50] [Server thread/INFO]: 
[00:08:50] [Server thread/INFO]: [BPS Free] PlaceholderAPI found correctly.
[00:08:50] [Server thread/INFO]: [BPS Free] ProtocolLib found correctly.
[00:08:50] [Server thread/INFO]: 
[00:08:50] [Server thread/INFO]: --------------------------------------------------------------------------------------
[00:08:50] [Server thread/INFO]: [WildStacker] Starting to load entities...
[00:08:50] [Server thread/INFO]: [WildStacker] Loading entities done! Took 1 ms.
[00:08:50] [Server thread/INFO]: [WildStacker] Starting to load items...
[00:08:51] [Server thread/INFO]: [WildStacker] Loading items done! Took 1 ms.
[00:08:51] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[00:08:51] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[00:08:51] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[00:08:51] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [1.0.1]
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.4.0]
[00:08:51] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[00:08:51] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.0]
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.1-R2]
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pinger [1.0.1]
[00:08:51] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion player. Identifier is already in use.
[00:08:51] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion player due to an unknown issue.
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rainbowcolor [1.2]
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.0]
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[00:08:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.0]
[00:08:51] [Server thread/INFO]: 9 placeholder hook(s) registered! 5 placeholder hook(s) have an update available.
[00:08:51] [Server thread/INFO]: Done (30.354s)! For help, type "help"
[00:08:51] [Server thread/INFO]: Timings Reset
[00:08:52] [Craft Scheduler Thread - 16 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[00:08:54] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[00:08:54] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[00:08:54] [Craft Scheduler Thread - 53 - ClansLite/INFO]: ClansLite: Auto save task has started.
[00:08:54] [Craft Scheduler Thread - 46 - ClansLite/INFO]: ClansLite: Auto invite wipe task has started.
[00:08:55] [Craft Scheduler Thread - 16 - ClansLite/INFO]: ClansLite: Cleared all outstanding clan invites!
[00:08:55] [Craft Scheduler Thread - 36 - ClansLite/INFO]: ClansLite: Saved all Clans to file!
[00:08:59] [Server thread/INFO]:  
-------- Blok Yarışı --------
 
 Aşağıdaki bloğu ilk kıran kazanır!
 
 > 5 adet cobblestone
 
--------------------------
 
[00:08:59] [Craft Scheduler Thread - 43 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[00:08:59] [Craft Scheduler Thread - 30 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.15
[00:11:34] [User Authenticator #0/INFO]: ClansLite: Global GUI system disabled!
[00:11:34] [User Authenticator #0/INFO]: ClansLite: Chest protection system disabled!
[00:11:34] [User Authenticator #0/INFO]: -------------------------------------------
[00:11:34] [User Authenticator #0/INFO]: ClansLite: This plugin is only supported on online servers or servers running in an online network situation!
[00:11:34] [User Authenticator #0/INFO]: ClansLite: Some features may behave incorrectly or may be broken completely!
[00:11:34] [User Authenticator #0/INFO]: ClansLite: Please set 'online-mode=true' in 'server.properties'
[00:11:34] [User Authenticator #0/INFO]: ClansLite: Or ensure your proxy setup is correct and your proxy is set to online mode!
[00:11:34] [User Authenticator #0/INFO]: ClansLite: NO SUPPORT WILL BE GIVEN UNLESS THE ABOVE IS CHANGED/SETUP CORRECTLY!
[00:11:34] [User Authenticator #0/INFO]: -------------------------------------------
[00:11:34] [User Authenticator #0/INFO]: UUID of player Nexarpy is 94bfd284-ca2b-3912-b482-ad03551beb49
[00:11:34] [Server thread/INFO]: Welcome back  Nexarpy
[00:11:34] [Server thread/INFO]: Nexarpy[/127.0.0.1:59991] logged in with entity id 273 at ([spawn]-275.07697834177856, 34.30103460046999, 126.92627985220989)
[00:11:38] [Server thread/INFO]: Nexarpy issued server command: /plugman list
[00:11:44] [Server thread/INFO]: Nexarpy issued server command: /Npc
[00:11:45] [Server thread/INFO]: Nexarpy issued server command: /npc
[00:11:45] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.33-SNAPSHOT (build 3305) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.20-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.20-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.20.jar:git-Paper-17]
    at org.bukkit.craftbukkit.v1_20_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.20.jar:git-Paper-17]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265) ~[paper-1.20.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2298) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2258) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1339) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1316) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1309) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1287) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.jar:git-Paper-17]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[00:13:16] [Server thread/INFO]: Unknown command. Type "/help" for help.
[00:13:20] [Server thread/INFO]: Nexarpy issued server command: /npc
[00:13:20] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.33-SNAPSHOT (build 3305) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.20-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.20-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.20.jar:git-Paper-17]
    at org.bukkit.craftbukkit.v1_20_R1.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.20.jar:git-Paper-17]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265) ~[paper-1.20.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:324) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:308) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2298) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2258) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1339) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1316) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1309) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1287) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[paper-1.20.jar:git-Paper-17]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[paper-1.20.jar:git-Paper-17]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]