Date: 2023/07/30 05:25:41 UTC-07:00
Type: Denizen Script
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
[05:05:40] [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'
[05:05:41] [ServerMain/INFO]: Loaded 7 recipes
[05:05:42] [Server thread/INFO]: Starting minecraft server version 1.19.4
[05:05:42] [Server thread/INFO]: Loading properties
[05:05:42] [Server thread/INFO]: This server is running CraftBukkit version 3699-Spigot-6ad4b93-f92c945 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT)
[05:05:42] [Server thread/INFO]: Debug logging is disabled
[05:05:42] [Server thread/INFO]: Server Ping Player Sample Count: 12
[05:05:42] [Server thread/INFO]: Using 4 threads for Netty based IO
[05:05:42] [Server thread/INFO]: Default game type: SURVIVAL
[05:05:42] [Server thread/INFO]: Generating keypair
[05:05:42] [Server thread/INFO]: Starting Minecraft server on 65.21.73.57:25693
[05:05:42] [Server thread/INFO]: Using epoll channel type
[05:05:43] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[05:05:44] [Server thread/WARN]: Legacy plugin WDLCompanion v1.2.0 does not specify an api-version.
[05:05:44] [Server thread/WARN]: Legacy plugin ccInstantRespawn v1.18-v0.8 does not specify an api-version.
[05:05:45] [Server thread/WARN]: Legacy plugin NoRain v1.4.1 does not specify an api-version.
[05:05:45] [Server thread/WARN]: Legacy plugin SetSpawn v3.6 does not specify an api-version.
[05:05:45] [Server thread/INFO]: [NexEngine] Loading 2 libraries... please wait
[05:05:45] [Server thread/INFO]: [NexEngine] Loaded library /home/szerverek/minecraft/14389/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[05:05:45] [Server thread/INFO]: [NexEngine] Loaded library /home/szerverek/minecraft/14389/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[05:05:45] [Server thread/INFO]: [NexEngine] Loaded library /home/szerverek/minecraft/14389/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loading 1 libraries... please wait
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/szerverek/minecraft/14389/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/szerverek/minecraft/14389/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/szerverek/minecraft/14389/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/szerverek/minecraft/14389/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/szerverek/minecraft/14389/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[05:05:45] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/szerverek/minecraft/14389/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[05:05:46] [Server thread/WARN]: Legacy plugin ServerTutorialPlus v1.24.5 does not specify an api-version.
[05:05:46] [Server thread/INFO]: [WDLCompanion] Loading WDLCompanion v1.2.0
[05:05:46] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.3
[05:05:46] [Server thread/INFO]: [ccInstantRespawn] Loading ccInstantRespawn v1.18-v0.8
[05:05:46] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Loading PlaceItemsOnGroundRebuilt v1.0.6
[05:05:46] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.7.0
[05:05:46] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[05:05:46] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[05:05:46] [Server thread/INFO]: [EpicPluginLib] Loading EpicPluginLib v2.2.1
[05:05:46] [Server thread/INFO]: [PlayMoreSounds] Loading PlayMoreSounds v4.2
[05:05:46] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.2-SNAPSHOT
[05:05:46] [Server thread/INFO]: [ViaBackwards] Loading translations...
[05:05:46] [Server thread/ERROR]: 'void com.viaversion.viaversion.api.data.MappingDataBase.<init>(java.lang.String, java.lang.String, boolean)' initializing ViaBackwards v4.5.2-SNAPSHOT (Is it up to date?)
java.lang.NoSuchMethodError: 'void com.viaversion.viaversion.api.data.MappingDataBase.<init>(java.lang.String, java.lang.String, boolean)'
at com.viaversion.viabackwards.api.data.BackwardsMappings.<init>(BackwardsMappings.java:46) ~[?:?]
at com.viaversion.viabackwards.protocol.protocol1_9_4to1_10.Protocol1_9_4To1_10.<clinit>(Protocol1_9_4To1_10.java:39) ~[?:?]
at com.viaversion.viabackwards.api.ViaBackwardsPlatform.init(ViaBackwardsPlatform.java:86) ~[?:?]
at com.viaversion.viabackwards.BukkitPlugin.init(BukkitPlugin.java:48) ~[?:?]
at com.viaversion.viabackwards.BukkitPlugin.onLoad(BukkitPlugin.java:36) ~[?:?]
at org.bukkit.craftbukkit.v1_19_R3.CraftServer.loadPlugins(CraftServer.java:427) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
[05:05:46] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.86
[05:05:46] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[05:05:46] [Server thread/INFO]: [AnimatedScoreboard] Loading AnimatedScoreboard v0.2.7
[05:05:46] [Server thread/INFO]: [NoRain] Loading NoRain v1.4.1
[05:05:46] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[05:05:46] [Server thread/INFO]: [SetSpawn] Loading SetSpawn v3.6
[05:05:46] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b608
[05:05:46] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.4) has not yet been tested! Proceed with caution.
[05:05:47] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.11-Release
[05:05:47] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[05:05:47] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.1-SNAPSHOT (b23-f44319c)
[05:05:47] [Server thread/INFO]: [floodgate] Took 279ms to boot Floodgate
[05:05:47] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[05:05:47] [Server thread/INFO]: [BloodInMinecraft] Loading BloodInMinecraft v8.7
[05:05:47] [Server thread/INFO]: [NoPlugins] Loading NoPlugins v8.1
[05:05:47] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.11
[05:05:47] [Server thread/INFO]: [SilkSpawners_v2] Loading SilkSpawners_v2 v2.2.1
[05:05:47] [Server thread/INFO]: [LPC] Loading LPC v3.1.0
[05:05:47] [Server thread/INFO]: [ExtremeLevelMobs] Loading ExtremeLevelMobs v1.3.0
[05:05:47] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.15+6463-5ca4dff
[05:05:47] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@62823f2]
[05:05:47] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.25.1
[05:05:47] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.3
[05:05:47] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+38-b323860
[05:05:47] [Server thread/INFO]: [TreasureChest] Loading TreasureChest v8.5
[05:05:47] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.4.0
[05:05:47] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.7-DEV-153
[05:05:47] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[05:05:47] [Server thread/INFO]: [TAB] Loading TAB v3.2.1
[05:05:47] [Server thread/INFO]: [SuperiorSkyblock2] Loading SuperiorSkyblock2 v2023.2
[05:05:47] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[05:05:47] [Server thread/INFO]: [UltraBar] Loading UltraBar v2.3.1.1
[05:05:47] [Server thread/INFO]: [CommandMineRewards] Loading CommandMineRewards v7.1.1
[05:05:47] [Server thread/INFO]: [GSit] Loading GSit v1.3.3
[05:05:47] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.3.6
[05:05:47] [Server thread/INFO]: [CropReplace] Loading CropReplace v1.5.1
[05:05:47] [Server thread/INFO]: [0;32;1mCrop Replace[0;30;1m » [0;37;22mRegistered WorldGuard API[m
[05:05:47] [Server thread/INFO]: [RealisticSurvival] Loading RealisticSurvival v1.2.6-RELEASE
[05:05:48] [Server thread/INFO]: [EnderContainers] Loading EnderContainers v2.3.0-dev
[05:05:48] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[05:05:48] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.32-SNAPSHOT (build 3135)
[05:05:48] [Server thread/INFO]: [ItemJoin] Loading ItemJoin v5.2.5-SNAPSHOT-b835
[05:05:48] [Server thread/INFO]: [AureliumSkills] Loading AureliumSkills vBeta 1.3.12
[05:05:48] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v4.4.4
[05:05:48] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[05:05:48] [Server thread/INFO]: [BlockRegen] Loading BlockRegen v3.10.1
[05:05:48] [Server thread/INFO]: [AuctionMaster] Loading AuctionMaster v4.1
[05:05:48] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.3.5-64893d49
[05:05:48] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[05:05:48] [Server thread/INFO]: [MysqlEconomyBank] Loading MysqlEconomyBank v1.16.4
[05:05:48] [Server thread/INFO]: [Server Tutorial Plus] Loading ServerTutorialPlus v1.24.5
[05:05:48] [Server thread/INFO]: [Sentinel] Loading Sentinel v2.7.3-SNAPSHOT (build 505)
[05:05:48] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.1.8
[05:05:48] [Server thread/INFO]: [MCPets] Loading MCPets v3.0.2
[05:05:48] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[05:05:48] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[05:05:48] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.86
[05:05:48] [Server thread/INFO]: [0;36;1m [0;36;22m __ [m
[05:05:48] [Server thread/INFO]: [0;36;1m | [0;36;22m|__) [0;32;22mLuckPerms[m [0;36;1mv5.3.86[m
[05:05:48] [Server thread/INFO]: [0;36;1m |___ [0;36;22m| [0;30;1mRunning on Bukkit - CraftBukkit[m
[05:05:48] [Server thread/INFO]: [m
[05:05:48] [Server thread/INFO]: [LuckPerms] Loading configuration...
[05:05:48] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[05:05:49] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[05:05:49] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[05:05:49] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1303ms)
[05:05:49] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b608
[05:05:49] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[05:05:49] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+38-b323860 which is not a depend or softdepend of this plugin.
[05:05:49] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[05:05:49] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[05:05:49] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[05:05:49] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[05:05:49] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.11
[05:05:49] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[05:05:49] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[05:05:49] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[05:05:49] [Server thread/INFO]: [NexEngine] Plugin loaded in 73 ms!
[05:05:49] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.15+6463-5ca4dff
[05:05:49] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[05:05:49] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[05:05:49] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R3.PaperweightAdapter as the Bukkit adapter
[05:05:50] [Server thread/INFO]: [WorldEdit] ====================================================
[05:05:50] [Server thread/INFO]: [WorldEdit] WorldEdit works better if you use Paper
[05:05:50] [Server thread/INFO]: [WorldEdit] as your server software.
[05:05:50] [Server thread/INFO]: [WorldEdit]
[05:05:50] [Server thread/INFO]: [WorldEdit] Paper offers significant performance improvements,
[05:05:50] [Server thread/INFO]: [WorldEdit] bug fixes, security enhancements and optional
[05:05:50] [Server thread/INFO]: [WorldEdit] features for server owners to enhance their server.
[05:05:50] [Server thread/INFO]: [WorldEdit]
[05:05:50] [Server thread/INFO]: [WorldEdit] Paper includes Timings v2, which is significantly
[05:05:50] [Server thread/INFO]: [WorldEdit] better at diagnosing lag problems over v1.
[05:05:50] [Server thread/INFO]: [WorldEdit]
[05:05:50] [Server thread/INFO]: [WorldEdit] All of your plugins should still work, and the
[05:05:50] [Server thread/INFO]: [WorldEdit] Paper community will gladly help you fix any issues.
[05:05:50] [Server thread/INFO]: [WorldEdit]
[05:05:50] [Server thread/INFO]: [WorldEdit] Join the Paper Community @ https://papermc.io
[05:05:50] [Server thread/INFO]: [WorldEdit] ====================================================
[05:05:50] [Server thread/INFO]: [RealisticSurvival] Enabling RealisticSurvival v1.2.6-RELEASE
[05:05:50] [Server thread/INFO]: [RealisticSurvival] §6[Realistic Survival] §fInitializing §eIceandFire §fmodule
[05:05:50] [Server thread/WARN]: [RealisticSurvival] [SpartanandFire] Module requires Spartan Weaponry to be enabled.
[05:05:50] [Server thread/INFO]: [RealisticSurvival] §6[Realistic Survival] §fInitializing §eToughAsNails §fmodule
[05:05:50] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-SNAPSHOT-b835
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] Enabling MysqlEconomyBank v1.16.4
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] Using economy system: EssentialsX Economy
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] Using permission system: LuckPerms
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] Loading the config file...
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] MysqlEconomyBank loaded successfully!
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] Interest task is disabled.
[05:05:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: economybank [1.16.4]
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] PlaceholdersAPI detected and placeholders activated!
[05:05:50] [Server thread/INFO]: [MysqlEconomyBank] MysqlEconomyBank has been successfully loaded!
[05:05:50] [Server thread/INFO]: Preparing level "MainWorld"
[05:05:50] [Server thread/INFO]: -------- World Settings For [MainWorld] --------
[05:05:50] [Server thread/INFO]: Experience Merge Radius: 3.0
[05:05:50] [Server thread/INFO]: Mob Spawn Range: 6
[05:05:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Carrot Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Potato Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Kelp Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[05:05:50] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false / Isa false
[05:05:50] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[05:05:50] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[05:05:50] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[05:05:50] [Server thread/INFO]: Max TNT Explosions: 100
[05:05:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:05:50] [Server thread/INFO]: Item Merge Radius: 2.5
[05:05:50] [Server thread/INFO]: Item Despawn Rate: 3000
[05:05:50] [Server thread/INFO]: View Distance: 8
[05:05:50] [Server thread/INFO]: Simulation Distance: 10
[05:05:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:05:50] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[05:05:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:05:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:05:51] [Server thread/INFO]: -------- World Settings For [MainWorld_nether] --------
[05:05:51] [Server thread/INFO]: Experience Merge Radius: 3.0
[05:05:51] [Server thread/INFO]: Mob Spawn Range: 6
[05:05:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Carrot Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Potato Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Kelp Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false / Isa false
[05:05:51] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[05:05:51] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[05:05:51] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[05:05:51] [Server thread/INFO]: Max TNT Explosions: 100
[05:05:51] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:05:51] [Server thread/INFO]: Item Merge Radius: 2.5
[05:05:51] [Server thread/INFO]: Item Despawn Rate: 3000
[05:05:51] [Server thread/INFO]: View Distance: 8
[05:05:51] [Server thread/INFO]: Simulation Distance: 10
[05:05:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:05:51] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[05:05:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:05:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:05:51] [Server thread/INFO]: -------- World Settings For [MainWorld_the_end] --------
[05:05:51] [Server thread/INFO]: Experience Merge Radius: 3.0
[05:05:51] [Server thread/INFO]: Mob Spawn Range: 6
[05:05:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Carrot Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Potato Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Kelp Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[05:05:51] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false / Isa false
[05:05:51] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[05:05:51] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[05:05:51] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[05:05:51] [Server thread/INFO]: Max TNT Explosions: 100
[05:05:51] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:05:51] [Server thread/INFO]: Item Merge Radius: 2.5
[05:05:51] [Server thread/INFO]: Item Despawn Rate: 3000
[05:05:51] [Server thread/INFO]: View Distance: 8
[05:05:51] [Server thread/INFO]: Simulation Distance: 10
[05:05:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:05:51] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[05:05:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:05:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:05:51] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[05:05:53] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[05:05:53] [Worker-Main-11/INFO]: Preparing spawn area: 0%
[05:05:53] [Worker-Main-5/INFO]: Preparing spawn area: 0%
[05:05:53] [Worker-Main-6/INFO]: Preparing spawn area: 0%
[05:05:53] [Worker-Main-7/INFO]: Preparing spawn area: 0%
[05:05:54] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[05:05:54] [Worker-Main-1/INFO]: Preparing spawn area: 77%
[05:05:55] [Server thread/INFO]: Time elapsed: 3141 ms
[05:05:55] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[05:05:56] [Worker-Main-7/INFO]: Preparing spawn area: 0%
[05:05:56] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[05:05:56] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[05:05:56] [Worker-Main-10/INFO]: Preparing spawn area: 2%
[05:05:57] [Worker-Main-6/INFO]: Preparing spawn area: 96%
[05:05:57] [Server thread/INFO]: Time elapsed: 2006 ms
[05:05:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[05:05:57] [Worker-Main-9/INFO]: Preparing spawn area: 0%
[05:05:57] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[05:05:58] [Worker-Main-1/INFO]: Preparing spawn area: 14%
[05:05:58] [Server thread/INFO]: Time elapsed: 1373 ms
[05:05:58] [Server thread/INFO]: [WDLCompanion] Enabling WDLCompanion v1.2.0
[05:05:58] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[05:05:58] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[05:05:58] [Server thread/INFO]: [ccInstantRespawn] Enabling ccInstantRespawn v1.18-v0.8
[05:05:58] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Enabling PlaceItemsOnGroundRebuilt v1.0.6
[05:05:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[05:05:58] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[05:05:58] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.2.1
[05:05:58] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.[m
[05:05:58] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.[m
[05:05:58] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.[m
[05:05:58] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.2
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;22m-> [0;33;1mConfigurations loaded.[m
[05:05:58] [Server thread/WARN]: [PlayMoreSounds] The provided resource pack hash is invalid.
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;22m-> [0;33;1m8 listeners loaded.[m
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;22m-> [0;33;1mCommands loaded.[m
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;22m============================================[m
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;32;1mPlayMoreSounds has been enabled[m
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;32;1m1202 sounds available on 1.19.4[m
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;22m============================================[m
[05:05:58] [Server thread/WARN]: [PlayMoreSounds] PlayMoreSounds detected you are on version 1.19.4. This version was not tested and might throw errors.
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;1mPlayMoreSounds is using bStats as metrics collector.[m
[05:05:58] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;1mChecking for updates...[m
[05:05:58] [Server thread/WARN]: [PlayMoreSounds] The provided resource pack hash is invalid.
[05:05:58] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.2-SNAPSHOT
[05:05:58] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.2.7
[05:05:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: animatedscoreboard [0.0.1]
[05:05:58] [Server thread/INFO]: [NoRain] Enabling NoRain v1.4.1
[05:05:58] [Server thread/INFO]: [0;37;22m» [0;36;1mNoRain [0;33;1m1.4.1 [0;36;1mwas [0;32;1mactivated.[m
[05:05:58] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[05:05:58] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[05:05:58] [Server thread/INFO]: [ClearLag] Loading modules...
[05:05:58] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[05:05:58] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[05:05:58] [Server thread/WARN]: [ClearLag] Item type 'OAK_BOAT !isMounted' does not match any Materials found on your Craftbukkit version.
[05:05:58] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[05:05:58] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[05:05:58] [Thread-14/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[05:05:58] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v3.6
[05:05:58] [Server thread/INFO]: [SetSpawn] Enabled!
[05:05:58] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.11-Release
[05:05:58] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[05:05:58] [EPL Update Checker/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;1mNo updates available.[m
[05:05:59] [Server thread/INFO]: [Minepacks] [32mConfig file successfully loaded.[0m
[05:05:59] [Server thread/WARN]: [Minepacks] [31m################################[0m
[05:05:59] [Server thread/WARN]: [Minepacks] [31mYour minecraft version (MC 1.19) is currently not compatible with this plugins version (2.4.11-Release). Please check for updates![0m
[05:05:59] [Server thread/WARN]: [Minepacks] [31m################################[0m
[05:05:59] [Thread-14/INFO]: [ClearLag] No updates found!
[05:06:04] [Server thread/INFO]: [Minepacks] [31m Minepacks has been disabled. [33m :( [0m
[05:06:04] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.1-SNAPSHOT (b23-f44319c)
[05:06:04] [Server thread/INFO]: [BloodInMinecraft] Enabling BloodInMinecraft v8.7
[05:06:04] [Server thread/INFO]: [0;31;1m----------------------------------------[m
[05:06:04] [Server thread/INFO]: [0;32;1mBloodInMinecraft By Yanisssch Is On![0;36;1m No error Found ;)! [0;31;1mVERSION 8.7[m
[05:06:04] [Server thread/INFO]: [0;32;1mYour server running on:3699-Spigot-6ad4b93-f92c945 (MC: 1.19.4)V8 Plugin Rework! -!Only work on 1.13 to newer versions!-[m
[05:06:04] [Server thread/INFO]: [0;33;1mPlease send your IP server on spigot review (or Discord:yan44600#2594) to put your server on list which use BIM plugin[m
[05:06:04] [Server thread/INFO]: [0;31;1m----------------------------------------[m
[05:06:04] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[05:06:04] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_19_R3
[05:06:04] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[05:06:04] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[05:06:04] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.2.1
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Starting SilkSpawners v2.2.1[m
[05:06:04] [pool-23-thread-1/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Checking for updates[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Loading Cross-Version support[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Loading support for NMS-Version v1_19_R3[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Loading locale file[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Registering listeners[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Registering commands[m
[05:06:04] [Server thread/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: Started SilkSpawners v2.2.1[m
[05:06:04] [Server thread/INFO]: [LPC] Enabling LPC v3.1.0
[05:06:04] [Server thread/INFO]: [LPC] Hooked into PlaceholderAPI.
[05:06:04] [Server thread/INFO]: [ExtremeLevelMobs] Enabling ExtremeLevelMobs v1.3.0
[05:06:04] [Server thread/INFO]: [0;32;1m------------------------[ExtremeLevelMobs]----------------------[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs][m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mPlugin [0;32;1mENABLING.[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mYou are using version version:[1.3.0].[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mCreated by [lanus2k].[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mApi-version 13+.[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mReport bugs or suggestions by discord.[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mAlways make a backup.[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs] [0;36;1mPlugin Vault [0;32;1mFOUND.[m
[05:06:04] [Server thread/INFO]: [0;32;1m[ExtremeLevelMobs][m
[05:06:04] [Server thread/INFO]: [0;32;1m------------------------[ExtremeLevelMobs]----------------------[m
[05:06:04] [pool-23-thread-1/INFO]: [0;33;22m⚓ [0;30;1m[[0;32;22mINFO[0;30;1m][0;37;22m: The plugin is up to date (v2.2.1)[m
[05:06:04] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.25.1
[05:06:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.25.1]
[05:06:04] [Server thread/INFO]: [0;30;1m[[0;31;22mPlayerKits[0;30;1m] [0;33;1mHas been enabled! [0;37;1mVersion: 2.25.1[m
[05:06:04] [Server thread/INFO]: [0;30;1m[[0;31;22mPlayerKits[0;30;1m] [0;33;1mThanks for using my plugin! [0;37;1m~Ajneb97[m
[05:06:04] [Server thread/INFO]: [0;31;1mThere is a new version available. [0;33;1m([0;37;22m2.27.1[0;33;1m)[m
[05:06:04] [Server thread/INFO]: [0;31;1mYou can download it at: [0;37;1mhttps://www.spigotmc.org/resources/75185/[m
[05:06:04] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[05:06:04] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[05:06:04] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+38-b323860
[05:06:04] [Server thread/ERROR]: You are running an unsupported server version!
[05:06:04] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[05:06:04] [Server thread/INFO]: No kits found to migrate.
[05:06:05] [Server thread/INFO]: Loaded 38132 items from items.json.
[05:06:05] [Server thread/INFO]: Using locale en_US
[05:06:05] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[05:06:05] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[05:06:05] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[05:06:05] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[05:06:05] [Server thread/INFO]: [TreasureChest] Enabling TreasureChest v8.5
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.4.0
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[05:06:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.4.0]
[05:06:05] [Server thread/INFO]: HikariPool-1 - Starting...
[05:06:05] [Server thread/INFO]: HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@99d1443
[05:06:05] [Server thread/INFO]: HikariPool-1 - Start completed.
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Loaded 2 crate keys.
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crates.
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[05:06:05] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 138 ms!
[05:06:05] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-DEV-153
[05:06:05] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[05:06:05] [Server thread/INFO]: [DeluxeMenus] 29 GUI menus loaded!
[05:06:05] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[05:06:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-DEV-153]
[05:06:05] [Server thread/INFO]: [TAB] Enabling TAB v3.2.1
[05:06:05] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)[m
[05:06:05] [Server thread/INFO]: [0;31;1m[TAB] No compatibility issue was found, but this plugin version does not claim to support your server package (v1_19_R3). This jar has only been tested on 1.5.2 - 1.19.3. Disabling just to stay safe.[m
[05:06:05] [Server thread/INFO]: [TAB] Disabling TAB v3.2.1
[05:06:05] [Server thread/INFO]: [SuperiorSkyblock2] Enabling SuperiorSkyblock2 v2023.2
[05:06:05] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module nashorn-engine...
[05:06:05] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module nashorn-engine (Took 7ms)
[05:06:05] [Server thread/INFO]: -------- World Settings For [Skyblock] --------
[05:06:05] [Server thread/INFO]: Experience Merge Radius: 3.0
[05:06:05] [Server thread/INFO]: Mob Spawn Range: 6
[05:06:05] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Carrot Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Potato Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Kelp Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[05:06:05] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false / Isa false
[05:06:05] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[05:06:05] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[05:06:05] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[05:06:05] [Server thread/INFO]: Max TNT Explosions: 100
[05:06:05] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:06:05] [Server thread/INFO]: Item Merge Radius: 2.5
[05:06:05] [Server thread/INFO]: Item Despawn Rate: 3000
[05:06:05] [Server thread/INFO]: View Distance: 8
[05:06:05] [Server thread/INFO]: Simulation Distance: 10
[05:06:05] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:06:05] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[05:06:05] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:06:05] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:06:05] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock
[05:06:06] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[05:06:06] [Worker-Main-8/INFO]: Preparing spawn area: 0%
[05:06:06] [Worker-Main-7/INFO]: Preparing spawn area: 0%
[05:06:07] [Worker-Main-2/INFO]: Preparing spawn area: 43%
[05:06:07] [Worker-Main-9/INFO]: Preparing spawn area: 75%
[05:06:07] [Server thread/INFO]: Time elapsed: 2317 ms
[05:06:07] [Server thread/INFO]: -------- World Settings For [Skyblock_nether] --------
[05:06:07] [Server thread/INFO]: Experience Merge Radius: 3.0
[05:06:07] [Server thread/INFO]: Mob Spawn Range: 6
[05:06:07] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Carrot Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Potato Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Kelp Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[05:06:07] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false / Isa false
[05:06:07] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[05:06:07] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[05:06:07] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[05:06:07] [Server thread/INFO]: Max TNT Explosions: 100
[05:06:07] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:06:07] [Server thread/INFO]: Item Merge Radius: 2.5
[05:06:07] [Server thread/INFO]: Item Despawn Rate: 3000
[05:06:07] [Server thread/INFO]: View Distance: 8
[05:06:07] [Server thread/INFO]: Simulation Distance: 10
[05:06:07] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:06:07] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[05:06:07] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:06:07] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:06:07] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock_nether
[05:06:08] [Worker-Main-7/INFO]: Preparing spawn area: 0%
[05:06:08] [Worker-Main-9/INFO]: Preparing spawn area: 0%
[05:06:08] [Worker-Main-1/INFO]: Preparing spawn area: 54%
[05:06:09] [Server thread/INFO]: Time elapsed: 1288 ms
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module bank...
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module bank (Took 0ms)
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module missions...
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission explorer_1
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission explorer_2
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module missions (Took 477ms)
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module generators...
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module generators (Took 9ms)
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module upgrades...
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module upgrades (Took 7ms)
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages started...
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] - Found 698 messages in the language files.
[05:06:09] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages done (Took 128ms)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic pirate_island_the_end.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic pirate_island.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel_nether.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic pirate_island_nether.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic pirate_desert.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic nether.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic pirate_desert_the_end.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic the_end.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel_the_end.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic pirate_desert_nether.schematic (DefaultSchematicParser)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Trying to connect to local database (SQLite)...
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Successfully established connection with local database!
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Creating a backup file...
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Backup done!
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load players...
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 1 players (Took 5ms)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load islands...
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 1 islands (Took 30ms)
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load grid...
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Finished grid!
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load stacked blocks...
[05:06:10] [Server thread/INFO]: [SuperiorSkyblock2] Finished stacked blocks!
[05:06:10] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld) Blacklist loaded with 4 entries.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld) TNT ignition is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld) Lighters are PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld) Lava fire is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld) Fire spread is UNRESTRICTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MainWorld'
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_nether) TNT ignition is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_nether) Lighters are PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_nether) Lava fire is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_nether) Fire spread is UNRESTRICTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MainWorld_nether'
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_the_end) TNT ignition is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_the_end) Lighters are PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_the_end) Lava fire is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (MainWorld_the_end) Fire spread is UNRESTRICTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MainWorld_the_end'
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock) TNT ignition is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock) Lighters are PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock) Lava fire is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock) Fire spread is UNRESTRICTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyblock'
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) TNT ignition is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) Lighters are PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) Lava fire is PERMITTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) Fire spread is UNRESTRICTED.
[05:06:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyblock_nether'
[05:06:10] [Server thread/INFO]: [WorldGuard] Loading region data...
[05:06:10] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.1.1
[05:06:10] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated.
[05:06:10] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[05:06:10] [Server thread/INFO]: [UltraBar] Your server is running version v1_19_R3!
[05:06:10] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.1.1
[05:06:10] [Server thread/INFO]: [UltraBar] Bstat metrics is disabled for this plugin.
[05:06:10] [Server thread/INFO]: [UltraBar] An update was found! New version: 2.3.2 download: https://www.spigotmc.org/resources/20113
[05:06:10] [Server thread/INFO]: [CommandMineRewards] Enabling CommandMineRewards v7.1.1
[05:06:10] [Server thread/INFO]: [CommandMineRewards] Successfully hooked WorldGuard!
[05:06:11] [Server thread/INFO]: [CommandMineRewards] CommandMineRewards is enabled!
[05:06:11] [Server thread/INFO]: [GSit] Enabling GSit v1.3.3
[05:06:11] [Server thread/INFO]: [0;37;22m[[0;33;22mGSit[0;37;22m][0;31;1m This Plugin can not be used with this Server Version! ([0;36;1mv1_19_R3[0;31;1m)[m
[05:06:11] [Server thread/INFO]: [0;37;22m[[0;33;22mGSit[0;37;22m][0;32;1m New Version available:[0;33;22m 1.4.10[0;32;1m!
[05:06:11] [Server thread/INFO]: [0;37;22m[[0;33;22mGSit[0;37;22m][0;32;1m You are currently running Version:[0;33;22m 1.3.3[0;32;1m!
[05:06:11] [Server thread/INFO]: [0;37;22m[[0;33;22mGSit[0;37;22m][0;32;1m Download the latest Version at:
[05:06:11] [Server thread/INFO]: [0;37;22m[[0;33;22mGSit[0;37;22m][0;33;22m https://www.spigotmc.org/resources/62325[m
[05:06:11] [Server thread/INFO]: [GSit] Disabling GSit v1.3.3
[05:06:11] [Server thread/INFO]: [0;37;22m[[0;33;22mGSit[0;37;22m][0;32;1m The Plugin was successfully disabled.[m
[05:06:11] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[05:06:11] [Server thread/INFO]: [CropReplace] Enabling CropReplace v1.5.1
[05:06:11] [Server thread/INFO]: [0;32;1mCrop Replace[0;30;1m » [0;37;22mRegistered WorldGuard API[m
[05:06:11] [Server thread/INFO]: [EnderContainers] Enabling EnderContainers v2.3.0-dev
[05:06:11] [Server thread/INFO]: [EnderContainers] Hooked into Essentials v2.20.0-dev+38-b323860
[05:06:11] [Server thread/INFO]: [EnderContainers] Hooked into WorldGuard v7.0.7+216b061
[05:06:11] [Server thread/INFO]: [EnderContainers] MySQL disabled. Using flat system to store data.
[05:06:11] [Server thread/WARN]: [EnderContainers] You have disabled update checking. Please be sure that the plugin is up to date.
[05:06:11] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[05:06:11] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[05:06:11] [Server thread/INFO]: [Multiverse-Core] §aWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[05:06:11] [Server thread/INFO]: Could not set generator for world 'Skyblock': Plugin 'IridiumSkyblock' does not exist[m
[05:06:11] [Server thread/INFO]: Could not set generator for world 'Skyblock_nether': Plugin 'IridiumSkyblock' does not exist[m
[05:06:11] [Server thread/INFO]: -------- World Settings For [IntroWorld] --------
[05:06:11] [Server thread/INFO]: Experience Merge Radius: 3.0
[05:06:11] [Server thread/INFO]: Mob Spawn Range: 6
[05:06:11] [Server thread/INFO]: Cactus Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Cane Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Melon Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Sapling Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Carrot Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Potato Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Wheat Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Vine Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Kelp Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[05:06:11] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv false / Isa false
[05:06:11] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[05:06:11] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[05:06:11] [Server thread/INFO]: Custom Map Seeds: Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[05:06:11] [Server thread/INFO]: Max TNT Explosions: 100
[05:06:11] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[05:06:11] [Server thread/INFO]: Item Merge Radius: 2.5
[05:06:11] [Server thread/INFO]: Item Despawn Rate: 3000
[05:06:11] [Server thread/INFO]: View Distance: 8
[05:06:11] [Server thread/INFO]: Simulation Distance: 10
[05:06:11] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[05:06:11] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[05:06:11] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[05:06:11] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[05:06:11] [Server thread/INFO]: Preparing start region for dimension minecraft:introworld
[05:06:12] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[05:06:12] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[05:06:12] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[05:06:12] [Worker-Main-1/INFO]: Preparing spawn area: 26%
[05:06:13] [Server thread/INFO]: Time elapsed: 1796 ms
[05:06:13] [Server thread/INFO]: [WorldGuard] (IntroWorld) TNT ignition is PERMITTED.
[05:06:13] [Server thread/INFO]: [WorldGuard] (IntroWorld) Lighters are PERMITTED.
[05:06:13] [Server thread/INFO]: [WorldGuard] (IntroWorld) Lava fire is PERMITTED.
[05:06:13] [Server thread/INFO]: [WorldGuard] (IntroWorld) Fire spread is UNRESTRICTED.
[05:06:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IntroWorld'
[05:06:13] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[05:06:13] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[05:06:13] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[05:06:13] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3135)
[05:06:13] [Server thread/INFO]: [Citizens] Loading external libraries
[05:06:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[05:06:13] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[05:06:13] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.12
[05:06:13] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[05:06:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.12]
[05:06:13] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[05:06:13] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[05:06:13] [Server thread/INFO]: [AureliumSkills] Loaded 187 config options in 0 ms
[05:06:13] [Server thread/INFO]: [AureliumSkills] Loaded 303 sources and 10 tags in 8ms
[05:06:13] [Server thread/INFO]: [AureliumSkills] Loading languages...
[05:06:14] [Server thread/INFO]: [AureliumSkills] Loaded 10 languages in 695ms
[05:06:14] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[05:06:14] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 1ms
[05:06:14] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[05:06:14] [Server thread/INFO]: [AureliumSkills] Loaded 23 loot entries in 4 pools and 2 tables
[05:06:14] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[05:06:14] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[05:06:14] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[05:06:14] [Server thread/WARN]: [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.0) located at com.archyx.aureliumskills.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[05:06:14] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[05:06:14] [Server thread/WARN]: [AureliumSkills] NBT API is not yet supported for your Minecraft version, item modifier, requirement, and some other functionality is disabled!
[05:06:14] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[05:06:14] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[05:06:14] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[05:06:14] [Server thread/INFO]: [BlockRegen] Enabling BlockRegen v3.10.1
[05:06:14] [Server thread/INFO]: [m[0;37;22mINFO: Loaded file Settings.yml[m
[05:06:14] [Server thread/INFO]: [m[0;37;22mINFO: Loaded file Messages.yml[m
[05:06:14] [Server thread/INFO]: [m[0;37;22mINFO: Loaded file Blocklist.yml[m
[05:06:14] [Server thread/INFO]: [m[0;37;22mINFO: Loaded file Regions.yml[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Running on version 1.19[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: WorldEdit found! [0;32;1mEnabling regions.[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: WorldGuard found! [0;32;1mSupporting it's Region protection.[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Checking dependencies...[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Vault & economy plugin found! [0;32;1mEnabling economy functions.[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Found PlaceholderAPI! [0;32;1mUsing it for placeholders.[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Loaded 27 block preset(s)...[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Added 0 event(s)...[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Loaded file Regions.yml[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Loaded 1 region(s)...[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: [0;36;1mYou are using version [0;37;1m3.10.1[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: [0;36;1mReport bugs or suggestions to discord only please. [0;37;1m( /blockregen discord )[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: [0;36;1mAlways backup if you are not sure about things.[m
[05:06:14] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: [0;30;1mMetricsLite enabled[m
[05:06:14] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1
[05:06:14] [ForkJoinPool.commonPool-worker-4/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Loaded 0 regeneration process(es)...[m
[05:06:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[05:06:14] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[05:06:14] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[05:06:14] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[05:06:14] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[05:06:14] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.3.5-64893d49
[05:06:15] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Spigot (MC: 1.19.4)...[0m
[05:06:15] [Server thread/INFO]: [MythicMobs] The server is running Spigot; disabled PaperSpigot exclusive functionality[0m
[05:06:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythic [5.0.0]
[05:06:16] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled![0m
[05:06:16] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled![0m
[05:06:16] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled![0m
[05:06:16] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled![0m
[05:06:16] [Server thread/INFO]: [MythicMobs] Base directory /home/szerverek/minecraft/14389/plugins/MythicMobs/SavedData
[05:06:16] [Server thread/INFO]: [MythicMobs] Module directory /home/szerverek/minecraft/14389/plugins/MythicMobs/SavedData/worlds
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Packs...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Items...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Item Groups...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Skills...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 8 mobs.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 3 vanilla mob overrides.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 0 mob stacks.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 4 skills.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 2 random spawns.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 1 mythic items.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 0 drop tables.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓[37m Loaded 3 mob spawners.[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.[0m
[05:06:17] [Server thread/ERROR]: [MythicMobs] Plugin MythicMobs v5.3.5-64893d49 has failed to register events for class io.lumine.mythic.bukkit.adapters.BukkitSkillTriggers because com/destroystokyo/paper/event/entity/CreeperIgniteEvent does not exist.
[05:06:17] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics[0m
[05:06:17] [Server thread/INFO]: [MythicMobs] [32m✓ MythicMobs v5.3.5 ( build 64893d49 ) has been successfully loaded![0m[0m
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] Enabling ServerTutorialPlus v1.24.5
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] Enabling server tutorial...
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] Using FlatFile as datasource...
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] Using protocol: nl.martenm.servertutorialplus.reflection.v1_14.Protocol_1_14_V1
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] Loading server tutorial: tutorial
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] PlaceholderAPI has been found!
[05:06:17] [Server thread/INFO]: [Server Tutorial Plus] Servertutorial enabled successfully!
[05:06:17] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.3-SNAPSHOT (build 505)
[05:06:17] [Server thread/INFO]: [Sentinel] Sentinel loading...
[05:06:17] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.1
[05:06:17] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[05:06:17] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[05:06:17] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[05:06:17] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[05:06:17] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.8
[05:06:17] [Server thread/INFO]: [36m[Spigotunlocked.com] - COSMO
[05:06:17] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.[0m
[05:06:17] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs[0m
[05:06:17] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens[0m
[05:06:17] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[05:06:17] [Server thread/INFO]: [MCPets] : Language file reloaded.
[05:06:17] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[05:06:17] [Server thread/INFO]: [0;34;1mLoading pets... [m
[05:06:17] [Server thread/INFO]: [0;37;22m- lion loaded succesfully.[m
[05:06:17] [Server thread/INFO]: [MCPets] : 1 pets registered successfully !
[05:06:17] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[05:06:17] [Server thread/INFO]: [MCPets] MySQL is disabled. Flat support will be used.
[05:06:17] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[05:06:17] [Server thread/INFO]: Plugin made by Nocsy
[05:06:17] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[05:06:17] [Server thread/INFO]: -=- Launching Flags -=-
[05:06:17] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[05:06:17] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[05:06:17] [Server thread/INFO]: 2 flags launched.
[05:06:17] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[05:06:17] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[05:06:17] [Server thread/INFO]: Done (27.040s)! For help, type "help"
[05:06:17] [Craft Scheduler Thread - 1/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[05:06:17] [Craft Scheduler Thread - 1/INFO]: [ItemJoin] 1 Custom item(s) loaded!
[05:06:17] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;1mStarting Regions Handler v1.1 addon.[m
[05:06:17] [Craft Scheduler Thread - 5/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[05:06:17] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;33;1mStarting WorldGuard Regions v1.0 addon.[m
[05:06:17] [Server thread/WARN]: [PlayMoreSounds] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[05:06:17] [Craft Scheduler Thread - 5/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[05:06:17] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[05:06:17] [Craft Scheduler Thread - 9/INFO]: §6Fetching version information...
[05:06:17] [Craft Scheduler Thread - 7/INFO]: [DecentHolograms] Loading holograms...
[05:06:17] [Craft Scheduler Thread - 0/INFO]: [RealisticSurvival] §fYou are running the latest version
[05:06:18] [Server thread/INFO]: [SuperiorSkyblock2] Using LuckPerms as a permissions provider.
[05:06:18] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of vanish status of players.
[05:06:18] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of afk status of players.
[05:06:18] [Server thread/INFO]: [SuperiorSkyblock2] Using Vault as an economy provider.
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superior [2023.2]
[05:06:18] [Server thread/INFO]: [SuperiorSkyblock2] Using PlaceholderAPI for placeholders support.
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [1m[36m[Importing models][0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [36mImporting naga.bbmodel.[0m
[05:06:18] [Server thread/INFO]: [RealisticSurvival] §fDetected §ePlaceholderAPI§f. Enabling integration!
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rsv [1.0.0]
[05:06:18] [Craft Scheduler Thread - 7/INFO]: [DecentHolograms] Loaded 48 holograms!
[05:06:18] [Craft Scheduler Thread - 13/WARN]: [ModelEngine] [A] [33m--Warning: The cube [34mfins[33m in bone [34mfins2[33m has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 20.0 ][0m
[05:06:18] [Craft Scheduler Thread - 13/WARN]: [ModelEngine] [A] [33m--Warning: Missing hitbox.[0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [36mImporting pirate.bbmodel.[0m
[05:06:18] [Craft Scheduler Thread - 14/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[05:06:18] [Craft Scheduler Thread - 0/INFO]: [0;32;1mCrop Replace[0;30;1m » [0;37;22mAn update is available! Get it here:[m
[05:06:18] [Craft Scheduler Thread - 0/INFO]: [0;32;1mCrop Replace[0;30;1m » [0;37;22mhttps://buildmodeone.com/cropReplace[m
[05:06:18] [Craft Scheduler Thread - 7/INFO]: [AnimatedScoreboard] Checking for an update!
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [36mImporting wolf.bbmodel.[0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [1m[35m[Generating assets][0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [35mGenerating naga.[0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [35mGenerating pirate.[0m
[05:06:18] [Craft Scheduler Thread - 3/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[05:06:18] [Craft Scheduler Thread - 7/INFO]: [AnimatedScoreboard] You are 3 versions behind! Get AnimatedScoreboard(v0.3.0) at:
[05:06:18] [Craft Scheduler Thread - 7/INFO]: [AnimatedScoreboard] https://www.spigotmc.org/resources/20848
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [35mGenerating wolf.[0m
[05:06:18] [Craft Scheduler Thread - 10/INFO]: [AureliumSkills] New update available! You are on version Beta 1.3.12, latest version is Beta 1.3.21
[05:06:18] [Craft Scheduler Thread - 10/INFO]: [AureliumSkills] Download it on Spigot:
[05:06:18] [Craft Scheduler Thread - 10/INFO]: [AureliumSkills] https://spigotmc.org/resources/81069
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [0m
[05:06:18] [Craft Scheduler Thread - 13/INFO]: [ModelEngine] [A] [38;5;46mResource pack zipped.[0m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [ItemJoin] Your current version: v5.2.5-SNAPSHOT[m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [ItemJoin] This SNAPSHOT is outdated and a release version is now available.[m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [ItemJoin] A new version is available: v6.0.1-RELEASE[m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [ItemJoin] Get it from: https://github.com/RockinChaos/itemjoin/releases/latest[m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [ItemJoin] If you wish to auto update, please type /ItemJoin Upgrade[m
[05:06:18] [Server thread/INFO]: [Citizens] Loaded 68 NPCs.
[05:06:18] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Checking dependencies...[m
[05:06:18] [Server thread/INFO]: [0;33;22m[[0;36;22mBlockRegen[0;33;22m] [m[m[0;37;22mINFO: Starting auto-save.. with an interval of 600 seconds.[m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [Vault] Checking for Updates ...
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.3.3]
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[05:06:18] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.0]
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: world [1.2.1]
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.2]
[05:06:18] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.3.86 which is not a depend or softdepend of this plugin.
[05:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[05:06:18] [Server thread/INFO]: [0;32;1m8 placeholder hook(s) registered! [0;33;22m6 placeholder hook(s) have an update available.[m
[05:06:18] [Craft Scheduler Thread - 2/INFO]: [Vault] No new version available
[05:06:18] [Craft Scheduler Thread - 9/WARN]: §4You're §c69 §4EssentialsX dev build(s) out of date!
[05:06:18] [Craft Scheduler Thread - 9/WARN]: §4Download it here:§c https://essentialsx.net/downloads.html
[05:21:17] [Craft Scheduler Thread - 16/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[05:36:17] [Craft Scheduler Thread - 18/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[05:36:17] [Craft Scheduler Thread - 17/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[05:51:17] [Craft Scheduler Thread - 19/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[06:06:17] [Craft Scheduler Thread - 19/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[06:06:17] [Craft Scheduler Thread - 22/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[06:06:18] [Craft Scheduler Thread - 3/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[06:21:17] [Craft Scheduler Thread - 19/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[06:36:17] [Craft Scheduler Thread - 25/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[06:36:17] [Craft Scheduler Thread - 21/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[06:51:17] [Craft Scheduler Thread - 28/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:06:17] [Craft Scheduler Thread - 28/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[07:06:17] [Craft Scheduler Thread - 30/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:06:18] [Craft Scheduler Thread - 18/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[07:21:17] [Craft Scheduler Thread - 18/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:36:17] [Craft Scheduler Thread - 28/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:36:17] [Craft Scheduler Thread - 18/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[07:51:17] [Craft Scheduler Thread - 25/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:06:17] [Craft Scheduler Thread - 30/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:06:17] [Craft Scheduler Thread - 34/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[08:06:18] [Craft Scheduler Thread - 18/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[08:21:17] [Craft Scheduler Thread - 18/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:36:17] [Craft Scheduler Thread - 34/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:36:17] [Craft Scheduler Thread - 38/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[08:51:17] [Craft Scheduler Thread - 43/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:06:17] [Craft Scheduler Thread - 43/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[09:06:17] [Craft Scheduler Thread - 39/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:06:18] [Craft Scheduler Thread - 42/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[09:21:17] [Craft Scheduler Thread - 45/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:28:54] [User Authenticator #1/INFO]: UUID of player Mesterbazsika is 5e230d9e-c15d-41e9-b50a-885853181be3
[09:28:55] [Server thread/WARN]: [PlayMoreSounds] Loaded class com.sk89q.worldedit.bukkit.BukkitAdapter from WorldEdit v7.2.15+6463-5ca4dff which is not a depend or softdepend of this plugin.
[09:28:55] [Server thread/INFO]: Mesterbazsika[/109.61.1.161:59609] logged in with entity id 64846 at ([Skyblock]599.1758230121562, 101.0, 4.176348261801377)
[09:28:55] [Server thread/INFO]: [38;2;204;114;10m⚓ [38;2;252;134;0m[21mMesterbazsika [38;2;204;114;10mhas connected.[m
[09:29:15] [Server thread/INFO]: Mesterbazsika issued server command: /hub
[09:29:18] [Server thread/INFO]: Mesterbazsika issued server command: /spawn
[09:29:21] [Server thread/INFO]: Mesterbazsika issued server command: /spawn
[09:29:43] [Server thread/INFO]: Mesterbazsika issued server command: /skills
[09:29:48] [Server thread/INFO]: Mesterbazsika issued server command: /skills
[09:29:55] [Server thread/INFO]: Mesterbazsika issued server command: /butcher
[09:29:55] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.girl_butcher to Mesterbazsika
[09:30:00] [Server thread/INFO]: Mesterbazsika issued server command: /flors
[09:30:00] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_flower to Mesterbazsika
[09:30:03] [Server thread/INFO]: Mesterbazsika issued server command: /builder
[09:30:03] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_builder to Mesterbazsika
[09:30:06] [Server thread/INFO]: Mesterbazsika issued server command: /woodcutter
[09:30:06] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_wood to Mesterbazsika
[09:30:28] [Server thread/INFO]: Created a User for §6§l⚓ PIRATE ▪ (0c855e1e-b685-2a03-af7d-a5eea8f94dfe) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[09:30:54] [Server thread/INFO]: Mesterbazsika issued server command: /op
[09:33:35] [Server thread/INFO]: Incorrect argument for command
[09:33:35] [Server thread/INFO]: ...p /skills lang<--[HERE]
[09:33:55] [Server thread/INFO]: Made Mesterbazsika a server operator
[09:34:10] [Server thread/INFO]: Mesterbazsika issued server command: /skills lang
[09:34:12] [Server thread/INFO]: Mesterbazsika issued server command: /skills lang hu
[09:36:17] [Craft Scheduler Thread - 53/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[09:36:17] [Craft Scheduler Thread - 55/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[09:37:33] [Server thread/INFO]: Mesterbazsika issued server command: /guide
[09:37:33] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_guides to Mesterbazsika
[09:37:39] [Server thread/INFO]: Mesterbazsika issued server command: /mysterypirate
[09:37:39] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_mystery to Mesterbazsika
[09:37:40] [Server thread/INFO]: Mesterbazsika issued server command: /spawners
[09:37:44] [Server thread/INFO]: Mesterbazsika issued server command: /mysterypirate
[09:37:44] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_mystery to Mesterbazsika
[09:37:45] [Server thread/INFO]: Mesterbazsika issued server command: /spawneggs
[09:37:46] [Server thread/INFO]: Mesterbazsika issued server command: /mysterypirate
[09:37:46] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_mystery to Mesterbazsika
[09:37:47] [Server thread/INFO]: Mesterbazsika issued server command: /rareitems
[09:38:13] [Server thread/INFO]: Mesterbazsika issued server command: /st play tutorial
[09:39:23] [Server thread/INFO]: [0;33;22m[[0;34;1mPlayMoreSounds[0;33;22m] [0;37;22mPlaying the sound [0;37;1mskyblock.sounds.intro[0;37;22m with volume [0;37;1m10.0[0;37;22m and pitch [0;37;1m1.0[0;37;22m to [0;37;1mMesterbazsika[0;37;22m.[m
[09:40:00] [Server thread/INFO]: Mesterbazsika issued server command: /auctions
[09:40:01] [Server thread/INFO]: Mesterbazsika issued server command: /auctions
[09:40:16] [Server thread/INFO]: Mesterbazsika issued server command: /goldexchanger
[09:40:16] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_gold to Mesterbazsika
[09:41:54] [Server thread/INFO]: Created a User for §6§l⚓ PIRATE ▪ (41cf9e8c-a1a4-27b7-b81d-4781fa9100b3) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[09:42:33] [Server thread/INFO]: Mesterbazsika issued server command: /blacksmith
[09:42:33] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.male_smith to Mesterbazsika
[09:42:54] [Server thread/INFO]: Created a User for §6§l⚓ PIRATE ▪ (52e01474-8a28-250d-9d7d-ece1a41277f2) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[09:48:34] [Server thread/INFO]: Mesterbazsika issued server command: /animatedsb
[09:48:39] [Server thread/INFO]: Mesterbazsika issued server command: /asb reload
[09:49:25] [Server thread/INFO]: Created a User for CIT-c4e03214fc73 (c4e03214-fc73-25ea-a2e3-aff7ea53a466) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[09:50:33] [Server thread/INFO]: Mesterbazsika issued server command: /asb reload
[09:51:10] [Server thread/INFO]: Mesterbazsika issued server command: /is
[09:51:17] [Craft Scheduler Thread - 60/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[09:52:05] [Server thread/INFO]: Mesterbazsika issued server command: /spawn
[09:52:52] [Server thread/INFO]: Mesterbazsika issued server command: /is
[09:55:27] [Server thread/INFO]: Mesterbazsika issued server command: /shop
[09:55:30] [Server thread/INFO]: Mesterbazsika issued server command: /spawn
[09:55:33] [Server thread/INFO]: Mesterbazsika issued server command: /butcher
[09:55:33] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.girl_butcher to Mesterbazsika
[09:55:34] [Server thread/INFO]: CONSOLE issued server command: /give Mesterbazsika CHICKEN 1
[09:55:34] [Server thread/INFO]: [0;33;22mGiving[0;31;1m 1 [0;33;22mof[0;31;1m chicken [0;33;22mto[0;31;1m Mesterbazsika[0;33;22m.[m
[09:55:34] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.buy_girl to Mesterbazsika
[09:55:36] [Server thread/INFO]: CONSOLE issued server command: /give Mesterbazsika COOKED_BEEF 1
[09:55:36] [Server thread/INFO]: [0;33;22mGiving[0;31;1m 1 [0;33;22mof[0;31;1m cooked beef [0;33;22mto[0;31;1m Mesterbazsika[0;33;22m.[m
[09:55:36] [Server thread/INFO]: Played sound minecraft:skyblock.sounds.buy_girl to Mesterbazsika
[09:56:11] [Server thread/INFO]: Mesterbazsika issued server command: /is
[09:58:34] [Server thread/INFO]: Mesterbazsika issued server command: /asb reload
[09:59:53] [Server thread/INFO]: Mesterbazsika issued server command: /asb reload
[10:00:13] [Server thread/INFO]: Mesterbazsika issued server command: /asb reload
[10:01:25] [Server thread/INFO]: Mesterbazsika issued server command: /mv tp itroworl
[10:01:26] [Server thread/INFO]: Mesterbazsika issued server command: /mv tp itroworld
[10:01:30] [Server thread/INFO]: Mesterbazsika issued server command: /mv tp introworld
[10:01:50] [Server thread/INFO]: Created a User for §e§l⚓ PIRATE ▪ (ea756f54-a4c0-2962-b837-1345d250069a) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[10:02:08] [Server thread/INFO]: Named entity EntityZombieNPC['⚓ PIRATE'/1748, l='ServerLevel[IntroWorld]', x=9.86, y=55.00, z=-2.79] died: ⚓ PIRATE was slain by Mesterbazsika
[10:02:22] [Server thread/INFO]: Created a User for §6§l⚓ PIRATE ▪ (49a88586-9c25-2b28-b73b-c5983f6c63af) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[10:02:34] [Server thread/INFO]: Created a User for §a§l⚓ CAPTAIN ▪ (5aedf749-c686-2eb0-b064-ba05679db009) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[10:03:50] [Server thread/INFO]: Mesterbazsika issued server command: /gmc
[10:03:55] [Server thread/INFO]: Created a User for CIT-1edeb9f3ec2d (1edeb9f3-ec2d-21a1-98bc-73d78dd3f9a3) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[10:04:13] [Server thread/INFO]: Mesterbazsika issued server command: /warp
[10:05:53] [Server thread/INFO]: Mesterbazsika issued server command: /spawn
[10:06:05] [Server thread/INFO]: Mesterbazsika issued server command: /asb reload
[10:06:17] [Craft Scheduler Thread - 60/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[10:06:17] [Craft Scheduler Thread - 59/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[10:06:18] [Craft Scheduler Thread - 65/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[10:06:38] [Server thread/INFO]: Mesterbazsika lost connection: Disconnected
[10:06:38] [Server thread/INFO]: ⚙ Mesterbazsika has been disconnected.
[10:21:17] [Craft Scheduler Thread - 69/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:36:17] [Craft Scheduler Thread - 60/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:36:17] [Craft Scheduler Thread - 69/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[10:51:17] [Craft Scheduler Thread - 60/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[11:06:17] [Craft Scheduler Thread - 59/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[11:06:17] [Craft Scheduler Thread - 69/INFO]: [Vault] Checking for Updates ...
[11:06:17] [Craft Scheduler Thread - 72/INFO]: [AnimatedScoreboard] Checking for an update!
[11:06:17] [Craft Scheduler Thread - 71/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[11:06:17] [Craft Scheduler Thread - 69/INFO]: [Vault] No new version available
[11:06:18] [Craft Scheduler Thread - 54/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[11:06:18] [Craft Scheduler Thread - 72/INFO]: [AnimatedScoreboard] You are 3 versions behind! Get AnimatedScoreboard(v0.3.0) at:
[11:06:18] [Craft Scheduler Thread - 72/INFO]: [AnimatedScoreboard] https://www.spigotmc.org/resources/20848
[11:21:17] [Craft Scheduler Thread - 67/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[11:36:17] [Craft Scheduler Thread - 67/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[11:36:17] [Craft Scheduler Thread - 54/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[11:51:17] [Craft Scheduler Thread - 72/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[12:06:17] [Craft Scheduler Thread - 72/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[12:06:17] [Craft Scheduler Thread - 60/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[12:06:18] [Craft Scheduler Thread - 67/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[12:21:17] [Craft Scheduler Thread - 78/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[12:36:17] [Craft Scheduler Thread - 72/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[12:36:17] [Craft Scheduler Thread - 67/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[12:51:17] [Craft Scheduler Thread - 79/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[13:06:17] [Craft Scheduler Thread - 76/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[13:06:17] [Craft Scheduler Thread - 75/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[13:06:18] [Craft Scheduler Thread - 78/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[13:21:17] [Craft Scheduler Thread - 83/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[13:36:17] [Craft Scheduler Thread - 78/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[13:36:17] [Craft Scheduler Thread - 83/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[13:51:17] [Craft Scheduler Thread - 85/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[14:03:12] [User Authenticator #2/INFO]: UUID of player Mesterbazsika is 5e230d9e-c15d-41e9-b50a-885853181be3
[14:03:12] [Server thread/INFO]: Mesterbazsika[/109.61.1.161:62504] logged in with entity id 132779 at ([MainWorld]251.30818155888528, 106.0, 177.49074516687136)
[14:03:12] [Server thread/INFO]: [38;2;204;114;10m⚓ [38;2;252;134;0m[21mMesterbazsika [38;2;204;114;10mhas connected.[m
[14:03:29] [Server thread/INFO]: Created a User for §6§l⚓ PIRATE ▪ (0c855e1e-b685-2a03-af7d-a5eea8f94dfe) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[14:04:22] [Server thread/INFO]: Mesterbazsika issued server command: /gmc
[14:04:41] [Server thread/INFO]: Mesterbazsika issued server command: /sentinel
[14:04:43] [Server thread/INFO]: Mesterbazsika issued server command: /sentinel help
[14:04:47] [Server thread/INFO]: Mesterbazsika issued server command: /sentinel reload
[14:05:04] [Server thread/INFO]: Mesterbazsika issued server command: /gms
[14:05:26] [Server thread/INFO]: Mesterbazsika issued server command: /gmc
[14:06:17] [Craft Scheduler Thread - 85/INFO]: [EpicPluginLib] EpicPluginLib v2.5 is available. Please update.[m
[14:06:17] [Craft Scheduler Thread - 91/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[14:06:18] [Craft Scheduler Thread - 92/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[14:06:41] [Server thread/INFO]: Mesterbazsika issued server command: /kit
[14:06:48] [Server thread/INFO]: Mesterbazsika issued server command: /ms
[14:06:50] [Server thread/INFO]: Mesterbazsika issued server command: /gms
[14:07:03] [Server thread/INFO]: Created a User for §9§l⚓ HUNTER ▪ (f663d8af-5b87-21f4-8ffc-dafd35b1e459) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[14:07:56] [Server thread/INFO]: Named entity EntityZoglinNPC['⚓ MINES GUARDIAN ▪'/1808, l='ServerLevel[MainWorld]', x=222.93, y=101.00, z=274.23] died: ⚓ MINES GUARDIAN ▪ was slain by Mesterbazsika
[14:08:18] [Server thread/INFO]: Named entity EntityZoglinNPC['⚓ MINES GUARDIAN ▪'/1807, l='ServerLevel[MainWorld]', x=236.51, y=99.00, z=289.25] died: ⚓ MINES GUARDIAN ▪ was slain by Mesterbazsika
[14:08:18] [Server thread/ERROR]: Failed to handle packet net.minecraft.network.protocol.game.PacketPlayInUseEntity@287f250e, suppressing error
java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.Entity.getVelocity()" because the return value of "net.citizensnpcs.api.npc.NPC.getEntity()" is null
at net.citizensnpcs.util.NMS.callKnockbackEvent(NMS.java:124) ~[?:?]
at net.citizensnpcs.nms.v1_19_R3.entity.ZoglinController$EntityZoglinNPC.q(ZoglinController.java:144) ~[?:?]
at net.minecraft.world.entity.player.EntityHuman.d(EntityHuman.java:1278) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.level.EntityPlayer.d(EntityPlayer.java:1918) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.network.PlayerConnection$4.a(PlayerConnection.java:2483) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInUseEntity$1.a(SourceFile:166) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInUseEntity.a(SourceFile:66) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2408) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInUseEntity.a(SourceFile:53) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInUseEntity.a(SourceFile:13) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$0(PlayerConnectionUtils.java:31) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:156) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1154) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:130) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1133) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1126) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.br(SourceFile:115) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1109) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1021) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:08:42] [Server thread/INFO]: Mesterbazsika issued server command: /is panel
[14:08:49] [Server thread/INFO]: Mesterbazsika issued server command: /is panel
[14:08:53] [Server thread/INFO]: Mesterbazsika issued server command: /is panel
[14:11:14] [Server thread/INFO]: Created a User for §c§l⚓ CANNIBAL ▪ (6910036c-848b-259f-a5f5-d3fe60c350ea) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[14:11:58] [Server thread/INFO]: Created a User for thief (e12e46d1-2638-20c3-8c0d-423e121535bb) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[14:12:03] [Server thread/ERROR]: Could not pass event PlayerMoveEvent to Sentinel v2.7.3-SNAPSHOT (build 505)
org.bukkit.event.EventException: null
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:1348) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInFlying.a(SourceFile:114) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInFlying$PacketPlayInPosition.a(SourceFile:42) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$0(PlayerConnectionUtils.java:31) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:156) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1154) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:130) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1133) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1126) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:139) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1110) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1021) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NoSuchMethodError: 'void net.citizensnpcs.api.ai.speech.SpeechController.speak(net.citizensnpcs.api.ai.speech.SpeechContext, java.lang.String)'
at org.mcmonkey.sentinel.SentinelTrait.sayTo(SentinelTrait.java:1850) ~[?:?]
at org.mcmonkey.sentinel.SentinelTrait.onPlayerMovesInRange(SentinelTrait.java:1897) ~[?:?]
at org.mcmonkey.sentinel.SentinelEventHandler.onPlayerMovesInRange(SentinelEventHandler.java:408) ~[?:?]
at jdk.internal.reflect.GeneratedMethodAccessor137.invoke(Unknown Source) ~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
... 20 more
[14:12:17] [Server thread/INFO]: Mesterbazsika issued server command: /npc reload
[14:12:24] [Server thread/INFO]: Mesterbazsika issued server command: /npc2 reload
[14:12:30] [Server thread/INFO]: Mesterbazsika issued server command: /citizens reload
[14:12:43] [Server thread/INFO]: Created a User for CIT-5d0debd18ce0 (5d0debd1-8ce0-2160-9dd2-90eedd0ee3e2) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC
[14:12:43] [Server thread/ERROR]: Could not pass event PlayerMoveEvent to Sentinel v2.7.3-SNAPSHOT (build 505)
org.bukkit.event.EventException: null
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:1348) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInFlying.a(SourceFile:114) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInFlying$PacketPlayInPositionLook.a(SourceFile:16) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$0(PlayerConnectionUtils.java:31) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:156) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1154) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:130) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1133) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1126) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:139) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1110) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1021) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NoSuchMethodError: 'void net.citizensnpcs.api.ai.speech.SpeechController.speak(net.citizensnpcs.api.ai.speech.SpeechContext, java.lang.String)'
at org.mcmonkey.sentinel.SentinelTrait.sayTo(SentinelTrait.java:1850) ~[?:?]
at org.mcmonkey.sentinel.SentinelTrait.onPlayerMovesInRange(SentinelTrait.java:1897) ~[?:?]
at org.mcmonkey.sentinel.SentinelEventHandler.onPlayerMovesInRange(SentinelEventHandler.java:408) ~[?:?]
at jdk.internal.reflect.GeneratedMethodAccessor137.invoke(Unknown Source) ~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
... 20 more
[14:12:51] [Server thread/ERROR]: Could not pass event PlayerMoveEvent to Sentinel v2.7.3-SNAPSHOT (build 505)
org.bukkit.event.EventException: null
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:1348) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInFlying.a(SourceFile:114) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.game.PacketPlayInFlying$PacketPlayInPosition.a(SourceFile:42) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$0(PlayerConnectionUtils.java:31) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:156) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1154) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:1) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.x(SourceFile:130) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.bi(MinecraftServer.java:1133) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1126) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:139) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.i_(MinecraftServer.java:1110) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1021) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3699-Spigot-6ad4b93-f92c945]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NoSuchMethodError: 'void net.citizensnpcs.api.ai.speech.SpeechController.speak(net.citizensnpcs.api.ai.speech.SpeechContext, java.lang.String)'
at org.mcmonkey.sentinel.SentinelTrait.sayTo(SentinelTrait.java:1850) ~[?:?]
at org.mcmonkey.sentinel.SentinelTrait.onPlayerMovesInRange(SentinelTrait.java:1897) ~[?:?]
at org.mcmonkey.sentinel.SentinelEventHandler.onPlayerMovesInRange(SentinelEventHandler.java:408) ~[?:?]
at jdk.internal.reflect.GeneratedMethodAccessor137.invoke(Unknown Source) ~[?:?]
at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
... 20 more
[14:12:54] [Server thread/INFO]: Created a User for CIT-84108b6c0a21 (84108b6c-0a21-2e3a-a8a5-3fee5a4e6f51) for non Bukkit type: net.citizensnpcs.nms.v1_19_R3.entity.EntityHumanNPC$PlayerNPC