Paste #117541: latest log

Date: 2023/11/13 15:29:24 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


[02:28:09] [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'
[02:28:11] [Worker-Main-3/INFO]: Loaded 7 recipes
[02:28:12] [Server thread/INFO]: Starting minecraft server version 1.18.2
[02:28:12] [Server thread/INFO]: Loading properties
[02:28:13] [Server thread/INFO]: This server is running Paper version git-Paper-388 (MC: 1.18.2) (Implementing API version 1.18.2-R0.1-SNAPSHOT) (Git: fc9ee65 on ver/1.18.2)
[02:28:13] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:28:13] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:28:13] [Server thread/INFO]: Default game type: SURVIVAL
[02:28:13] [Server thread/INFO]: Generating keypair
[02:28:13] [Server thread/INFO]: Starting Minecraft server on *:25565
[02:28:13] [Server thread/INFO]: Using default channel type
[02:28:13] [Server thread/INFO]: Paper: Using Java 11 compression from Velocity.
[02:28:13] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[02:28:14] [Server thread/ERROR]: Ambiguous plugin name `WorldEdit' for files `plugins\worldedit-bukkit-7.2.10 (1).jar' and `plugins\FastAsyncWorldEdit-1.16-306.jar' in `plugins'
[02:28:15] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\mongodb\mongodb-driver-sync\4.8.1\mongodb-driver-sync-4.8.1.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\mongodb\bson\4.8.1\bson-4.8.1.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\mongodb\mongodb-driver-core\4.8.1\mongodb-driver-core-4.8.1.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\mongodb\bson-record-codec\4.8.1\bson-record-codec-4.8.1.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\redis\clients\jedis\4.3.1\jedis-4.3.1.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\apache\commons\commons-pool2\2.11.1\commons-pool2-2.11.1.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\org\json\json\20220320\json-20220320.jar
[02:28:15] [Server thread/INFO]: [Denizen] Loaded library C:\Users\aeria\Desktop\desktop mc progress\1.18.2\libraries\com\google\code\gson\gson\2.8.9\gson-2.8.9.jar
[02:28:15] [Server thread/INFO]: [DiscordSRV] Unknown user language TR.
[02:28:15] [Server thread/INFO]: [DiscordSRV] If you fluently speak TR as well as English, see the GitHub repo to translate it!
[02:28:15] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_18_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[02:28:21] [Server thread/WARN]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
[02:28:21] [Server thread/INFO]: [CutsceneStudio] Loading CutsceneStudio v1.1.3
[02:28:21] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.3
[02:28:21] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.2
[02:28:21] [Server thread/INFO]: [MotionCaptureRewritten] Loading MotionCaptureRewritten v2.0.3
[02:28:21] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b554
[02:28:23] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.39
[02:28:23] [Server thread/INFO]: [RHForceResourcePack] Loading RHForceResourcePack v1.20_R1
[02:28:23] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v15.0.3
[02:28:23] [Server thread/INFO]: [Gamerule-Manager] Loading Gamerule-Manager v1.0.0
[02:28:23] [Server thread/INFO]: [MobsManager] Loading MobsManager v2.3
[02:28:23] [Server thread/INFO]: [Misk] Loading Misk v1.0.0
[02:28:23] [Server thread/INFO]: [LimitPillagers] Loading LimitPillagers v2.12.0
[02:28:23] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[02:28:23] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.10+1742f98
[02:28:24] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@223eb687]
[02:28:24] [Server thread/INFO]: [Essentials] Loading Essentials v2.17.2.0
[02:28:24] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[02:28:24] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5+3827266
[02:28:24] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.33-SNAPSHOT (build 3260)
[02:28:24] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
[02:28:24] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[02:28:24] [Server thread/INFO]: [BlockParticles] Loading BlockParticles v1.11.1-RELEASE
[02:28:24] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.9-SNAPSHOT (build 1798-REL)
[02:28:24] [Server thread/INFO]: [WorldChangeScreenRemover] Loading WorldChangeScreenRemover v1.0.17
[02:28:24] [Server thread/INFO]: [AuthMe] Loading AuthMe v5.6.0-SNAPSHOT-bCUSTOM
[02:28:24] [Server thread/INFO]: [eGlow] Loading eGlow v3.2.4
[02:28:24] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.12.0-d4d7ac4
[02:28:24] [Server thread/INFO]: [Skript] Loading Skript v2.6.4
[02:28:24] [Server thread/INFO]: [SharpSK] Loading SharpSK v1.6.13
[02:28:24] [Server thread/INFO]: [skDragon] Loading skDragon v0.17-alex-MC1.18-hack-4
[02:28:24] [Server thread/INFO]: [Skellett] Loading Skellett v2.0.8
[02:28:24] [Server thread/INFO]: [skript-gui] Loading skript-gui v1.3
[02:28:24] [Server thread/INFO]: [skRayFall] Loading skRayFall v1.9.28
[02:28:24] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.2
[02:28:24] [Server thread/INFO]: [SkBee] Loading SkBee v2.18.4
[02:28:24] [Server thread/INFO]: [skript-reflect] Loading skript-reflect v2.3
[02:28:24] [Server thread/INFO]: [skUtilities] Loading skUtilities v0.9.2
[02:28:24] [Server thread/INFO]: [Skungee] Loading Skungee v2.0.0-BETA-5
[02:28:24] [Server thread/INFO]: [GriefPreventionFlags] Loading GriefPreventionFlags v5.9.0
[02:28:24] [Server thread/INFO]: [SkJade] Loading SkJade v1.4.3
[02:28:24] [Server thread/INFO]: [SkGlow] Loading SkGlow v2.0.1
[02:28:24] [Server thread/INFO]: [SkQuery] Loading SkQuery v4.1.7
[02:28:24] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:28:24] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b554
[02:28:24] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[02:28:24] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.3
[02:28:25] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_18_R2, using PaperSkinRefresher.
[02:28:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: skinsrestorer [15.0.3]
[02:28:25] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[02:28:25] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[02:28:25] [Server thread/INFO]: [LimitPillagers] Enabling LimitPillagers v2.12.0
[02:28:25] [Server thread/INFO]: [LimitPillagers] Registering metrics...
[02:28:25] [Server thread/INFO]: [LimitPillagers] Registering commands...
[02:28:25] [Server thread/INFO]: [LimitPillagers] Registering listeners...
[02:28:25] [Server thread/INFO]: [LimitPillagers] Loading config.yml...
[02:28:25] [Server thread/INFO]: [LimitPillagers] LimitPillagers v2.12.0 Enabled in 16 ms
[02:28:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[02:28:25] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.17.2.0 which is not a depend or softdepend of this plugin.
[02:28:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[02:28:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[02:28:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[02:28:25] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.10+1742f98
[02:28:25] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:28:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:28:26] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_18_R2.PaperweightAdapter as the Bukkit adapter
[02:28:26] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[02:28:26] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[02:28:26] [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.
[02:28:26] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[02:28:26] [Server thread/INFO]: Preparing level "rpg"
[02:28:28] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:28:28] [Server thread/INFO]: Time elapsed: 300 ms
[02:28:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:28:28] [Server thread/INFO]: Time elapsed: 97 ms
[02:28:28] [Server thread/INFO]: [CutsceneStudio] Enabling CutsceneStudio v1.1.3
[02:28:28] [Server thread/INFO]: 1
[02:28:28] [Server thread/INFO]: [CutsceneStudio] [STDOUT] fd_Recording_0.yml
[02:28:28] [Server thread/WARN]: Nag author(s): '[CraterHater]' of 'CutsceneStudio' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:28:28] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 0 node n
[02:28:28] [Server thread/INFO]: 1
[02:28:28] [Server thread/INFO]: [CutsceneStudio] [STDOUT] fd_Recording_1.yml
[02:28:28] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 1 node n
[02:28:28] [Server thread/INFO]: 1
[02:28:28] [Server thread/INFO]: [CutsceneStudio] [STDOUT] fd_Recording_2.yml
[02:28:28] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 2 node n
[02:28:29] [Server thread/INFO]: 1
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] test1_Recording_0.yml
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 0 node n
[02:28:29] [Server thread/INFO]: 1
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] test1_Recording_0.yml.bak
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 0 node n
[02:28:29] [Server thread/INFO]: 1
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] test5_Recording_0.yml
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 0 node n
[02:28:29] [Server thread/INFO]: 1
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] test5_Recording_1.yml
[02:28:29] [Server thread/INFO]: [CutsceneStudio] [STDOUT] 1 node n
[02:28:29] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[02:28:30] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:28:30] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.2
[02:28:30] [Server thread/INFO]: [MotionCaptureRewritten] Enabling MotionCaptureRewritten v2.0.3
[02:28:30] [Server thread/INFO]: [Motion Capture]: Running an unsupported version! Shutting down plugin...
[02:28:30] [Server thread/INFO]: [Motion Capture]: Motion Capture has succesfully started
[02:28:30] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.39
[02:28:30] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.18-Free.jar
[02:28:30] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_18_R2 (v1_18)
[02:28:30] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1262
[02:28:30] [Server thread/INFO]: [LibsDisguises] Build Date: 13/11/2023 08:46
[02:28:30] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[02:28:30] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[02:28:32] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[02:28:32] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Chad
[02:28:32] [Server thread/INFO]: [LibsDisguises] Loaded 2 custom disguises
[02:28:32] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[02:28:32] [Server thread/INFO]: [RHForceResourcePack] Enabling RHForceResourcePack v1.20_R1
[02:28:32] [Server thread/INFO]: [RHForceResourcePack] The plugin has been loaded!
[02:28:32] [Server thread/INFO]: [RHForceResourcePack] You are using version 1.20_R1 /w 💕 by X0R3
[02:28:32] [Server thread/INFO]: [RHForceResourcePack] Info:
[02:28:32] [Server thread/INFO]: [RHForceResourcePack] If you want your server be presented on the plugin page, then please contact me! :)
[02:28:32] [Server thread/INFO]: [Gamerule-Manager] Enabling Gamerule-Manager v1.0.0
[02:28:32] [Server thread/INFO]: [MobsManager] Enabling MobsManager v2.3
[02:28:32] [Server thread/INFO]: [Misk] Enabling Misk v1.0.0
[02:28:32] [Server thread/WARN]: [Misk] Loaded class ch.njol.skript.Skript from Skript v2.6.4 which is not a depend or softdepend of this plugin.
[02:28:32] [Server thread/INFO]: [Misk] *  Skript was not found.
[02:28:32] [Server thread/INFO]: [Misk] *  Bye bye... :(
[02:28:32] [Server thread/ERROR]: Error occurred while enabling Misk v1.0.0 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "org.bukkit.plugin.PluginManager.disablePlugin(org.bukkit.plugin.Plugin)" because "this.pluginManager" is null
    at com.moderocky.misk.MiSK.disablePlugin(MiSK.java:137) ~[?:?]
    at com.moderocky.misk.MiSK.onEnable(MiSK.java:84) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:541) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.18.2.jar:git-Paper-388]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugins(CraftServer.java:474) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:665) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:432) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:316) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1164) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.18.2.jar:git-Paper-388]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:28:32] [Server thread/INFO]: [Misk] Disabling Misk v1.0.0
[02:28:32] [Server thread/INFO]: [Misk] *  MiSK disabled!
[02:28:32] [Server thread/INFO]: [Essentials] Enabling Essentials v2.17.2.0
[02:28:32] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[02:28:32] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[02:28:32] [Server thread/INFO]: [Essentials] No kits found to migrate.
[02:28:32] [Server thread/INFO]: [Essentials] Using 1.8.3+ BlockStateMeta provider as mob spawner provider.
[02:28:32] [Server thread/INFO]: [Essentials] Using 1.13+ flat spawn egg provider as spawn egg provider.
[02:28:32] [Server thread/INFO]: [Essentials] Using 1.9+ BasePotionData provider as potion meta provider.
[02:28:32] [Server thread/INFO]: [Essentials] Loaded 21018 items from items.json.
[02:28:32] [Server thread/INFO]: [Essentials] Using locale tr_TR
[02:28:32] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:28:32] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:28:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[02:28:32] [Server thread/INFO]: [Essentials] Using config file enhanced permissions.
[02:28:32] [Server thread/INFO]: [Essentials] Permissions listed in as player-commands will be given to all users.
[02:28:32] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[02:28:32] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[02:28:32] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[02:28:32] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: frost/DIM1
[02:28:32] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:32] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: frost_the_end
[02:28:32] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:32] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: archives
[02:28:32] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:32] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: aeria_the_end
[02:28:32] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:32] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: scpmap_nether
[02:28:32] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: scpmap_the_end
[02:28:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:33] [Server thread/INFO]: Could not set generator for world 'IridiumSkyblock': Plugin 'IridiumSkyblock' does not exist
[02:28:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: IridiumSkyblock
[02:28:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: frost/DIM-1
[02:28:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: archives_nether
[02:28:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:33] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[02:28:33] [Server thread/INFO]: Preparing spawn area: 0%
[02:28:33] [Server thread/INFO]: Time elapsed: 455 ms
[02:28:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: netherland_the_end
[02:28:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:33] [Server thread/INFO]: Could not set generator for world 'IridiumSkyblock_nether': Plugin 'IridiumSkyblock' does not exist
[02:28:33] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: IridiumSkyblock_nether
[02:28:33] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/INFO]: Preparing start region for dimension minecraft:rpg/dim-1
[02:28:34] [Server thread/INFO]: Preparing spawn area: 0%
[02:28:34] [Server thread/INFO]: Time elapsed: 142 ms
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: frost
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/INFO]: Preparing start region for dimension minecraft:rpg/dim1
[02:28:34] [Server thread/INFO]: Time elapsed: 116 ms
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: scpmap
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: aeria
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: kimetsu_the_end
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: archives_the_end
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: netherland
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: kimetsu
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: kimetsu_nether
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[02:28:34] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[02:28:34] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[02:28:34] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[02:28:34] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5+3827266
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg) TNT ignition is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg) Lighters are PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg) Lava fire is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg) Fire spread is UNRESTRICTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg'
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_the_end) TNT ignition is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_the_end) Lighters are PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_the_end) Lava fire is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_the_end) Fire spread is UNRESTRICTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg_the_end'
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_nether) TNT ignition is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_nether) Lighters are PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_nether) Lava fire is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg_nether) Fire spread is UNRESTRICTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg_nether'
[02:28:34] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM-1) TNT ignition is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM-1) Lighters are PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM-1) Lava fire is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM-1) Fire spread is UNRESTRICTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg/DIM-1'
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM1) TNT ignition is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM1) Lighters are PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM1) Lava fire is PERMITTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] (rpg/DIM1) Fire spread is UNRESTRICTED.
[02:28:34] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpg/DIM1'
[02:28:34] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:28:34] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3260)
[02:28:34] [Server thread/INFO]: [Citizens] Loading external libraries
[02:28:37] [Server thread/INFO]: Creating file: config.yml
[02:28:38] [Server thread/INFO]: Creating file: saves.yml
[02:28:38] [Server thread/INFO]: Creating file: shops.yml
[02:28:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[02:28:38] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[02:28:38] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[02:28:38] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.18.2)...
[02:28:38] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[02:28:38] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from DiscordSRV v1.26.2 which is not a depend or softdepend of this plugin.
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 69 ms to scan 1 urls, producing 3 keys and 21 values 
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 18 ms to scan 1 urls, producing 6 keys and 101 values 
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 48 ms to scan 78 urls, producing 0 keys and 0 values 
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 3 keys and 36 values 
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 4 keys and 14 values 
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 4 keys and 14 values 
[02:28:38] [Server thread/WARN]: [MythicMobs] Loaded class me.ryanhamshire.GriefPrevention.GriefPrevention from GriefPrevention v16.12.0-d4d7ac4 which is not a depend or softdepend of this plugin.
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[02:28:38] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\SavedData
[02:28:38] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\SavedData\worlds
[02:28:38] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 20 ms to scan 1 urls, producing 11 keys and 445 values 
[02:28:39] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 36 ms to scan 1 urls, producing 29 keys and 885 values 
[02:28:39] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 11 ms to scan 1 urls, producing 9 keys and 152 values 
[02:28:39] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 2 keys and 11 values 
[02:28:39] [Server thread/INFO]: [MythicMobs] LOADED
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Packs...
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Items...
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Skills...
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[02:28:39] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[02:28:39] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[02:28:39] [Server thread/WARN]: [MythicMobs] --| Mob: SkeletonKing | File: Unknown
[02:28:39] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SummonSkeletons
[02:28:39] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SummonSkeletons}
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 48 mobs.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 34 vanilla mob overrides.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 13 skills.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 drop tables.
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[02:28:39] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[02:28:39] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[02:28:39] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[02:28:39] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[02:28:39] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the config.yml
[02:28:39] [Server thread/WARN]: Nag author(s): '[BadBones69, Felux]' of 'BlockParticles' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:28:39] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded config.yml
[02:28:39] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Loading the data.yml
[02:28:39] [Server thread/INFO]: [BlockParticles] [STDOUT] [BlockParticles] Successfully loaded data.yml
[02:28:39] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.9-SNAPSHOT (build 1798-REL)
[02:28:39] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1357), impl for Spigot v1.2.9-SNAPSHOT (build 1798-REL) 
[02:28:40] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.8 
[02:28:40] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[02:28:40] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[02:28:40] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[02:28:40] [Server thread/INFO]: +> [Denizen]  
[02:28:40] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[02:28:40] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[02:28:40] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[02:28:40] [Server thread/INFO]: +> [Denizen] version: 1.2.9-SNAPSHOT (build 1798-REL) 
[02:28:40] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[02:28:40] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[02:28:40] [Server thread/ERROR]: Error occurred while enabling Denizen v1.2.9-SNAPSHOT (build 1798-REL) (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/trait/HologramTrait$HologramDirection
    at com.denizenscript.denizen.utilities.CommonRegistries.registerObjectTypes(CommonRegistries.java:268) ~[?:?]
    at com.denizenscript.denizen.utilities.CommonRegistries.registerMainObjects(CommonRegistries.java:88) ~[?:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:325) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:541) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.18.2.jar:git-Paper-388]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugins(CraftServer.java:474) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:665) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:432) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:316) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1164) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.18.2.jar:git-Paper-388]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.trait.HologramTrait$HologramDirection
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:151) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:103) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 14 more
[02:28:40] [Server thread/INFO]: [Denizen] Disabling Denizen v1.2.9-SNAPSHOT (build 1798-REL)
[02:28:40] [Server thread/ERROR]: Error occurred while disabling Denizen v1.2.9-SNAPSHOT (build 1798-REL) (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "com.denizenscript.denizencore.flags.SavableMapFlagTracker.saveToFile(String)" because "com.denizenscript.denizencore.DenizenCore.serverFlagMap" is null
    at com.denizenscript.denizencore.DenizenCore.saveAll(DenizenCore.java:161) ~[?:?]
    at com.denizenscript.denizencore.DenizenCore.shutdown(DenizenCore.java:169) ~[?:?]
    at com.denizenscript.denizen.Denizen.onDisable(Denizen.java:477) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:399) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:578) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:374) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:541) ~[paper-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.18.2.jar:git-Paper-388]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugins(CraftServer.java:474) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:665) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:432) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:316) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1164) ~[paper-1.18.2.jar:git-Paper-388]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.18.2.jar:git-Paper-388]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:28:40] [Server thread/INFO]: [WorldChangeScreenRemover] Enabling WorldChangeScreenRemover v1.0.17
[02:28:41] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-SNAPSHOT-bCUSTOM
[02:28:41] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[02:28:41] [Server thread/INFO]: [AuthMe] Hooked into Vault!
[02:28:41] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[02:28:41] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[02:28:41] [Server thread/INFO]: [AuthMe] Essentials spawn file not found: 'C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\Essentials\spawn.yml'
[02:28:41] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-SNAPSHOT build n.CUSTOM successfully enabled!
[02:28:41] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.4
[02:28:41] [Server thread/INFO]: [eGlow]: Loading main config.
[02:28:41] [Server thread/INFO]: [eGlow]: Loading messages config.
[02:28:41] [Server thread/INFO]: [eGlow]: Loading CustomEffects config.
[02:28:41] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[02:28:42] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.12.0-d4d7ac4
[02:28:42] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[02:28:42] [Server thread/INFO]: [GriefPrevention] 2 total claims loaded.
[02:28:42] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[02:28:42] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[02:28:42] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[02:28:42] [Server thread/INFO]: [GriefPrevention] Boot finished.
[02:28:42] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[02:28:42] [Server thread/INFO]: [Skript] The updater is disabled, so a check for the latest version of Skript was not performed.
[02:28:46] [Server thread/INFO]: [Skript] Loaded 143215 aliases in 4369ms
[02:28:47] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[02:28:47] [Server thread/INFO]: [SharpSK] Enabling SharpSK v1.6.13
[02:28:47] [Server thread/INFO]: [SharpSK] Attempting to register Addon...
[02:28:47] [Server thread/INFO]: [SharpSK] Attempting to register stuff...
[02:28:47] [Server thread/INFO]: [SharpSK] MC 1.9+ (MC 1.18) Server detected! Registering some MC 1.9 related stuff..
[02:28:47] [Server thread/INFO]: [SharpSK] Registering available hooks...
[02:28:47] [Server thread/INFO]: [SharpSK] Hooked into AuthmeReloaded v5.6.0-SNAPSHOT-bCUSTOM
[02:28:47] [Server thread/WARN]: [SharpSK] Could not hook into MythicMobs. Version not supported
[02:28:47] [Server thread/INFO]: [SharpSK] Hooked into Multiverse v4.3.1-b861
[02:28:47] [Server thread/WARN]: [SharpSK] Could not hook into WorldEdit. Version not supported
[02:28:47] [Server thread/WARN]: [SharpSK] Could not hook into WorldGuard. Version not supported
[02:28:47] [Server thread/INFO]: [SharpSK] Loading Complete!
[02:28:47] [Server thread/INFO]: [skDragon] Enabling skDragon v0.17-alex-MC1.18-hack-4
[02:28:47] [Server thread/INFO]: [skDragon] Plugin has been Enabled
[02:28:47] [Server thread/INFO]: [skDragon] Alex811's hacky version loaded, enjoy! (but update to the official version when it releases)
[02:28:47] [Server thread/INFO]: [skDragon] This hacky version of skDragon does not check for updates!
[02:28:47] [Server thread/INFO]: [Skellett] Enabling Skellett v2.0.8
[02:28:47] [Server thread/INFO]: [Skellett] Registered 31 Effects, 11 Conditions, 72 Expressions and 16 Events
[02:28:47] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3
[02:28:47] [Server thread/INFO]: [Skript] Missing version in default.lang
[02:28:47] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[02:28:47] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[02:28:47] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[02:28:47] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[02:28:47] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[02:28:47] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[02:28:48] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[02:28:48] [Server thread/INFO]: [skRayFall] Bacon holograms found
[02:28:48] [Server thread/INFO]: [skRayFall] Client Side bacon holograms enabled
[02:28:48] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[02:28:48] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[02:28:48] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[02:28:48] [Server thread/INFO]: [skRayFall] Bacon is ready!
[02:28:48] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[02:28:48] [Server thread/INFO]: [SkBee] Enabling SkBee v2.18.4
[02:28:48] [Server thread/INFO]: [SkBee] Loading NBTApi...
[02:28:48] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[02:28:48] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[02:28:48] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[02:28:48] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Text Component Elements disabled
[02:28:48] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered Text Component syntax.
[02:28:48] [Server thread/INFO]: [SkBee] To use SkBee Text Components, please remove the addon which has registered Text Components already.
[02:28:48] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] BossBar Elements disabled
[02:28:48] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered BossBar syntax.
[02:28:48] [Server thread/INFO]: [SkBee] To use SkBee BossBars, please remove the addon which has registered BossBars already.
[02:28:48] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Display Entity elements disabled (Requires Minecraft 1.19.4+)
[02:28:48] [Server thread/INFO]: [SkBee] It looks like another addon registered 'fishingstate' already.
[02:28:48] [Server thread/INFO]: [SkBee] You may have to use their fishing states in SkBee's 'Fish Event State' expression.
[02:28:48] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements disabled
[02:28:48] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered Scoreboard Objective syntax.
[02:28:48] [Server thread/INFO]: [SkBee] To use SkBee Scoreboard Objectives, please remove the addon which has registered Scoreboard Objective already.
[02:28:48] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Team Elements disabled
[02:28:48] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered Team syntax.
[02:28:48] [Server thread/INFO]: [SkBee] To use SkBee Teams, please remove the addon which has registered Teams already.
[02:28:48] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[02:28:48] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[02:28:48] [Server thread/INFO]: [SkBee] Loaded (267) elements:
[02:28:48] [Server thread/INFO]: [SkBee]  - 48 events
[02:28:48] [Server thread/INFO]: [SkBee]  - 44 effects
[02:28:48] [Server thread/INFO]: [SkBee]  - 153 expressions
[02:28:48] [Server thread/INFO]: [SkBee]  - 20 conditions
[02:28:48] [Server thread/INFO]: [SkBee]  - 2 sections
[02:28:48] [Server thread/INFO]: [SkBee] Checking for update...
[02:28:48] [Server thread/INFO]: [SkBee] Plugin is up to date!
[02:28:48] [Server thread/INFO]: [SkBee] Successfully enabled v2.18.4 in 0,71 seconds
[02:28:48] [Server thread/INFO]: [skript-reflect] Enabling skript-reflect v2.3
[02:28:48] [pool-61-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[02:28:49] [Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[02:28:49] [Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 99ms
[02:28:49] [Server thread/INFO]: [Skungee] Enabling Skungee v2.0.0-BETA-5
[02:28:49] [Server thread/INFO]: [com.skungee.japson.shared.Japson] Started Japson client bound to 127.0.0.1:8000.
[02:28:49] [Server thread/INFO]: [Skungee] Started on 127.0.0.1/127.0.0.1:8000
[02:28:49] [Server thread/INFO]: [com.skungee.japson.shared.Japson] Started Japson server bound to 127.0.0.1:1000.
[02:28:49] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[02:28:49] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 78 ms to scan 1 urls, producing 2 keys and 5 values
[02:28:49] [Server thread/INFO]: [Skungee] has been enabled!
[02:28:49] [Server thread/INFO]: [GriefPreventionFlags] Enabling GriefPreventionFlags v5.9.0
[02:28:49] [Server thread/INFO]: [GPFlags] 1.13+ Version Loaded
[02:28:49] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[02:28:49] [Server thread/INFO]: [GPFlags] Finished loading data.
[02:28:49] [Server thread/INFO]: [GPFlags] Boot finished.
[02:28:49] [Server thread/INFO]: [SkJade] Enabling SkJade v1.4.3
[02:28:49] [Server thread/INFO]: [GuardianBeam] [GuardianBeam] Found server version 1.18.2
[02:28:49] [Server thread/INFO]: [GuardianBeam] [GuardianBeam] Loaded mappings V1_18
[02:28:49] [Server thread/INFO]: [SkJade] SkJade | ProtocolLib was found! Enabling support
[02:28:49] [Server thread/INFO]: [SkJade] SkJade | HolographicDisplays was found! Enabling support
[02:28:49] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[02:28:49] [Server thread/INFO]: [SkJade] SkJade | SkJade v1.4.3 has been successfully enabled in 0,17 seconds (169ms)
[02:28:49] [Server thread/INFO]: [SkGlow] Enabling SkGlow v2.0.1
[02:28:49] [Server thread/INFO]: [SkGlow] Registered addon! Loading elements...
[02:28:49] [Server thread/INFO]: [SkGlow] -> Loaded conditions
[02:28:49] [Server thread/INFO]: [SkGlow] -> Loaded effects
[02:28:49] [Server thread/INFO]: [SkGlow] -> Loaded expressions
[02:28:49] [Server thread/INFO]: [SkGlow] -> Loaded types
[02:28:49] [Server thread/INFO]: [SkGlow] skGlow has been enabled!
[02:28:49] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.7
[02:28:49] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[02:28:49] [Server thread/INFO]: [skQuery] Beginning to process a total of 120 from SkQuery
[02:28:49] [Server thread/INFO]: [skQuery] Out of 120 classes, 120 classes were loaded from SkQuery
[02:28:50] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[02:28:50] [Server thread/INFO]: Running delayed init tasks
[02:28:50] [Craft Scheduler Thread - 4 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[02:28:50] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] Checking for Updates ... 
[02:28:50] [Craft Scheduler Thread - 4 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[02:28:50] [Craft Scheduler Thread - 4 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[02:28:50] [Craft Scheduler Thread - 4 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins\AuthMe\GeoLite2-Country.mmdb (Sistem belirtilen dosyayı bulamıyor)
[02:28:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eglow [3.2.4]
[02:28:50] [Craft Scheduler Thread - 15 - Vault/INFO]: [Vault] No new version available
[02:28:50] [Server thread/INFO]: [Skript] Loading variables...
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 15.0.3
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     Commit: aa377c1
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[02:28:50] [Craft Scheduler Thread - 5 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[02:28:50] [Server thread/INFO]: [Skript] Loaded 2875 variables in 0.0 seconds
[02:28:50] [Server thread/INFO]: [Skript] Line 1385: (PVPSON.sk)
[02:28:50] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[02:28:50] [Server thread/INFO]:     Line: if {debugmode.%player%} is true:
[02:28:50] [Server thread/INFO]:  
[02:28:50] [Server thread/INFO]: [Skript] Line 258: (starsabove.sk)
[02:28:50] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[02:28:50] [Server thread/INFO]:     Line: if loop-value-2 isn't set:
[02:28:50] [Server thread/INFO]:  
[02:28:50] [Server thread/INFO]: [Skript] Line 740: (starsabove.sk)
[02:28:50] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[02:28:50] [Server thread/INFO]:     Line: if arg-2 is "2":
[02:28:50] [Server thread/INFO]:  
[02:28:50] [Server thread/INFO]: [Skript] Line 742: (starsabove.sk)
[02:28:50] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[02:28:50] [Server thread/INFO]:     Line: if arg-2 is "3":
[02:28:50] [Server thread/INFO]:  
[02:28:50] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:AERİA NETWORK(643751732341374976)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:kurallar-rules(1148265211485233223)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator-only(1148265211485233224)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬ingame-oyuniçi(716649762643902505)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬tr-sohbet(718229121712390184)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬eng-chat(1145076664141873213)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📜bot-command(718046166675357707)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨(1172476413476093953)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🪓server(1146422235154878575)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔔updates-duyurular(644584454999900160)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧭roadmap-yolharitası(747894346220568666)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨pvp(971156719403163678)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨survival(1172858404008632340)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📋links(1062038575769722981)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📋threads(1013775136664604692)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💣bugs(876484868823998544)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎵musics(979076668360642640)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌌gm-progress(1014846171677741057)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌌gm-story(970720945524318338)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌄skin-ideas(970713529751588934)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎵müzik-öneri(707356565044199506)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sistem(647092276710866954)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mmo(876537097501171713)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:link(711118640031989810)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:needed-resources(978369531783290891)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:isim-öneri(715315107516776531)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:takas-düzenlemesi̇(714042918452723782)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:yapılacaklar(714933566756094042)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:link2(707262070088925244)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sistem2(741948145910415381)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:japonyılıskinkoleksiyonu(874405321563594782)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:goldenskin(874406292956016701)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:medievalskin(874407553407287317)
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[02:28:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[02:28:52] [Server thread/WARN]: [skript-reflect] Loaded class io.lumine.mythic.bukkit.MythicBukkit from MythicMobs v5.2.1-fd1d0777 which is not a depend or softdepend of this plugin.
[02:28:54] [Server thread/INFO]: [Skript] Line 720: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {camera.%{_p}%.costume.warrior}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.warrior} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 727: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {camera.%{_p}%.costume.warrior}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.warrior} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 736: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {camera.%{_p}%.costume.archer}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.archer} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 743: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {camera.%{_p}%.costume.archer}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.archer} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 752: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {camera.%{_p}%.costume.mage}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.mage} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 759: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {camera.%{_p}%.costume.mage}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.mage} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 768: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {camera.%{_p}%.costume.assasin}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 775: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {camera.%{_p}%.costume.assasin}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 784: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {camera.%{_p}%.costume.guardian}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.guardian} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 791: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {camera.%{_p}%.costume.guardian}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.guardian} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 800: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {camera.%{_p}%.costume.knight}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.knight} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 807: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {camera.%{_p}%.costume.knight}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.knight} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 816: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {camera.%{_p}%.costume.hunter}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.hunter} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 823: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {camera.%{_p}%.costume.hunter}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.hunter} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 832: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {camera.%{_p}%.costume.necro}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.necro} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 839: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {camera.%{_p}%.costume.necro}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.necro} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 848: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 855: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 862: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 2:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 869: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 3:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 876: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 4:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 885: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {camera.%{_p}%.costume.priest}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 892: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {camera.%{_p}%.costume.priest}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 899: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {camera.%{_p}%.costume.priest}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} is 2:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 921: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {camera.%{_p}%.costume.warrior}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.warrior} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 926: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {camera.%{_p}%.costume.warrior}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.warrior} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 932: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {camera.%{_p}%.costume.archer}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.archer} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 937: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {camera.%{_p}%.costume.archer}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.archer} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 943: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {camera.%{_p}%.costume.mage}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.mage} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 948: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {camera.%{_p}%.costume.mage}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.mage} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 954: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {camera.%{_p}%.costume.assasin}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 959: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {camera.%{_p}%.costume.assasin}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 965: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {camera.%{_p}%.costume.guardian}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.guardian} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 970: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {camera.%{_p}%.costume.guardian}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.guardian} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 976: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {camera.%{_p}%.costume.knight}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.knight} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 981: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {camera.%{_p}%.costume.knight}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.knight} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 987: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {camera.%{_p}%.costume.hunter}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.hunter} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 992: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {camera.%{_p}%.costume.hunter}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.hunter} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 998: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {camera.%{_p}%.costume.necro}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.necro} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1003: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {camera.%{_p}%.costume.necro}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.necro} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1009: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1014: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1019: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 2:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1024: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 3:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1029: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {camera.%{_p}%.costume.agent}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} is 4:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1035: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {camera.%{_p}%.costume.priest}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} isn't set:#Seçili Kostüm Yoksa
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1040: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {camera.%{_p}%.costume.priest}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} is 1:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1045: (camera.sk)
[02:28:54] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {camera.%{_p}%.costume.priest}
[02:28:54] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} is 2:
[02:28:54] [Server thread/INFO]:  
[02:28:54] [Server thread/INFO]: [Skript] Line 1153: (camera.sk)
[02:28:54] [Server thread/INFO]:     the 2nd argument is already a text, so you should not put it in one (e.g. the 2nd argument instead of "%the 2nd argument%")
[02:28:54] [Server thread/INFO]:     Line: elo(player,"reset","%arg-2%")
[02:28:54] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 513: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {menu.%{_p}%.costume.warrior}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.warrior}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 518: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {menu.%{_p}%.costume.warrior}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.warrior} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 531: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {menu.%{_p}%.costume.archer}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.archer}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 536: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {menu.%{_p}%.costume.archer}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.archer} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 549: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {menu.%{_p}%.costume.mage}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.mage}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 554: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {menu.%{_p}%.costume.mage}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.mage} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 567: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {menu.%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 572: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {menu.%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.assasin} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 585: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {menu.%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.assasin} to 2
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 598: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {menu.%{_p}%.costume.guardian}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.guardian}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 603: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {menu.%{_p}%.costume.guardian}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.guardian} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 616: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {menu.%{_p}%.costume.knight}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.knight}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 621: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {menu.%{_p}%.costume.knight}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.knight} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 634: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {menu.%{_p}%.costume.hunter}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.hunter}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 639: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {menu.%{_p}%.costume.hunter}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.hunter} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 652: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {menu.%{_p}%.costume.necro}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.necro}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 657: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {menu.%{_p}%.costume.necro}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.necro} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 670: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 675: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.agent} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 688: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.agent} to 2
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 701: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.agent} to 3
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 714: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.agent} to 4
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 727: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {menu.%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:     Line: delete {%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 732: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {menu.%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.priest} to 1
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 745: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {menu.%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:     Line: set {%{_p}%.costume.priest} to 2
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 815: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {menu.%{_p}%.costume.warrior}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.warrior} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 817: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {menu.%{_p}%.costume.warrior}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.warrior} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 818: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.warrior}). You could prefix it with the script's name: {menu.%{_p}%.costume.warrior}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin warrior%{%{_p}%.costume.warrior}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 820: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {menu.%{_p}%.costume.archer}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.archer} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 822: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {menu.%{_p}%.costume.archer}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.archer} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 823: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.archer}). You could prefix it with the script's name: {menu.%{_p}%.costume.archer}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin archer%{%{_p}%.costume.archer}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 825: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {menu.%{_p}%.costume.mage}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.mage} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 827: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {menu.%{_p}%.costume.mage}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.mage} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 828: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.mage}). You could prefix it with the script's name: {menu.%{_p}%.costume.mage}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin mage%{%{_p}%.costume.mage}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 830: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {menu.%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 832: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {menu.%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 833: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {menu.%{_p}%.costume.assasin}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin assasin%{%{_p}%.costume.assasin}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 835: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {menu.%{_p}%.costume.guardian}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.guardian} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 837: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {menu.%{_p}%.costume.guardian}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.guardian} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 838: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.guardian}). You could prefix it with the script's name: {menu.%{_p}%.costume.guardian}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin guardian%{%{_p}%.costume.guardian}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 840: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {menu.%{_p}%.costume.knight}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.knight} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 842: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {menu.%{_p}%.costume.knight}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.knight} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 843: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.knight}). You could prefix it with the script's name: {menu.%{_p}%.costume.knight}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin knight%{%{_p}%.costume.knight}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 845: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {menu.%{_p}%.costume.hunter}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.hunter} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 847: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {menu.%{_p}%.costume.hunter}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.hunter} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 848: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.hunter}). You could prefix it with the script's name: {menu.%{_p}%.costume.hunter}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin hunter%{%{_p}%.costume.hunter}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 850: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {menu.%{_p}%.costume.necro}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.necro} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 852: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {menu.%{_p}%.costume.necro}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.necro} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 853: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.necro}). You could prefix it with the script's name: {menu.%{_p}%.costume.necro}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin necro%{%{_p}%.costume.necro}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 855: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.agent} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 857: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.agent} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 858: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.agent}). You could prefix it with the script's name: {menu.%{_p}%.costume.agent}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin agent%{%{_p}%.costume.agent}%" as op
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 860: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {menu.%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:     Line: if {%{_p}%.costume.priest} isn't set:#Seçili Kostüm Yoksa
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 862: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {menu.%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:     Line: else if {%{_p}%.costume.priest} is set:
[02:28:59] [Server thread/INFO]:  
[02:28:59] [Server thread/INFO]: [Skript] Line 863: (menu.sk)
[02:28:59] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.priest}). You could prefix it with the script's name: {menu.%{_p}%.costume.priest}
[02:28:59] [Server thread/INFO]:     Line: make {_p} run command "skin priest%{%{_p}%.costume.priest}%" as op
[02:28:59] [Server thread/INFO]:  
[02:29:00] [Server thread/INFO]: [Skript] Line 178: (PVPSON.sk)
[02:29:00] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {PVPSON.%{_p}%.costume.assasin}
[02:29:00] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} is 2 or "2":
[02:29:00] [Server thread/INFO]:  
[02:29:00] [Server thread/INFO]: [Skript] Line 567: (PVPSON.sk)
[02:29:00] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%{_p}%.costume.assasin}). You could prefix it with the script's name: {PVPSON.%{_p}%.costume.assasin}
[02:29:00] [Server thread/INFO]:     Line: if {%{_p}%.costume.assasin} is 2 or "2":
[02:29:00] [Server thread/INFO]:  
[02:29:01] [Server thread/INFO]: [Skript] Line 1367: (PVPSON.sk)
[02:29:01] [Server thread/INFO]:     randomnumber("abcsd") is already a text, so you should not put it in one (e.g. randomnumber("abcsd") instead of "%randomnumber(""abcsd"")%")
[02:29:01] [Server thread/INFO]:     Line: set {_number} to "%randomnumber("abcsd")%"
[02:29:01] [Server thread/INFO]:  
[02:29:02] [Server thread/INFO]: [Skript] Line 390: (starsabove.sk)
[02:29:02] [Server thread/INFO]:     Can't compare a projectile with a types.particlename
[02:29:02] [Server thread/INFO]:     Line: if projectile is snowball:
[02:29:02] [Server thread/INFO]:  
[02:29:02] [Server thread/INFO]: [Skript] Line 396: (starsabove.sk)
[02:29:02] [Server thread/INFO]:     Can't compare a projectile with a types.particlename
[02:29:02] [Server thread/INFO]:     Line: if projectile is snowball:
[02:29:02] [Server thread/INFO]:  
[02:29:03] [Server thread/INFO]: [Skript] Line 802: (starsabove.sk)
[02:29:03] [Server thread/INFO]:     the 2nd argument is already a text, so you should not put it in one (e.g. the 2nd argument instead of "%the 2nd argument%")
[02:29:03] [Server thread/INFO]:     Line: showframe({_p},"%arg-2%","%arg-3%","%arg-4%")
[02:29:03] [Server thread/INFO]:  
[02:29:03] [Server thread/INFO]: [Skript] Line 802: (starsabove.sk)
[02:29:03] [Server thread/INFO]:     the 3rd argument is already a text, so you should not put it in one (e.g. the 3rd argument instead of "%the 3rd argument%")
[02:29:03] [Server thread/INFO]:     Line: showframe({_p},"%arg-2%","%arg-3%","%arg-4%")
[02:29:03] [Server thread/INFO]:  
[02:29:03] [Server thread/INFO]: [Skript] Line 802: (starsabove.sk)
[02:29:03] [Server thread/INFO]:     the 4th argument is already a text, so you should not put it in one (e.g. the 4th argument instead of "%the 4th argument%")
[02:29:03] [Server thread/INFO]:     Line: showframe({_p},"%arg-2%","%arg-3%","%arg-4%")
[02:29:03] [Server thread/INFO]:  
[02:29:03] [Server thread/INFO]: [Skript] Line 67: (tabcompleter.sk)
[02:29:03] [Server thread/INFO]:     tab complete arg-2 is already a text, so you should not put it in one (e.g. tab complete arg-2 instead of "%tab complete arg-2%")
[02:29:03] [Server thread/INFO]:     Line: if {_dungeons::*} contains "%tab arg-2%":
[02:29:03] [Server thread/INFO]:  
[02:29:03] [Server thread/INFO]: [Skript] Line 72: (tabcompleter.sk)
[02:29:03] [Server thread/INFO]:     tab complete arg-3 is already a text, so you should not put it in one (e.g. tab complete arg-3 instead of "%tab complete arg-3%")
[02:29:03] [Server thread/INFO]:     Line: if {story::dungeons::quest::%tab arg-2%::*} contains "%tab arg-3%":
[02:29:03] [Server thread/INFO]:  
[02:29:04] [Server thread/INFO]: [Skript] Line 1394: (tdmlowtestnew.sk)
[02:29:04] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%arg-1%}). You could prefix it with the script's name: {tdmlowtestnew.%arg-1%}
[02:29:04] [Server thread/INFO]:     Line: set {%arg-1%} to location of player
[02:29:04] [Server thread/INFO]:  
[02:29:04] [Server thread/INFO]: [Skript] Line 1400: (tdmlowtestnew.sk)
[02:29:04] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%arg-1%}). You could prefix it with the script's name: {tdmlowtestnew.%arg-1%}
[02:29:04] [Server thread/INFO]:     Line: delete {%arg-1%}
[02:29:04] [Server thread/INFO]:  
[02:29:05] [Server thread/INFO]: [Skript] Loaded 17 scripts with a total of 204 structures in 111
[02:29:05] [Server thread/INFO]: [Skript] Finished loading.
[02:29:05] [Server thread/INFO]: 0 placeholder hook(s) registered!
[02:29:05] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[02:29:05] [Server thread/INFO]: [MythicMobs] ✓Using HolographicDisplays plugin for holograms
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Skill: kindletronSRMelee | File: C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic STATE
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: state{s=attack;li=3;lo=2}
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Skill: die_kindletronSR | File: C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SUBMODEL
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: submodel{modelid=kindletronsr;pid=h_head;remove=true}
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Skill: die_kindletronSR | File: C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic STATE
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: state{s=death;li=3;lo=2}
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=rightarm;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=righthand;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=leftarm;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=lefthand;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=leftleg;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=leftfoot;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=rightleg;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=rightfoot;offset=GLOBAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Skill: die_kindletronSR | File: C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\Skills\ExampleSkills.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODEL
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: model{mid=kindletronsr;remove=true}
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=rightarm;offset=LOCAL;y=<&da>1.0}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=kindletronsr;p=rightarm;offset=LOCAL;y=<&da>1.0;x=<&da>0.25}': Failed to load custom targeter MODELPART
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Mob: kindletronsr | File: Unknown
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODEL
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: model{mid=kindletronsr;n=false}
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop KingsCrown HEAD
[02:29:05] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\Mobs\ExampleMobs.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop mbk:0
[02:29:05] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\aeria\Desktop\desktop mc progress\1.18.2\plugins\MythicMobs\Mobs\ExampleMobs.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop experience 100
[02:29:05] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[02:29:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop KingsCrown 1 0.01
[02:29:05] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[02:29:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[02:29:05] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.5) is available at:
[02:29:05] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[02:29:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[02:29:05] [Server thread/INFO]: Done (53.003s)! For help, type "help"
[02:29:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 15726ms or 314 ticks behind
[02:29:05] [Server thread/INFO]: Timings Reset
[02:29:06] [Server thread/INFO]: Unknown command. Type "/help" for help.
[02:29:06] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[02:29:09] [Server thread/INFO]: Unknown command. Type "/help" for help.
[02:29:10] [Server thread/INFO]: Unknown command. Type "/help" for help.