Paste #105910: Unnamed Server Log Paste

Date: 2023/02/02 02:55:48 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332


[19:46:28] [ServerMain/INFO]: Building unoptimized datafixer
[19:46:31] [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'
[19:46:35] [ServerMain/INFO]: Loaded 7 recipes
[19:46:39] [Server thread/INFO]: Starting minecraft server version 1.19.2
[19:46:39] [Server thread/INFO]: Loading properties
[19:46:39] [Server thread/INFO]: This server is running Paper version git-Paper-307 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 476ef25)
[19:46:40] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:46:40] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:46:40] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[19:46:40] [Server thread/INFO]: Default game type: SURVIVAL
[19:46:40] [Server thread/INFO]: Generating keypair
[19:46:40] [Server thread/INFO]: Starting Minecraft server on *:25565
[19:46:40] [Server thread/INFO]: Using default channel type
[19:46:40] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[19:46:40] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[19:46:42] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[19:46:49] [Server thread/WARN]: Legacy plugin PacketListenerApi v3.7.1-SNAPSHOT does not specify an api-version.
[19:46:49] [Server thread/WARN]: Legacy plugin MapManager v1.7.2-SNAPSHOT does not specify an api-version.
[19:46:49] [Server thread/WARN]: Legacy plugin VTV1 v1.4.1 does not specify an api-version.
[19:46:49] [Server thread/INFO]: [ProMCCore] Loading 2 libraries... please wait
[19:46:49] [Server thread/INFO]: [ProMCCore] Loaded library C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\libraries\com\mysql\mysql-connector-j\8.0.31\mysql-connector-j-8.0.31.jar
[19:46:49] [Server thread/INFO]: [ProMCCore] Loaded library C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\libraries\com\google\protobuf\protobuf-java\3.19.4\protobuf-java-3.19.4.jar
[19:46:49] [Server thread/INFO]: [ProMCCore] Loaded library C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[19:46:49] [Server thread/WARN]: Legacy plugin AnimatedFrames v4.11.2-SNAPSHOT does not specify an api-version.
[19:46:49] [Server thread/WARN]: Legacy plugin SkStuff v1.6.4.1 does not specify an api-version.
[19:46:49] [Server thread/INFO]: [SkBee] Loading 2 libraries... please wait
[19:46:50] [Server thread/INFO]: [SkBee] Loaded library C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar
[19:46:50] [Server thread/INFO]: [SkBee] Loaded library C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\libraries\org\apache\commons\commons-text\1.10.0\commons-text-1.10.0.jar
[19:46:50] [Server thread/INFO]: [SkBee] Loaded library C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[19:46:50] [Server thread/WARN]: Legacy plugin SkChoke v1.1 does not specify an api-version.
[19:46:50] [Server thread/WARN]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
[19:46:50] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[19:46:51] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@324f1204]
[19:46:51] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+40-996285c
[19:46:51] [Server thread/INFO]: [PacketListenerApi] Loading PacketListenerApi v3.7.1-SNAPSHOT
[19:46:51] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper] Failed to find version enum for 'org.bukkit.craftbukkit.v1_19_R1'/'v1_19_R1.'
[19:46:51] [Server thread/WARN]: Nag author(s): '[inventivetalent]' of 'PacketListenerApi' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[19:46:51] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper] Generating dynamic constant...
[19:46:51] [Server thread/WARN]: java.lang.NoSuchFieldException: Could not resolve field for [ResolverQuery{name='$VALUES', types=[]}] in class class org.inventivetalent.packetlistener.reflection.minecraft.Minecraft$Version
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.FieldResolver.notFoundException(FieldResolver.java:158)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.FieldResolver.notFoundException(FieldResolver.java:11)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:60)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.FieldResolver.resolve(FieldResolver.java:57)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.minecraft.Minecraft$Version.getVersion(Minecraft.java:177)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.<clinit>(Minecraft.java:33)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.minecraft.NMSClassResolver.resolve(NMSClassResolver.java:15)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveSilent(ClassResolver.java:16)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.channel.ChannelAbstract.<clinit>(ChannelAbstract.java:23)
[19:46:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[19:46:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:35)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:8)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:50)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolve(ClassResolver.java:27)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.ChannelInjector.newChannelInstance(ChannelInjector.java:43)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.ChannelInjector.inject(ChannelInjector.java:30)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.PacketListenerAPI.load(PacketListenerAPI.java:31)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.apihelper.APIManager.registerAPI(APIManager.java:46)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.apihelper.APIManager.registerAPI(APIManager.java:65)
[19:46:51] [Server thread/WARN]:     at PacketListenerAPI_v3.7.1-SNAPSHOT.jar//org.inventivetalent.packetlistener.PacketListenerPlugin.onLoad(PacketListenerPlugin.java:17)
[19:46:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:429)
[19:46:51] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:278)
[19:46:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[19:46:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:46:51] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[19:46:51] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper] Version is UNKNOWN (-1)
[19:46:51] [Server thread/ERROR]: [org.bukkit.craftbukkit.v1_19_R1.CraftServer] null initializing PacketListenerApi v3.7.1-SNAPSHOT (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at org.inventivetalent.packetlistener.reflection.resolver.minecraft.NMSClassResolver.resolve(NMSClassResolver.java:15) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveSilent(ClassResolver.java:16) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.channel.ChannelAbstract.<clinit>(ChannelAbstract.java:23) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:375) ~[?:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:35) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:8) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:50) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolve(ClassResolver.java:27) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.ChannelInjector.newChannelInstance(ChannelInjector.java:43) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.ChannelInjector.inject(ChannelInjector.java:30) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.PacketListenerAPI.load(PacketListenerAPI.java:31) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.apihelper.APIManager.registerAPI(APIManager.java:46) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.apihelper.APIManager.registerAPI(APIManager.java:65) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.PacketListenerPlugin.onLoad(PacketListenerPlugin.java:17) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:429) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.RuntimeException: java.lang.ClassNotFoundException: Could not resolve class for [ResolverQuery{name='net.minecraft.server.UNKNOWN.Entity', types=[]}]
    at org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.<clinit>(Minecraft.java:40) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    ... 20 more
Caused by: java.lang.ClassNotFoundException: Could not resolve class for [ResolverQuery{name='net.minecraft.server.UNKNOWN.Entity', types=[]}]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.notFoundException(ClassResolver.java:40) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.notFoundException(ClassResolver.java:8) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:60) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolve(ClassResolver.java:27) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.resolver.minecraft.NMSClassResolver.resolve(NMSClassResolver.java:18) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    at org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.<clinit>(Minecraft.java:37) ~[PacketListenerAPI_v3.7.1-SNAPSHOT.jar:?]
    ... 20 more
[19:46:51] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0
[19:46:51] [Server thread/INFO]: [MapManager] Loading MapManager v1.7.2-SNAPSHOT
[19:46:51] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[19:46:51] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2899)
[19:46:51] [Server thread/INFO]: [PixelPrinter] Loading PixelPrinter v1.0.46
[19:46:51] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
[19:46:51] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[19:46:51] [Server thread/INFO]: [playit-gg] Loading playit-gg v0.1.4
[19:46:51] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.0-dev+40-996285c
[19:46:51] [Server thread/INFO]: [VTV1] Loading VTV1 v1.4.1
[19:46:51] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+40-996285c
[19:46:51] [Server thread/INFO]: [Skript] Loading Skript v2.6.4
[19:46:51] [Server thread/INFO]: [ProMCCore] Loading ProMCCore v1.0.4-R0.2-SNAPSHOT
[19:46:51] [Server thread/INFO]: [ProSkillAPI] Loading ProSkillAPI v1.1.8-R0.2-SNAPSHOT
[19:46:51] [Server thread/INFO]: [AnimatedFrames] Loading AnimatedFrames v4.11.2-SNAPSHOT
[19:46:51] [Server thread/INFO]: [ItemEdit] Loading ItemEdit v3.0.7
[19:46:51] [Server thread/INFO]: [SkStuff] Loading SkStuff v1.6.4.1
[19:46:51] [Server thread/INFO]: [Skellett] Loading Skellett v2.0.9
[19:46:51] [Server thread/INFO]: [skRayFall] Loading skRayFall v1.9.28
[19:46:51] [Server thread/INFO]: [SkBee] Loading SkBee v2.7.4
[19:46:51] [Server thread/INFO]: [SkChoke] Loading SkChoke v1.1
[19:46:51] [Server thread/INFO]: [skUtilities] Loading skUtilities v0.9.2
[19:46:51] [Server thread/INFO]: [SkQuery] Loading SkQuery v4.1.8
[19:46:51] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:46:51] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[19:46:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[19:46:51] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[19:46:52] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[19:46:53] [Server thread/INFO]: [ProMCCore] Enabling ProMCCore v1.0.4-R0.2-SNAPSHOT
[19:46:53] [Server thread/INFO]: [ProMCCore] You are running MC version V1_19_R1
[19:46:53] [Server thread/INFO]: [ProMCCore] Loaded NMS version: V1_19_R1
[19:46:53] [Server thread/INFO]: [ProMCCore] Found 0 external module(s).
[19:46:53] [Server thread/INFO]: [ProMCCore] ProMCCore has been enabled!
[19:46:53] [Server thread/INFO]: [ProMCCore] Plugin loaded in 293 ms!
[19:46:53] [Server thread/INFO]: Preparing level "world"
[19:46:55] [Thread-5/INFO]: Server version: 11902
[19:46:55] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:46:55] [Server thread/INFO]: Time elapsed: 158 ms
[19:46:55] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:46:55] [Server thread/INFO]: Time elapsed: 62 ms
[19:46:55] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:46:55] [Server thread/INFO]: Time elapsed: 53 ms
[19:46:55] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+40-996285c
[19:46:55] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[19:46:56] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[19:46:56] [Server thread/INFO]: [Essentials] No kits found to migrate.
[19:46:56] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[19:46:56] [Server thread/INFO]: [Essentials] Using locale ko_KR
[19:46:56] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[19:46:56] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[19:46:56] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
[19:46:56] [Server thread/INFO]: [PacketListenerApi] Enabling PacketListenerApi v3.7.1-SNAPSHOT*
[19:46:56] [Server thread/WARN]: [PacketListenerApi] Injection failed. Disabling...
[19:46:56] [Server thread/INFO]: [PacketListenerApi] Disabling PacketListenerApi v3.7.1-SNAPSHOT
[19:46:56] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0
[19:46:57] [Server thread/INFO]: [MapManager] Enabling MapManager v1.7.2-SNAPSHOT*
[19:46:57] [Server thread/ERROR]: [MapManager] ****************************************
[19:46:57] [Server thread/ERROR]: [MapManager] This plugin depends on PacketListenerApi
[19:46:57] [Server thread/ERROR]: [MapManager] Download it here: https://r.spiget.org/2930
[19:46:57] [Server thread/ERROR]: [MapManager] ****************************************
[19:46:57] [Server thread/INFO]: [MapManager] Disabling MapManager v1.7.2-SNAPSHOT
[19:46:57] [Server thread/ERROR]: Error occurred while disabling MapManager v1.7.2-SNAPSHOT (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "org.inventivetalent.mapmanager.PacketListener.disable()" because "this.packetListener" is null
    at org.inventivetalent.mapmanager.MapManagerPlugin.onDisable(MapManagerPlugin.java:117) ~[MapManager_v1.7.2-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:399) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:579) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.inventivetalent.mapmanager.MapManagerPlugin.onEnable(MapManagerPlugin.java:63) ~[MapManager_v1.7.2-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[19:46:57] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[19:46:57] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[19:46:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[19:46:57] [Server thread/INFO]: [WorldGuard] Loading region data...
[19:46:58] [Server thread/INFO]: [ProMCCore] [Hook] WorldGuard: Success!
[19:46:58] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2899)
[19:46:58] [Server thread/INFO]: [Citizens] Loading external libraries
[19:47:06] [Server thread/INFO]: Creating file: config.yml
[19:47:07] [Server thread/INFO]: [Citizens] No translation for system language (ko_KR): defaulting to English
[19:47:07] [Server thread/ERROR]: [Citizens] v2.0.30-SNAPSHOT (build 2899) is not compatible with Minecraft v1_19_R1 - try upgrading Minecraft or Citizens. Disabling...
[19:47:07] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2899)
[19:47:07] [Server thread/ERROR]: [ProMCCore] Plugin ProMCCore v1.0.4-R0.2-SNAPSHOT has failed to register events for class mc.promcteam.engine.hooks.external.citizens.CitizensHK because net/citizensnpcs/api/trait/TraitInfo does not exist.
[19:47:07] [Server thread/INFO]: [ProMCCore] [Hook] Citizens: Success!
[19:47:07] [Server thread/INFO]: [PixelPrinter] Enabling PixelPrinter v1.0.46
[19:47:07] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[19:47:08] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.2)...
[19:47:08] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[19:47:08] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[19:47:08] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[19:47:08] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\plugins\MythicMobs\SavedData
[19:47:08] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\SW\Downloads\페이퍼-1.19.2-서버구동기 (3)\plugins\MythicMobs\SavedData\worlds
[19:47:09] [Server thread/INFO]: [MythicMobs] LOADED
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Packs...
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Items...
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Skills...
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[19:47:10] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 9 mobs.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 3 vanilla mob overrides.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 0 mob stacks.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 3 skills.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 0 random spawns.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 3 mythic items.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 2 drop tables.
[19:47:10] [Server thread/INFO]: [MythicMobs] ? Loaded 1 mob spawners.
[19:47:10] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[19:47:10] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[19:47:10] [Server thread/INFO]: [MythicMobs] ? MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[19:47:10] [Server thread/INFO]: [ProMCCore] [Hook] MythicMobs: Success!
[19:47:10] [Server thread/INFO]: [playit-gg] Enabling playit-gg v0.1.4
[19:47:11] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+40-996285c
[19:47:11] [Thread-8/INFO]: [gg.playit.minecraft.PlayitKeysSetup] secret key found, checking
[19:47:11] [Thread-8/INFO]: [gg.playit.minecraft.PlayitKeysSetup] check secret
[19:47:11] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
[19:47:11] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[19:47:11] [Server thread/INFO]: [VTV1] Enabling VTV1 v1.4.1*
[19:47:11] [Server thread/INFO]: [VTV1] objects loaded.
[19:47:11] [Server thread/INFO]: [VTV1] 5 WalkTriggers loaded.
[19:47:11] [Server thread/INFO]: [VTV1] 0 ClickTriggers loaded.
[19:47:11] [Server thread/INFO]: [VTV1] 0 EventTriggers loaded.
[19:47:11] [Server thread/INFO]: [VTV1] 0 AreaTriggers loaded.
[19:47:11] [Server thread/INFO]: [VTV1] No Triggers found.
[19:47:11] [Server thread/INFO]: [VTV1] 0 CommandTriggers loaded.
[19:47:11] [Server thread/INFO]: [VTV1] 2 Scripts from 1 files loaded.
[19:47:11] [Server thread/INFO]: [VTV1] Vault not found. You're missing out!
[19:47:11] [Server thread/INFO]: [VTV1] Running in compatability mode for 1.12
[19:47:11] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+40-996285c
[19:47:11] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[19:47:11] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[19:47:12] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[19:47:13] [Thread-8/INFO]: [gg.playit.minecraft.PlayitKeysSetup] found minecraft java tunnel: according-other.craft.ply.gg
[19:47:13] [Thread-8/INFO]: [gg.playit.minecraft.PlayitManager] keys and tunnel setup
[19:47:14] [Thread-8/INFO]: [gg.playit.minecraft.PlayitManager] setup playit.gg account: https://playit.gg/login/guest-account/000100000000000000000002292d63db94b30100000000027a3178471845b6e504b441256cc0ab3729ea5f9dbe31389767aa85cd63d88cb8
[19:47:15] [Thread-8/INFO]: [gg.playit.control.ChannelSetup] request queued, waiting 1 second before resend
[19:47:16] [Thread-8/INFO]: [gg.playit.control.ChannelSetup] request queued, waiting 1 second before resend
[19:47:19] [Server thread/INFO]: [Skript] Loaded 153521 aliases in 7062ms
[19:47:20] [Server thread/INFO]: [Skript]  ~ created by & ? Peter G?ttinger aka Njol ~
[19:47:20] [Server thread/INFO]: [ProSkillAPI] Enabling ProSkillAPI v1.1.8-R0.2-SNAPSHOT
[19:47:20] [Server thread/INFO]: [ProSkillAPI] Registration complete
[19:47:20] [Server thread/INFO]: [ProSkillAPI]  - 5 skills
[19:47:20] [Server thread/INFO]: [ProSkillAPI]  - 2 classes
[19:47:20] [Server thread/INFO]: [AnimatedFrames] Enabling AnimatedFrames v4.11.2-SNAPSHOT*
[19:47:20] [Server thread/WARN]: [AnimatedFrames] **************************************************
[19:47:20] [Server thread/WARN]: [AnimatedFrames]   
[19:47:20] [Server thread/WARN]: [AnimatedFrames]          This plugin depends on MapManager        
[19:47:20] [Server thread/WARN]: [AnimatedFrames]              https://r.spiget.org/19198            
[19:47:20] [Server thread/WARN]: [AnimatedFrames]   
[19:47:20] [Server thread/WARN]: [AnimatedFrames] **************************************************
[19:47:20] [Server thread/INFO]: [AnimatedFrames] Disabling AnimatedFrames v4.11.2-SNAPSHOT
[19:47:20] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.7
[19:47:20] [Server thread/INFO]: [ItemEdit] Unable to hook into Vault
[19:47:20] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[19:47:20] [Server thread/INFO]: [ItemEdit] # Enabled (took 127 ms)
[19:47:20] [Server thread/INFO]: [SkStuff] Enabling SkStuff v1.6.4.1*
[19:47:20] [Server thread/INFO]: [SkStuff] SkStuff 1.6.4.1 has been successfully enabled!
[19:47:20] [Server thread/INFO]: [SkStuff] Registering general non version specific stuff...
[19:47:20] [Server thread/WARN]: [SkStuff] It looks like you're running an unsupported server version, some features will not be available :(
[19:47:20] [Server thread/INFO]: [SkStuff] WorldEdit found! Registering WorldEdit stuff...
[19:47:20] [Server thread/ERROR]: Error occurred while enabling SkStuff v1.6.4.1 (Is it up to date?)
java.lang.NoClassDefFoundError: com/sk89q/worldedit/data/DataException
    at java.lang.Class.getDeclaredConstructors0(Native Method) ~[?:?]
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:3373) ~[?:?]
    at java.lang.Class.getConstructor0(Class.java:3578) ~[?:?]
    at java.lang.Class.getConstructor(Class.java:2271) ~[?:?]
    at ch.njol.skript.lang.SyntaxElementInfo.<init>(SyntaxElementInfo.java:38) ~[Skript-2.6.4 (1).jar:?]
    at ch.njol.skript.Skript.registerEffect(Skript.java:1313) ~[Skript-2.6.4 (1).jar:?]
    at me.TheBukor.SkStuff.SkStuff.onEnable(SkStuff.java:194) ~[SkStuff.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-307]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-307]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-307]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.sk89q.worldedit.data.DataException
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 18 more
[19:47:20] [Server thread/INFO]: [SkStuff] Disabling SkStuff v1.6.4.1
[19:47:20] [Server thread/INFO]: [SkStuff] SkStuff 1.6.4.1 has been successfully disabled.
[19:47:20] [Server thread/INFO]: [Skellett] Enabling Skellett v2.0.9
[19:47:21] [Server thread/INFO]: [Skellett] Registered 27 Effects, 11 Conditions, 70 Expressions and 16 Events
[19:47:21] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[19:47:21] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[19:47:21] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[19:47:21] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[19:47:21] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[19:47:21] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[19:47:21] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[19:47:21] [Server thread/INFO]: [skRayFall] Bacon holograms found
[19:47:21] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[19:47:21] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[19:47:22] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[19:47:22] [Server thread/INFO]: [skRayFall] Bacon is ready!
[19:47:22] [Server thread/INFO]: [SkBee] Enabling SkBee v2.7.4
[19:47:22] [Server thread/INFO]: [SkBee] Loading NBTApi...
[19:47:22] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[19:47:22] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[19:47:22] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[19:47:22] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements disabled
[19:47:22] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered Scoreboard Objective syntax.
[19:47:22] [Server thread/INFO]: [SkBee] To use SkBee Scoreboard Objectives, please remove the addon which has registered Scoreboard Objective already.
[19:47:22] [Server thread/INFO]: [SkBee] Team Elements disabled
[19:47:22] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered Team syntax.
[19:47:22] [Server thread/INFO]: [SkBee] To use SkBee Teams, please remove the addon which has registered Teams already.
[19:47:22] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Pathfinding Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] It looks like another addon registered 'fishingstate' already.
[19:47:22] [Server thread/INFO]: [SkBee] You may have to use their fishing states in SkBee's 'Fish Event State' expression.
[19:47:22] [Server thread/INFO]: [SkBee] Other Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[19:47:22] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] BossBar Elements disabled
[19:47:22] [Server thread/INFO]: [SkBee] It appears another Skript addon may have registered BossBar syntax.
[19:47:22] [Server thread/INFO]: [SkBee] To use SkBee BossBars, please remove the addon which has registered BossBars already.
[19:47:22] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[19:47:22] [Server thread/INFO]: [SkBee] Loaded elements:
[19:47:22] [Server thread/INFO]: [SkBee]  - 35 events
[19:47:22] [Server thread/INFO]: [SkBee]  - 37 effects
[19:47:22] [Server thread/INFO]: [SkBee]  - 122 expressions
[19:47:22] [Server thread/INFO]: [SkBee]  - 14 conditions
[19:47:22] [Server thread/INFO]: [SkBee]  - 1 section
[19:47:22] [Server thread/INFO]: [SkBee] Checking for update...
[19:47:23] [Server thread/INFO]: [SkBee] Plugin is up to date!
[19:47:23] [Server thread/INFO]: [SkBee] Successfully enabled v2.7.4 in 0.98 seconds
[19:47:23] [Server thread/INFO]: [SkChoke] Enabling SkChoke v1.1*
[19:47:23] [Server thread/INFO]: [SkChoke] [STDOUT] SKChoke-OpenInv
[19:47:23] [Server thread/WARN]: Nag author(s): '[Choke_Choke]' of 'SkChoke' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[19:47:23] [Server thread/INFO]: [SkChoke] 활성화!
[19:47:23] [Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[19:47:23] [Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 142ms
[19:47:23] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.8
[19:47:23] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[19:47:23] [Server thread/INFO]: [skQuery] Beginning to process a total of 120 from SkQuery
[19:47:23] [Server thread/INFO]: [skQuery] Out of 120 classes, 120 classes were loaded from SkQuery
[19:47:24] [Server thread/INFO]: Running delayed init tasks
[19:47:24] [Server thread/INFO]: [Skript] Loading variables...
[19:47:24] [Server thread/INFO]: [Skript] Loaded 98 variables in 0.0 seconds
[19:47:24] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] 버전 정보를 가져오는중...
[19:47:24] [Server thread/INFO]: [Skript] Line 19: (gun.sk)
[19:47:24] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "_" , "minecraft:"
[19:47:24] [Server thread/INFO]:     Line: replace all "_" , "minecraft:" with "" in {_t}
[19:47:24] [Server thread/INFO]:  
[19:47:24] [Server thread/INFO]: [Skript] Line 21: (gun.sk)
[19:47:24] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "white", "orange", "magenta", "light", "blue", "yellow", "lime", "pink", "gray", "cyan", "purple", "brown", "green", "red", "black", "moss"
[19:47:24] [Server thread/INFO]:     Line: replace all "white", "orange", "magenta", "light", "blue", "yellow", "lime", "pink", "gray", "cyan", "purple", "brown", "green", "red", "black", "moss" with "" in {_t}
[19:47:24] [Server thread/INFO]:  
[19:47:24] [Server thread/INFO]: [Skript] Line 24: (gun.sk)
[19:47:24] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "dead", "tube", "brain", "bubble", "fire", "horn", "fan", "wall"
[19:47:24] [Server thread/INFO]:     Line: replace all "dead", "tube", "brain", "bubble", "fire", "horn", "fan", "wall" with "" in {_t}
[19:47:24] [Server thread/INFO]:  
[19:47:24] [Server thread/INFO]: [Skript] Line 27: (gun.sk)
[19:47:24] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "oak", "dark", "spruce", "birch", "jungle", "acacia", "azalea", "flowering", "bamboo", "crimson", "warped", "stone", "polished", "blackstone", "light", "heavy", "weighted"
[19:47:24] [Server thread/INFO]:     Line: replace all "oak", "dark", "spruce", "birch", "jungle", "acacia", "azalea", "flowering", "bamboo", "crimson", "warped", "stone", "polished", "blackstone", "light", "heavy", "weighted" with "" in {_t}
[19:47:24] [Server thread/INFO]:  
[19:47:25] [Server thread/INFO]: [Skript] Line 30: (gun.sk)
[19:47:25] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "crimson", "warped", "weeping", "twisting", "plant"
[19:47:25] [Server thread/INFO]:     Line: replace all "crimson", "warped", "weeping", "twisting", "plant" with "" in {_t}
[19:47:25] [Server thread/INFO]:  
[19:47:25] [Server thread/INFO]: [Skript] Line 36: (gun.sk)
[19:47:25] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "melon", "pumpkin", "attached"
[19:47:25] [Server thread/INFO]:     Line: replace all "melon", "pumpkin", "attached" with "" in {_t}
[19:47:25] [Server thread/INFO]:  
[19:47:25] [Server thread/INFO]: [Skript] Line 39: (gun.sk)
[19:47:25] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "powered", "detector", "activator"
[19:47:25] [Server thread/INFO]:     Line: replace all "powered", "detector", "activator" with "" in {_t}
[19:47:25] [Server thread/INFO]:  
[19:47:25] [Server thread/INFO]: [Skript] Line 42: (gun.sk)
[19:47:25] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': "small", "medium", "large"
[19:47:25] [Server thread/INFO]:     Line: replace all "small", "medium", "large" with "" in {_t}
[19:47:25] [Server thread/INFO]:  
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[19:47:25] [Server thread/ERROR]: #!#! Could not load gun.sk
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[19:47:25] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[19:47:25] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[19:47:25] [Server thread/ERROR]: #!#! Here is full list of them:
[19:47:25] [Server thread/ERROR]: #!#! skRayFall v1.9.28 (https://sk.rayfall.net/) SkStuff v1.6.4.1 SkBee v2.7.4 (https://github.com/ShaneBeee/SkBee) skUtilities v0.9.2 (https://tim740.github.io/) Skellett v2.0.9 (https://forums.skunity.com/resources/skellett.24/) SkQuery v4.1.8 SkChoke v1.1 
[19:47:25] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[19:47:25] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[19:47:25] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[19:47:25] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[19:47:25] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[19:47:25] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Stack trace:
[19:47:25] [Server thread/ERROR]: #!#! java.lang.RuntimeException: pattern compiling exception, element class: me.TheBukor.SkStuff.effects.EffDrawLineWE
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:226)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:25] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:25] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:25] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:25] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:25] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:25] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: (create|draw|make) [a[n]] (0?(no(n|t)(-| )hollow|filled|)|1?hollow) line from %location% to %location% (using|with) [edit[ ]session] %editsession% (using|with) [block[s]] %itemstacks% [with] thick[ness] %double%]
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[19:47:25] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:25] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:25] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:25] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:25] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:25] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:25] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for editsession
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[19:47:25] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:25] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:25] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:25] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:25] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:25] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:25] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Version Information:
[19:47:25] [Server thread/ERROR]: #!#!   Skript: 2.6.4 (latest)
[19:47:25] [Server thread/ERROR]: #!#!     Flavor: skriptlang-github
[19:47:25] [Server thread/ERROR]: #!#!     Date: 17:14:25.041218900
[19:47:25] [Server thread/ERROR]: #!#!   Bukkit: 1.19.2-R0.1-SNAPSHOT
[19:47:25] [Server thread/ERROR]: #!#!   Minecraft: 1.19.2
[19:47:25] [Server thread/ERROR]: #!#!   Java: 17.0.5 (OpenJDK 64-Bit Server VM 17.0.5+8-LTS)
[19:47:25] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Server platform: Paper
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Current node: play 1 of dust using dustOption(white, 1) at {_loc} (gun.sk, line 207)
[19:47:25] [Server thread/ERROR]: #!#! Current item: null
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Thread: Server thread
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! Language: english
[19:47:25] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/ERROR]: #!#! End of Error.
[19:47:25] [Server thread/ERROR]: #!#! 
[19:47:25] [Server thread/INFO]: [Skript] Line 21: (Level.sk)
[19:47:25] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.lv}). You could prefix it with the script's name: {Level.%player%.lv}
[19:47:25] [Server thread/INFO]:     Line: set {%player%.lv} to player's level
[19:47:25] [Server thread/INFO]:  
[19:47:25] [Server thread/INFO]: [Skript] Line 22: (Level.sk)
[19:47:25] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.exp}). You could prefix it with the script's name: {Level.%player%.exp}
[19:47:25] [Server thread/INFO]:     Line: set {%player%.exp} to player's level progress
[19:47:25] [Server thread/INFO]:  
[19:47:25] [Server thread/INFO]: [Skript] Line 23: (Level.sk)
[19:47:25] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.xp}). You could prefix it with the script's name: {Level.%player%.xp}
[19:47:25] [Server thread/INFO]:     Line: set {%player%.xp} to xp of player
[19:47:25] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 29: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.lv}). You could prefix it with the script's name: {Level.%player%.lv}
[19:47:26] [Server thread/INFO]:     Line: set {%player%.lv} to player's level
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 30: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.exp}). You could prefix it with the script's name: {Level.%player%.exp}
[19:47:26] [Server thread/INFO]:     Line: set {%player%.exp} to player's level progress
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 31: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.xp}). You could prefix it with the script's name: {Level.%player%.xp}
[19:47:26] [Server thread/INFO]:     Line: set {%player%.xp} to xp of player
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 33: (Level.sk)
[19:47:26] [Server thread/INFO]:     Can't understand this event: 'on experience change'
[19:47:26] [Server thread/INFO]:     Line: on experience change:
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 46: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.lv}). You could prefix it with the script's name: {Level.%player%.lv}
[19:47:26] [Server thread/INFO]:     Line: set {%player%.lv} to player's level
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 47: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.xp}). You could prefix it with the script's name: {Level.%player%.xp}
[19:47:26] [Server thread/INFO]:     Line: set {%player%.xp} to player's xp
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 50: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.lv}). You could prefix it with the script's name: {Level.%player%.lv}
[19:47:26] [Server thread/INFO]:     Line: message "{@s2} 플레이어의 레벨: %{%player%.lv}%"
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 51: (Level.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%.xp}). You could prefix it with the script's name: {Level.%player%.xp}
[19:47:26] [Server thread/INFO]:     Line: message "{@s2} 플레이어의 경험치 포인트: %{%player%.xp}%"
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 3: (Money.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {Money.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: set {%uuid of player%.돈} to 0
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 9: (Money.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {Money.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: subtract 1000 from {%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 14: (Money.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {Money.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: message "&e플레이어님이 가진 돈은 현재 %{%uuid of player%.돈}%원 입니다."
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 19: (Money.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {Money.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: set {%uuid of player%.돈} to arg 1
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 25: (Money.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {Money.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: add 10000 to {%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[19:47:26] [Server thread/ERROR]: #!#! Could not load Money.sk
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[19:47:26] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[19:47:26] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[19:47:26] [Server thread/ERROR]: #!#! Here is full list of them:
[19:47:26] [Server thread/ERROR]: #!#! skRayFall v1.9.28 (https://sk.rayfall.net/) SkStuff v1.6.4.1 SkBee v2.7.4 (https://github.com/ShaneBeee/SkBee) skUtilities v0.9.2 (https://tim740.github.io/) Skellett v2.0.9 (https://forums.skunity.com/resources/skellett.24/) SkQuery v4.1.8 SkChoke v1.1 
[19:47:26] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[19:47:26] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[19:47:26] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[19:47:26] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Stack trace:
[19:47:26] [Server thread/ERROR]: #!#! java.lang.RuntimeException: pattern compiling exception, element class: me.TheBukor.SkStuff.effects.EffDrawLineWE
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:226)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: (create|draw|make) [a[n]] (0?(no(n|t)(-| )hollow|filled|)|1?hollow) line from %location% to %location% (using|with) [edit[ ]session] %editsession% (using|with) [block[s]] %itemstacks% [with] thick[ness] %double%]
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for editsession
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Version Information:
[19:47:26] [Server thread/ERROR]: #!#!   Skript: 2.6.4 (latest)
[19:47:26] [Server thread/ERROR]: #!#!     Flavor: skriptlang-github
[19:47:26] [Server thread/ERROR]: #!#!     Date: 17:14:25.041218900
[19:47:26] [Server thread/ERROR]: #!#!   Bukkit: 1.19.2-R0.1-SNAPSHOT
[19:47:26] [Server thread/ERROR]: #!#!   Minecraft: 1.19.2
[19:47:26] [Server thread/ERROR]: #!#!   Java: 17.0.5 (OpenJDK 64-Bit Server VM 17.0.5+8-LTS)
[19:47:26] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Server platform: Paper
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Current node: wipe loop-player's sidebar (Money.sk, line 31)
[19:47:26] [Server thread/ERROR]: #!#! Current item: null
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Thread: Server thread
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Language: english
[19:47:26] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! End of Error.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[19:47:26] [Server thread/ERROR]: #!#! Could not load skill.sk
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[19:47:26] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[19:47:26] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[19:47:26] [Server thread/ERROR]: #!#! Here is full list of them:
[19:47:26] [Server thread/ERROR]: #!#! skRayFall v1.9.28 (https://sk.rayfall.net/) SkStuff v1.6.4.1 SkBee v2.7.4 (https://github.com/ShaneBeee/SkBee) skUtilities v0.9.2 (https://tim740.github.io/) Skellett v2.0.9 (https://forums.skunity.com/resources/skellett.24/) SkQuery v4.1.8 SkChoke v1.1 
[19:47:26] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[19:47:26] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[19:47:26] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[19:47:26] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Stack trace:
[19:47:26] [Server thread/ERROR]: #!#! java.lang.RuntimeException: pattern compiling exception, element class: me.TheBukor.SkStuff.effects.EffDrawLineWE
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:226)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.command.Commands.loadCommand(Commands.java:500)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:708)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: (create|draw|make) [a[n]] (0?(no(n|t)(-| )hollow|filled|)|1?hollow) line from %location% to %location% (using|with) [edit[ ]session] %editsession% (using|with) [block[s]] %itemstacks% [with] thick[ness] %double%]
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.command.Commands.loadCommand(Commands.java:500)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:708)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for editsession
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecConditional.init(SecConditional.java:118)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.command.Commands.loadCommand(Commands.java:500)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:708)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Version Information:
[19:47:26] [Server thread/ERROR]: #!#!   Skript: 2.6.4 (latest)
[19:47:26] [Server thread/ERROR]: #!#!     Flavor: skriptlang-github
[19:47:26] [Server thread/ERROR]: #!#!     Date: 17:14:25.041218900
[19:47:26] [Server thread/ERROR]: #!#!   Bukkit: 1.19.2-R0.1-SNAPSHOT
[19:47:26] [Server thread/ERROR]: #!#!   Minecraft: 1.19.2
[19:47:26] [Server thread/ERROR]: #!#!   Java: 17.0.5 (OpenJDK 64-Bit Server VM 17.0.5+8-LTS)
[19:47:26] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Server platform: Paper
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Current node: damege target by 5 (skill.sk, line 33)
[19:47:26] [Server thread/ERROR]: #!#! Current item: null
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Thread: Server thread
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Language: english
[19:47:26] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! End of Error.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[19:47:26] [Server thread/ERROR]: #!#! Could not load warp.sk
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[19:47:26] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[19:47:26] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[19:47:26] [Server thread/ERROR]: #!#! Here is full list of them:
[19:47:26] [Server thread/ERROR]: #!#! skRayFall v1.9.28 (https://sk.rayfall.net/) SkStuff v1.6.4.1 SkBee v2.7.4 (https://github.com/ShaneBeee/SkBee) skUtilities v0.9.2 (https://tim740.github.io/) Skellett v2.0.9 (https://forums.skunity.com/resources/skellett.24/) SkQuery v4.1.8 SkChoke v1.1 
[19:47:26] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[19:47:26] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[19:47:26] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[19:47:26] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Stack trace:
[19:47:26] [Server thread/ERROR]: #!#! java.lang.RuntimeException: pattern compiling exception, element class: me.TheBukor.SkStuff.effects.EffDrawLineWE
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:226)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.command.Commands.loadCommand(Commands.java:500)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:708)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: (create|draw|make) [a[n]] (0?(no(n|t)(-| )hollow|filled|)|1?hollow) line from %location% to %location% (using|with) [edit[ ]session] %editsession% (using|with) [block[s]] %itemstacks% [with] thick[ness] %double%]
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.command.Commands.loadCommand(Commands.java:500)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:708)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for editsession
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.command.Commands.loadCommand(Commands.java:500)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:708)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Version Information:
[19:47:26] [Server thread/ERROR]: #!#!   Skript: 2.6.4 (latest)
[19:47:26] [Server thread/ERROR]: #!#!     Flavor: skriptlang-github
[19:47:26] [Server thread/ERROR]: #!#!     Date: 17:14:25.041218900
[19:47:26] [Server thread/ERROR]: #!#!   Bukkit: 1.19.2-R0.1-SNAPSHOT
[19:47:26] [Server thread/ERROR]: #!#!   Minecraft: 1.19.2
[19:47:26] [Server thread/ERROR]: #!#!   Java: 17.0.5 (OpenJDK 64-Bit Server VM 17.0.5+8-LTS)
[19:47:26] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Server platform: Paper
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Current node: teleport loop-player to 0.135.0 (warp.sk, line 3)
[19:47:26] [Server thread/ERROR]: #!#! Current item: null
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Thread: Server thread
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Language: english
[19:47:26] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! End of Error.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/INFO]: [Skript] Line 3: (돈.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {돈.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: set {%uuid of player%.돈} to 0
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 9: (돈.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {돈.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: subtract 1000 from {%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 14: (돈.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {돈.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: message "&e플레이어님이 가진 돈은 현재 %{%uuid of player%.돈}%원 입니다."
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 19: (돈.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {돈.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: set {%uuid of player%.돈} to arg 1
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 25: (돈.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {돈.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: add 10000 to {%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[19:47:26] [Server thread/ERROR]: #!#! Could not load 돈.sk
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[19:47:26] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[19:47:26] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[19:47:26] [Server thread/ERROR]: #!#! Here is full list of them:
[19:47:26] [Server thread/ERROR]: #!#! skRayFall v1.9.28 (https://sk.rayfall.net/) SkStuff v1.6.4.1 SkBee v2.7.4 (https://github.com/ShaneBeee/SkBee) skUtilities v0.9.2 (https://tim740.github.io/) Skellett v2.0.9 (https://forums.skunity.com/resources/skellett.24/) SkQuery v4.1.8 SkChoke v1.1 
[19:47:26] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[19:47:26] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[19:47:26] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[19:47:26] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[19:47:26] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Stack trace:
[19:47:26] [Server thread/ERROR]: #!#! java.lang.RuntimeException: pattern compiling exception, element class: me.TheBukor.SkStuff.effects.EffDrawLineWE
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:226)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.patterns.MalformedPatternException: caught exception while compiling pattern [pattern: (create|draw|make) [a[n]] (0?(no(n|t)(-| )hollow|filled|)|1?hollow) line from %location% to %location% (using|with) [edit[ ]session] %editsession% (using|with) [block[s]] %itemstacks% [with] thick[ness] %double%]
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:54)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! Caused by: ch.njol.skript.SkriptAPIException: No class info found for editsession
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:264)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.TypePatternElement.fromString(TypePatternElement.java:92)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:138)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.patterns.PatternCompiler.compile(PatternCompiler.java:49)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.util.HashMap.computeIfAbsent(HashMap.java:1220)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1254)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Statement.parse(Statement.java:60)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadCode(Section.java:90)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.loadOptionalCode(Section.java:145)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.sections.SecLoop.init(SecLoop.java:82)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.init(Section.java:69)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:255)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:177)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.lambda$parse$0(Section.java:157)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section$SectionContext.modify(Section.java:190)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.lang.Section.parse(Section.java:156)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1128)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:753)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$loadScripts$4(ScriptLoader.java:526)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.lambda$makeFuture$2(ScriptLoader.java:418)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.makeFuture(ScriptLoader.java:434)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:525)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:469)
[19:47:26] [Server thread/ERROR]: #!#!     at Skript-2.6.4 (1).jar//ch.njol.skript.Skript$1.run(Skript.java:786)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[19:47:26] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1114)
[19:47:26] [Server thread/ERROR]: #!#!     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[19:47:26] [Server thread/ERROR]: #!#!     at java.base/java.lang.Thread.run(Thread.java:833)
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Version Information:
[19:47:26] [Server thread/ERROR]: #!#!   Skript: 2.6.4 (latest)
[19:47:26] [Server thread/ERROR]: #!#!     Flavor: skriptlang-github
[19:47:26] [Server thread/ERROR]: #!#!     Date: 17:14:25.041218900
[19:47:26] [Server thread/ERROR]: #!#!   Bukkit: 1.19.2-R0.1-SNAPSHOT
[19:47:26] [Server thread/ERROR]: #!#!   Minecraft: 1.19.2
[19:47:26] [Server thread/ERROR]: #!#!   Java: 17.0.5 (OpenJDK 64-Bit Server VM 17.0.5+8-LTS)
[19:47:26] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Server platform: Paper
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Current node: wipe loop-player's sidebar (돈.sk, line 31)
[19:47:26] [Server thread/ERROR]: #!#! Current item: null
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Thread: Server thread
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! Language: english
[19:47:26] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/ERROR]: #!#! End of Error.
[19:47:26] [Server thread/ERROR]: #!#! 
[19:47:26] [Server thread/INFO]: [Skript] A command with the name /돈초기화 is already defined in Money.sk
[19:47:26] [Server thread/INFO]: [Skript] A command with the name /돈빼기 is already defined in Money.sk
[19:47:26] [Server thread/INFO]: [Skript] A command with the name /돈 is already defined in Money.sk
[19:47:26] [Server thread/INFO]: [Skript] A command with the name /돈설정 is already defined in Money.sk
[19:47:26] [Server thread/INFO]: [Skript] A command with the name /돈벌기 is already defined in Money.sk
[19:47:26] [Server thread/INFO]: [Skript] Line 28: (수표.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {수표.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: if {%uuid of player%.돈} >= arg 1 * arg 2:
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 32: (수표.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {수표.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: remove arg 1 * arg 2 from {%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: [Skript] Line 68: (수표.sk)
[19:47:26] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%uuid of player%.돈}). You could prefix it with the script's name: {수표.%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:     Line: add {_돈} to {%uuid of player%.돈}
[19:47:26] [Server thread/INFO]:  
[19:47:26] [Server thread/INFO]: 
[19:47:26] [Server thread/INFO]: [ 수표 ] 유월(Youwol) 님의 스크립트를 사용중입니다.
[19:47:26] [Server thread/INFO]: 
[19:47:27] [Server thread/INFO]: [Skript] Loaded 11 scripts with a total of 10 triggers and 24 commands in 2.85 seconds
[19:47:27] [Server thread/INFO]: [Skript] Finished loading.
[19:47:27] [Server thread/INFO]: [MythicMobs] ?Using HolographicDisplays plugin for holograms
[19:47:27] [Server thread/INFO]: Done (47.685s)! For help, type "help"
[19:47:27] [Server thread/INFO]: Timings Reset
[19:47:38] [Server thread/INFO]: Plugins (25): AnimatedFrames*, Citizens, Essentials, EssentialsChat, EssentialsSpawn, HolographicDisplays, ItemEdit, MapManager*, MythicMobs, PacketListenerApi*, PixelPrinter, playit-gg, ProMCCore, ProSkillAPI, SkBee, SkChoke*, Skellett, SkQuery, skRayFall, Skript, SkStuff*, skUtilities*, VTV1*, WorldEdit, WorldGuard
[19:51:20] [Thread-8/INFO]: [gg.playit.control.ChannelSetup] send keep alive