Paste #108013: for my beloved fullwall

Date: 2023/03/28 06:12:34 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[13:11:30] [Server thread/INFO]: Starting minecraft server version 1.8.8
[13:11:30] [Server thread/INFO]: Loading properties
[13:11:30] [Server thread/INFO]: Default game type: SURVIVAL
[13:11:31] [Server thread/INFO]: This server is running WineSpigot version 1_8_R3 (MC: 1.8.8) (Implementing API version 1.8.8-R0.2-SNAPSHOT)
[13:11:31] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:11:31] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:11:31] [Server thread/INFO]: Spigot Timings: false - Verbose: true - Interval: 5m - Length: 60m
[13:11:31] [Server thread/INFO]: Debug logging is disabled
[13:11:31] [Server thread/INFO]: Data value allowed items: 
[13:11:31] [Server thread/INFO]: Disabling player interaction limiter, your server may be more vulnerable to malicious users
[13:11:31] [Server thread/INFO]: Generating keypair
[13:11:31] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:20003
[13:11:31] [Server thread/INFO]: Using epoll channel type
[13:11:31] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[13:11:31] [Server thread/ERROR]: [Minecraft] Could not load 'plugins/DeluxeMenus-1.13.7-Release.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: com/extendedclip/deluxemenus/DeluxeMenus has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:136) ~[server.jar:1_8_R3]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:346) ~[server.jar:1_8_R3]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:262) [server.jar:1_8_R3]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugins(CraftServer.java:295) [server.jar:1_8_R3]
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:202) [server.jar:1_8_R3]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:637) [server.jar:1_8_R3]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_312]
Caused by: java.lang.UnsupportedClassVersionError: com/extendedclip/deluxemenus/DeluxeMenus has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_312]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:756) ~[?:1.8.0_312]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_312]
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:473) ~[?:1.8.0_312]
    at java.net.URLClassLoader.access$100(URLClassLoader.java:74) ~[?:1.8.0_312]
    at java.net.URLClassLoader$1.run(URLClassLoader.java:369) ~[?:1.8.0_312]
    at java.net.URLClassLoader$1.run(URLClassLoader.java:363) ~[?:1.8.0_312]
    at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_312]
    at java.net.URLClassLoader.findClass(URLClassLoader.java:362) ~[?:1.8.0_312]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:102) ~[server.jar:1_8_R3]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:87) ~[server.jar:1_8_R3]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_312]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_312]
    at java.lang.Class.forName0(Native Method) ~[?:1.8.0_312]
    at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_312]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:65) ~[server.jar:1_8_R3]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:132) ~[server.jar:1_8_R3]
    ... 6 more
[13:11:32] [Server thread/INFO]: [net.ivenomx.slotbot.SlotBot] [SlotBot] Loading SlotBot v1.1.8
[13:11:32] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Loading PlaceholderAPI v2.11.3
[13:11:32] [Server thread/INFO]: [net.splodgebox.eliteenchantments.EliteEnchantments] [EliteEnchantments] Loading EliteEnchantments v2.2.5
[13:11:32] [Server thread/INFO]: [me.f64.playtime.Main] [PlayTime] Loading PlayTime v3.6
[13:11:32] [Server thread/INFO]: [me.kneesnap.CommandAliases.CommandAliases] [CommandAliases] Loading CommandAliases v1.1.0
[13:11:32] [Server thread/INFO]: [net.splodgebox.buycraftconfirm.BuycraftConfirm] [BuycraftConfirm] Loading BuycraftConfirm v1.0.6
[13:11:32] [Server thread/INFO]: [me.filoghost.holographicdisplays.plugin.HolographicDisplays] [HolographicDisplays] Loading HolographicDisplays v3.0.1
[13:11:32] [Server thread/INFO]: [main.XpShop] [KushXPShop] Loading KushXPShop v0.1
[13:11:32] [Server thread/INFO]: [me.krizzdawg.enfrevive.Main] [enfRevive] Loading enfRevive v1.0
[13:11:32] [Server thread/INFO]: [org.inventivetalent.particle.ParticlePlugin] [ParticleLIB] Loading ParticleLIB v2.1.1
[13:11:32] [Server thread/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] Loading ViaVersion v4.6.1
[13:11:32] [Server thread/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] ViaVersion 4.6.1 is now loaded. Registering protocol transformers and injecting...
[13:11:32] [Via-Mappingloader-0/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] Loading block connection mappings ...
[13:11:32] [Server thread/INFO]: [net.shortninja.staffplus.StaffPlus] [StaffPlus] Loading StaffPlus v3.3.12.0
[13:11:32] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: staffplus [3.3.12.0]
[13:11:32] [Server thread/INFO]: [Minecraft] Hooked into PlaceholderAPI 2.11.3
[13:11:32] [Server thread/INFO]: [me.liwk.karhu.api.KarhuAPI] [KarhuAPI] Loading KarhuAPI v1.0
[13:11:32] [Server thread/INFO]: [me.zenix.cosmicfly.Core] [CosmicFly] Loading CosmicFly v1.0.2
[13:11:32] [Server thread/INFO]: [net.coreprotect.CoreProtect] [CoreProtect] Loading CoreProtect v2.12.0
[13:11:32] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Loading LuckPerms v5.4.40
[13:11:32] [Via-Mappingloader-0/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[13:11:32] [Server thread/INFO]: [instantsponge.instantsponge.InstantSponge] [InstantSponge] Loading InstantSponge v1.0-SNAPSHOT
[13:11:32] [Server thread/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Loading KarhuLoader v1.2
[13:11:32] [Server thread/INFO]: [com.shardpvp.sgiveall.Main] [ShardGiveAll] Loading ShardGiveAll v1.0-SNAPSHOT
[13:11:32] [Server thread/INFO]: [me.lucko.spark.bukkit.BukkitSparkPlugin] [spark] Loading spark v1.10.34
[13:11:32] [Server thread/INFO]: [me.randomhashtags.cosmicvaults.CosmicVaults] [CosmicVaults] Loading CosmicVaults v3.0.1
[13:11:32] [Server thread/INFO]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Loading BuycraftX v12.0.8
[13:11:32] [Server thread/INFO]: [net.splodgebox.elitelootbox.EliteLootbox] [EliteLootbox] Loading EliteLootbox v2.3.3
[13:11:32] [Server thread/INFO]: [me.galacticpvp.galacticweeklybundles.GalacticWeeklyBundlePlugin] [GalacticWeeklyBundles] Loading GalacticWeeklyBundles v1.0
[13:11:32] [Server thread/INFO]: [com.onarandombox.MultiverseCore.MultiverseCore] [Multiverse-Core] Loading Multiverse-Core v2.5-b699
[13:11:32] [Server thread/INFO]: [com.boydti.fawe.bukkit.BukkitMain] [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[13:11:32] [Server thread/INFO]: [me.urbae.rankannouncer.RankAnnouncerPlugin] [RankAnnouncer] Loading RankAnnouncer v1.0.2
[13:11:32] [Server thread/INFO]: [net.splodgebox.eliteenchantskits.EliteEnchantsKits] [EliteEnchantmentsKits] Loading EliteEnchantmentsKits v2.0.1
[13:11:32] [Server thread/INFO]: [com.vk2gpz.flatbedrock.FlatBedrock] [FlatBedrock] Loading FlatBedrock v3.2.1
[13:11:32] [Server thread/INFO]: [com.rezzedup.opguard.OpGuard] [OpGuard] Loading OpGuard v3.2.5
[13:11:32] [Server thread/INFO]: [net.milkbowl.vault.Vault] [Vault] Loading Vault v1.7.3-b131
[13:11:32] [Server thread/INFO]: [de.gerrygames.viarewind.BukkitPlugin] [ViaRewind] Loading ViaRewind v2.0.4-SNAPSHOT
[13:11:32] [Server thread/INFO]: [me.badbones69.blockparticles.BlockParticles] [BlockParticles] Loading BlockParticles v1.11.1-RELEASE
[13:11:32] [Server thread/INFO]: [com.sectorgamer.sharkiller.AutoAnnouncer.Announcer] [AutoAnnouncer] Loading AutoAnnouncer v1.7-03.23
[13:11:32] [Server thread/INFO]: [me.fatpigsarefat.moneypouch.Main] [MoneyPouch] Loading MoneyPouch v2.1.10
[13:11:32] [Server thread/INFO]: [me.bournedev.ms.Core] [MysterySpawners] Loading MysterySpawners v3.4
[13:11:32] [Server thread/INFO]: [me.shin1gamix.voidchest.VoidChestPlugin] [VoidChest-1.9.0] Loading VoidChest v1.9.0
[13:11:32] [Server thread/INFO]: [me.zeuss.guibalance.Main] [GuiBalance] Loading GuiBalance v1.4
[13:11:32] [Server thread/INFO]: [com.sk89q.worldedit.bukkit.WorldEditPlugin] [WorldEdit] Loading WorldEdit v6.1.7;dd00bb1
[13:11:32] [Server thread/INFO]: [com.earth2me.essentials.Essentials] [Essentials] Loading Essentials v2.19.7
[13:11:32] [Server thread/INFO]: [com.technovision.jackpot.Jackpot] [Jackpot] Loading Jackpot v1.0
[13:11:32] [Server thread/INFO]: [com.comphenix.protocol.ProtocolLib] [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b606
[13:11:33] [Server thread/INFO]: [me.clip.deluxechat.DeluxeChat] [DeluxeChat] Loading DeluxeChat v1.16.2
[13:11:33] [Server thread/INFO]: [n3kas.showcase.Core] [Showcase] Loading Showcase v1.9.8
[13:11:33] [Server thread/INFO]: [me.krizzdawg.cosmicwarps.CosmicWarpsPlugin] [CosmicWarps] Loading CosmicWarps v1.0
[13:11:33] [Server thread/INFO]: [gc.aah.Core] [AdvancedAuctionHouse] Loading AdvancedAuctionHouse v1.5.2
[13:11:33] [Server thread/INFO]: [me.neznamy.tab.platforms.bukkit.Main] [TAB] Loading TAB v3.1.5
[13:11:33] [Server thread/INFO]: [com.sk89q.worldguard.bukkit.WorldGuardPlugin] [WorldGuard] Loading WorldGuard v6.1
[13:11:33] [Server thread/INFO]: [eu.kennytv.maintenance.spigot.MaintenanceSpigotBase] [Maintenance] Loading Maintenance v4.0.1
[13:11:33] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loading CrazyEnvoys v1.4.17.3
[13:11:33] [Server thread/INFO]: [me.mraxetv.beastwithdraw.BeastWithdraw] [BeastWithdraw] Loading BeastWithdraw v2.7
[13:11:33] [Server thread/INFO]: [me.fromgate.messagefilter.MessageFilter] [MessageFilter] Loading MessageFilter v0.3.3
[13:11:33] [Server thread/INFO]: [com.earth2me.essentials.spawn.EssentialsSpawn] [EssentialsSpawn] Loading EssentialsSpawn v2.19.7
[13:11:33] [Server thread/INFO]: [it.ytnoos.lpx.BJ] [LPX] Loading LPX v3.2.4
[13:11:33] [Server thread/INFO]: [net.citizensnpcs.Citizens] [Citizens] Loading Citizens v2.0.31-SNAPSHOT (build 2981)
[13:11:33] [Server thread/INFO]: [com.mewin.WGRegionEvents.WGRegionEventsPlugin] [WGRegionEvents] Loading WGRegionEvents vS_Ryan
[13:11:33] [Server thread/INFO]: [me.PM2.AdvancedCrates.MonthlyCrate] [AdvancedCrates] Loading AdvancedCrates v3.8.8
[13:11:33] [Server thread/INFO]: [me.messageofdeath.commandnpc.CommandNPC] [CommandNPC] Loading CommandNPC v1.8.9
[13:11:33] [Server thread/INFO]: [com.keurig.combatlogger.CombatLogger] [CombatLogger] Loading CombatLogger v1.4.1
[13:11:33] [Server thread/INFO]: [com.massivecraft.factions.FactionsPlugin] [Factions] Loading Factions v1.6.9.5-4.1.0-RC
[13:11:33] [Server thread/INFO]: [com.vk2gpz.randomteleport.RandomTeleport] [RandomTeleport] Loading RandomTeleport v7.25.0
[13:11:33] [Server thread/INFO]: [me.sofocused.genbucket.main.GenBuckets] [GenBuckets] Loading GenBuckets v1.2
[13:11:33] [Server thread/INFO]: [net.splodgebox.elitepets.ElitePets] [ElitePets] Loading ElitePets v1.5.1
[13:11:33] [Server thread/INFO]: [me.darkknights22.wildpvp.WildPvP] [WildPvP] Loading WildPvP v1.0.8
[13:11:33] [Server thread/INFO]: [cc.javajobs.factionsbridge.BridgePlugin] [FactionsBridge] Loading FactionsBridge v1.3.8
[13:11:33] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] Loading SilkSpawners v7.3.0
[13:11:33] [Server thread/INFO]: [codes.biscuit.chunkbuster.ChunkBuster] [ChunkBuster] Loading ChunkBuster v1.2.5
[13:11:33] [Server thread/INFO]: [net.splodgebox.elitearmor.EliteArmor] [EliteArmor] Loading EliteArmor v6.6.5
[13:11:33] [Server thread/INFO]: [FactionsTopV5.FactionsTopPlugin] [FactionsTop] Loading FactionsTop v5.0.64
[13:11:33] [Server thread/INFO]: [net.splodgebox.elitebosses.EliteBosses] [EliteBosses] Loading EliteBosses v1.5.1
[13:11:33] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loading ShopGUIPlus v1.81.3
[13:11:33] [Server thread/INFO]: [net.splodgebox.elitemasks.EliteMasks] [EliteMasks] Loading EliteMasks v1.5.4
[13:11:33] [Server thread/INFO]: [net.brcdev.shopgui.bridge.silkspawners.ShopGuiBridgeSilkSpawnersPlugin] [ShopGUIPlusSilkSpawnersBridge] Loading ShopGUIPlusSilkSpawnersBridge v1.4.0
[13:11:33] [Server thread/INFO]: [FactionsTopChangeAnnouncer.FactionsTopChangeAnnouncerPlugin] [FactionsTopChangeAnnouncerV3] Loading FactionsTopChangeAnnouncerV3 v3.1.0
[13:11:33] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Enabling LuckPerms v5.4.40
[13:11:33] [Server thread/INFO]:         __    
[13:11:33] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[13:11:33] [Server thread/INFO]:   |___ |      Running on Bukkit - WineSpigot
[13:11:33] [Server thread/INFO]: 
[13:11:33] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Loading configuration...
[13:11:33] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Loading storage provider... [H2]
[13:11:34] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Loading internal permission managers...
[13:11:34] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Performing initial data load...
[13:11:34] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Successfully enabled. (took 1042ms)
[13:11:34] [Server thread/INFO]: [com.boydti.fawe.bukkit.BukkitMain] [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[13:11:34] [Server thread/INFO]: [com.vk2gpz.flatbedrock.FlatBedrock] [FlatBedrock] Enabling FlatBedrock v3.2.1
[13:11:34] [Server thread/INFO]: [Minecraft] FlatBedrock version 3.2.1 is Enabled
[13:11:34] [Server thread/INFO]: [net.milkbowl.vault.Vault] [Vault] Enabling Vault v1.7.3-b131
[13:11:34] [Server thread/INFO]: [net.milkbowl.vault.Vault] [Vault] [Economy] Essentials Economy found: Waiting
[13:11:34] [Server thread/INFO]: [net.milkbowl.vault.Vault] [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:11:34] [Server thread/INFO]: [net.milkbowl.vault.Vault] [Vault] Enabled Version 1.7.3-b131
[13:11:34] [Server thread/INFO]: [me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin] [LuckPerms] Registered Vault permission & chat hook.
[13:11:34] [Server thread/INFO]: [de.gerrygames.viarewind.BukkitPlugin] [ViaRewind] Enabling ViaRewind v2.0.4-SNAPSHOT
[13:11:34] [Server thread/INFO]: [com.comphenix.protocol.ProtocolLib] [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b606
[13:11:34] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[13:11:34] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[13:11:34] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[13:11:34] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[13:11:34] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[13:11:34] [Server thread/INFO]: [Minecraft] **** Beginning UUID conversion, this may take A LONG time ****
[13:11:34] [Server thread/INFO]: Preparing level "world"
[13:11:34] [Server thread/INFO]: [Minecraft] -------- World Settings For [world] --------
[13:11:34] [Server thread/INFO]: [Minecraft] Cactus Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Cane Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Melon Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Mushroom Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Pumpkin Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Sapling Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Wheat Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] NetherWart Growth Modifier: 100%
[13:11:34] [Server thread/INFO]: [Minecraft] Entity Activation Range: An 32 / Mo 32 / Mi 16
[13:11:34] [Server thread/INFO]: [Minecraft] Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[13:11:34] [Server thread/INFO]: [Minecraft] Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[13:11:34] [Server thread/INFO]: [Minecraft] Random Lighting Updates: false
[13:11:34] [Server thread/INFO]: [Minecraft] Structure Info Saving: true
[13:11:34] [Server thread/INFO]: [Minecraft] Sending up to 10 chunks per packet
[13:11:34] [Server thread/INFO]: [Minecraft] Max Entity Collisions: 0
[13:11:34] [Server thread/INFO]: [Minecraft] Custom Map Seeds:  Village: 10387312 Feature: 14357617
[13:11:34] [Server thread/INFO]: [Minecraft] Max TNT Explosions: 999999999
[13:11:34] [Server thread/INFO]: [Minecraft] Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:11:34] [Server thread/INFO]: [Minecraft] Mob Spawn Range: 4
[13:11:34] [Server thread/INFO]: [Minecraft] Nerfing mobs spawned from spawners: true
[13:11:34] [Server thread/INFO]: [Minecraft] Anti X-Ray: false
[13:11:34] [Server thread/INFO]: [Minecraft]     Engine Mode: 1
[13:11:34] [Server thread/INFO]: [Minecraft]     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[13:11:34] [Server thread/INFO]: [Minecraft]     Replace Blocks: [1, 5]
[13:11:34] [Server thread/INFO]: [Minecraft] Chunks to Grow per Tick: 300
[13:11:34] [Server thread/INFO]: [Minecraft] Clear tick list: true
[13:11:34] [Server thread/INFO]: [Minecraft] Experience Merge Radius: 7.0
[13:11:34] [Server thread/INFO]: [Minecraft] View Distance: 5
[13:11:34] [Server thread/INFO]: [Minecraft] Item Merge Radius: 4.5
[13:11:34] [Server thread/INFO]: [Minecraft] Item Despawn Rate: 1200
[13:11:34] [Server thread/INFO]: [Minecraft] Arrow Despawn Rate: 1200
[13:11:34] [Server thread/INFO]: [Minecraft] Allow Zombie Pigmen to spawn from portal blocks: false
[13:11:34] [Server thread/INFO]: [Minecraft] Zombie Aggressive Towards Villager: true
[13:11:34] [Server thread/INFO]: [Minecraft] -------- World Settings For [world] --------
[13:11:34] [Server thread/INFO]: [Minecraft] Remove invalid mob spawner tile entities: true
[13:11:34] [Server thread/INFO]: [Minecraft] Player blocking damage multiplier set to 0.5
[13:11:34] [Server thread/INFO]: [Minecraft] Squids will spawn between Y: 45.0 and Y: 63.0
[13:11:34] [Server thread/INFO]: [Minecraft] Max height for cactus growth 3. Max height for reed growth 3
[13:11:34] [Server thread/INFO]: [Minecraft] Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[13:11:34] [Server thread/INFO]: [Minecraft] Keep spawn chunk loaded: true
[13:11:34] [Server thread/INFO]: [Minecraft] WorldServer TickNextTick cap set at 10000000
[13:11:34] [Server thread/INFO]: [Minecraft] WorldServer TickNextTickList cap always processes redstone: true
[13:11:34] [Server thread/INFO]: [Minecraft] Fix TNT cannons: true
[13:11:34] [Server thread/INFO]: [Minecraft] World async lighting: true
[13:11:34] [Server thread/INFO]: [Minecraft] Water over lava flow speed: 5
[13:11:34] [Server thread/INFO]: [Minecraft] Allow undead horse types to be leashed: false
[13:11:34] [Server thread/INFO]: [Minecraft] -------- World Settings For [world] --------
[13:11:34] [Server thread/INFO]: [Minecraft] adding BedrockFiller
[13:11:34] [Server thread/INFO]: Preparing start region for level 0 (Seed: -2462948450862551474)
[13:11:35] [Server thread/INFO]: [net.ivenomx.slotbot.SlotBot] [SlotBot] Enabling SlotBot v1.1.8
[13:11:35] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[13:11:35] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[13:11:35] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[13:11:35] [Server thread/INFO]: [SlotBot] Loaded 3 rewards
[13:11:35] [Server thread/INFO]: [SlotBot] Loaded 3 high roller rewards
[13:11:35] [Server thread/INFO]: [SlotBot] Loaded 1 credit shop rewards
[13:11:35] [Server thread/INFO]: [SlotBot] Leaked by Chan @ BlackSpigot.com
[13:11:35] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[13:11:35] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Fetching available expansion information...
[13:11:35] [Thread-16/WARN]: [NBTAPI] The NBT-API located at 'package net.ivenomx.slotbot.api.item.nbt' seems to be outdated!
[13:11:35] [Thread-16/WARN]: [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[13:11:35] [Thread-16/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:35] [Server thread/INFO]: [net.splodgebox.eliteenchantments.EliteEnchantments] [EliteEnchantments] Enabling EliteEnchantments v2.2.5
[13:11:36] [Server thread/INFO]: [me.f64.playtime.Main] [PlayTime] Enabling PlayTime v3.6
[13:11:36] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[13:11:36] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: playtime [3.6]
[13:11:36] [Server thread/INFO]: [me.kneesnap.CommandAliases.CommandAliases] [CommandAliases] Enabling CommandAliases v1.1.0
[13:11:36] [Server thread/INFO]: [net.splodgebox.buycraftconfirm.BuycraftConfirm] [BuycraftConfirm] Enabling BuycraftConfirm v1.0.6
[13:11:36] [Server thread/INFO]: [me.filoghost.holographicdisplays.plugin.HolographicDisplays] [HolographicDisplays] Enabling HolographicDisplays v3.0.1
[13:11:36] [Server thread/INFO]: [main.XpShop] [KushXPShop] Enabling KushXPShop v0.1
[13:11:36] [Server thread/INFO]: [me.krizzdawg.enfrevive.Main] [enfRevive] Enabling enfRevive v1.0
[13:11:36] [Server thread/INFO]: Loading Death Inventories...  89% (25/27)
[13:11:36] [Server thread/INFO]: [org.inventivetalent.particle.ParticlePlugin] [ParticleLIB] Enabling ParticleLIB v2.1.1
[13:11:36] [Server thread/INFO]: [org.inventivetalent.particle.ParticlePlugin] [ParticleLIB] Metrics started
[13:11:36] [Server thread/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] Enabling ViaVersion v4.6.1
[13:11:36] [Server thread/INFO]: [net.shortninja.staffplus.StaffPlus] [StaffPlus] Enabling StaffPlus v3.3.12.0
[13:11:36] [Server thread/INFO]: [Staff+] Version protocol set to 'v1_8_R3'.
[13:11:36] [Server thread/INFO]: [Staff+] Staff+ has been enabled! Initialization took 55ms.
[13:11:36] [Server thread/INFO]: [Staff+] Plugin created by Shortninja continued by Qball.
[13:11:36] [Server thread/INFO]: [me.liwk.karhu.api.KarhuAPI] [KarhuAPI] Enabling KarhuAPI v1.0
[13:11:36] [Server thread/INFO]: [me.zenix.cosmicfly.Core] [CosmicFly] Enabling CosmicFly v1.0.2
[13:11:36] [Server thread/INFO]: [net.coreprotect.CoreProtect] [CoreProtect] Enabling CoreProtect v2.12.0
[13:11:36] [Server thread/INFO]: CoreProtect version 2.12.0 is enabled!
[13:11:36] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[13:11:36] [Server thread/INFO]: [instantsponge.instantsponge.InstantSponge] [InstantSponge] Enabling InstantSponge v1.0-SNAPSHOT
[13:11:36] [Server thread/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Enabling KarhuLoader v1.2
[13:11:36] [Server thread/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Server is whitelisted while karhu is loading
[13:11:36] [Server thread/INFO]: [com.shardpvp.sgiveall.Main] [ShardGiveAll] Enabling ShardGiveAll v1.0-SNAPSHOT
[13:11:36] [Server thread/INFO]: [me.lucko.spark.bukkit.BukkitSparkPlugin] [spark] Enabling spark v1.10.34
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading mongo
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading classindex
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading fastutil-8.5.4
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading fastutil-core-8.5.4
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading sqlite-3.36
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading gson
[13:11:36] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Finished loading apache-math3
[13:11:37] [Server thread/INFO]: [me.lucko.spark.bukkit.BukkitSparkPlugin] [spark] Using Bukkit scheduler for tick monitoring
[13:11:37] [Server thread/INFO]: [me.lucko.spark.bukkit.BukkitSparkPlugin] [spark] Starting background profiler...
[13:11:37] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[13:11:37] [Server thread/INFO]: [me.lucko.spark.bukkit.BukkitSparkPlugin] [spark] Registered PlaceholderAPI placeholders
[13:11:37] [Server thread/INFO]: [me.randomhashtags.cosmicvaults.CosmicVaults] [CosmicVaults] Enabling CosmicVaults v3.0.1
[13:11:37] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Starting class receiving
[13:11:37] [Server thread/INFO]: UMaterial null itemstack. mat=SPLASH_POTION;data=0;versionName=null;getMaterial()=null
[13:11:37] [Server thread/INFO]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Enabling BuycraftX v12.0.8
[13:11:37] [Server thread/INFO]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Validating your server key...
[13:11:37] [Server thread/WARN]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[13:11:37] [Server thread/WARN]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[13:11:37] [Server thread/INFO]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Fetching all server packages...
[13:11:38] [Server thread/INFO]: [net.splodgebox.elitelootbox.EliteLootbox] [EliteLootbox] Enabling EliteLootbox v2.3.3
[13:11:38] [Server thread/INFO]: EliteLootbox: Loaded weaponrandomorb.yml successfully!
[13:11:38] [Server thread/INFO]: EliteLootbox: Loaded example.yml successfully!
[13:11:38] [Server thread/INFO]: EliteLootbox: Loaded randomarmororb.yml successfully!
[13:11:38] [Server thread/INFO]: [me.galacticpvp.galacticweeklybundles.GalacticWeeklyBundlePlugin] [GalacticWeeklyBundles] Enabling GalacticWeeklyBundles v1.0
[13:11:38] [Server thread/INFO]: [me.galacticpvp.galacticweeklybundles.GalacticWeeklyBundlePlugin] [GalacticWeeklyBundles] Successfully loaded Galactic Weekly Bundles.
[13:11:38] [Server thread/INFO]: [com.onarandombox.MultiverseCore.MultiverseCore] [Multiverse-Core] Enabling Multiverse-Core v2.5-b699
[13:11:38] [Server thread/INFO]: [Minecraft] -------- World Settings For [testingworld] --------
[13:11:38] [Server thread/INFO]: [Minecraft] Cactus Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Cane Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Melon Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Mushroom Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Pumpkin Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Sapling Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Wheat Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] NetherWart Growth Modifier: 100%
[13:11:38] [Server thread/INFO]: [Minecraft] Entity Activation Range: An 32 / Mo 32 / Mi 16
[13:11:38] [Server thread/INFO]: [Minecraft] Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[13:11:38] [Server thread/INFO]: [Minecraft] Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[13:11:38] [Server thread/INFO]: [Minecraft] Random Lighting Updates: false
[13:11:38] [Server thread/INFO]: [Minecraft] Structure Info Saving: true
[13:11:38] [Server thread/INFO]: [Minecraft] Sending up to 10 chunks per packet
[13:11:38] [Server thread/INFO]: [Minecraft] Max Entity Collisions: 0
[13:11:38] [Server thread/INFO]: [Minecraft] Custom Map Seeds:  Village: 10387312 Feature: 14357617
[13:11:38] [Server thread/INFO]: [Minecraft] Max TNT Explosions: 999999999
[13:11:38] [Server thread/INFO]: [Minecraft] Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:11:38] [Server thread/INFO]: [Minecraft] Mob Spawn Range: 4
[13:11:38] [Server thread/INFO]: [Minecraft] Nerfing mobs spawned from spawners: true
[13:11:38] [Server thread/INFO]: [Minecraft] Anti X-Ray: false
[13:11:38] [Server thread/INFO]: [Minecraft]     Engine Mode: 1
[13:11:38] [Server thread/INFO]: [Minecraft]     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[13:11:38] [Server thread/INFO]: [Minecraft]     Replace Blocks: [1, 5]
[13:11:38] [Server thread/INFO]: [Minecraft] Chunks to Grow per Tick: 300
[13:11:38] [Server thread/INFO]: [Minecraft] Clear tick list: true
[13:11:38] [Server thread/INFO]: [Minecraft] Experience Merge Radius: 7.0
[13:11:38] [Server thread/INFO]: [Minecraft] View Distance: 5
[13:11:38] [Server thread/INFO]: [Minecraft] Item Merge Radius: 4.5
[13:11:38] [Server thread/INFO]: [Minecraft] Item Despawn Rate: 1200
[13:11:38] [Server thread/INFO]: [Minecraft] Arrow Despawn Rate: 1200
[13:11:38] [Server thread/INFO]: [Minecraft] Allow Zombie Pigmen to spawn from portal blocks: false
[13:11:38] [Server thread/INFO]: [Minecraft] Zombie Aggressive Towards Villager: true
[13:11:38] [Server thread/INFO]: [Minecraft] -------- World Settings For [testingworld] --------
[13:11:38] [Server thread/INFO]: [Minecraft] Remove invalid mob spawner tile entities: true
[13:11:38] [Server thread/INFO]: [Minecraft] Player blocking damage multiplier set to 0.5
[13:11:38] [Server thread/INFO]: [Minecraft] Squids will spawn between Y: 45.0 and Y: 63.0
[13:11:38] [Server thread/INFO]: [Minecraft] Max height for cactus growth 3. Max height for reed growth 3
[13:11:38] [Server thread/INFO]: [Minecraft] Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[13:11:38] [Server thread/INFO]: [Minecraft] Keep spawn chunk loaded: true
[13:11:38] [Server thread/INFO]: [Minecraft] WorldServer TickNextTick cap set at 10000000
[13:11:38] [Server thread/INFO]: [Minecraft] WorldServer TickNextTickList cap always processes redstone: true
[13:11:38] [Server thread/INFO]: [Minecraft] Fix TNT cannons: true
[13:11:38] [Server thread/INFO]: [Minecraft] World async lighting: true
[13:11:38] [Server thread/INFO]: [Minecraft] Water over lava flow speed: 5
[13:11:38] [Server thread/INFO]: [Minecraft] Allow undead horse types to be leashed: false
[13:11:38] [Server thread/INFO]: [Minecraft] -------- World Settings For [testingworld] --------
[13:11:38] [Server thread/INFO]: Preparing start region for level 1 (Seed: -5452087172789614291)
[13:11:38] [Thread-17/WARN]: java.lang.ArrayIndexOutOfBoundsException: 2
[13:11:38] [Thread-17/WARN]:     at net.coreprotect.thread.CheckUpdate.run(CheckUpdate.java:51)
[13:11:38] [Thread-17/WARN]:     at java.lang.Thread.run(Thread.java:748)
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: KitMap_nether
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: CannoningTest
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:39] [Server thread/INFO]: Could not set generator for world 'world_koth': Plugin 'VoidGenerator' does not exist
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_koth
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:39] [Server thread/INFO]: [Minecraft] -------- World Settings For [mapfactions] --------
[13:11:39] [Server thread/INFO]: [Minecraft] Cactus Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Cane Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Melon Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Mushroom Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Pumpkin Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Sapling Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Wheat Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] NetherWart Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Entity Activation Range: An 32 / Mo 32 / Mi 16
[13:11:39] [Server thread/INFO]: [Minecraft] Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[13:11:39] [Server thread/INFO]: [Minecraft] Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[13:11:39] [Server thread/INFO]: [Minecraft] Random Lighting Updates: false
[13:11:39] [Server thread/INFO]: [Minecraft] Structure Info Saving: true
[13:11:39] [Server thread/INFO]: [Minecraft] Sending up to 10 chunks per packet
[13:11:39] [Server thread/INFO]: [Minecraft] Max Entity Collisions: 0
[13:11:39] [Server thread/INFO]: [Minecraft] Custom Map Seeds:  Village: 10387312 Feature: 14357617
[13:11:39] [Server thread/INFO]: [Minecraft] Max TNT Explosions: 999999999
[13:11:39] [Server thread/INFO]: [Minecraft] Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:11:39] [Server thread/INFO]: [Minecraft] Mob Spawn Range: 4
[13:11:39] [Server thread/INFO]: [Minecraft] Nerfing mobs spawned from spawners: true
[13:11:39] [Server thread/INFO]: [Minecraft] Anti X-Ray: false
[13:11:39] [Server thread/INFO]: [Minecraft]     Engine Mode: 1
[13:11:39] [Server thread/INFO]: [Minecraft]     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[13:11:39] [Server thread/INFO]: [Minecraft]     Replace Blocks: [1, 5]
[13:11:39] [Server thread/INFO]: [Minecraft] Chunks to Grow per Tick: 300
[13:11:39] [Server thread/INFO]: [Minecraft] Clear tick list: true
[13:11:39] [Server thread/INFO]: [Minecraft] Experience Merge Radius: 7.0
[13:11:39] [Server thread/INFO]: [Minecraft] View Distance: 5
[13:11:39] [Server thread/INFO]: [Minecraft] Item Merge Radius: 4.5
[13:11:39] [Server thread/INFO]: [Minecraft] Item Despawn Rate: 1200
[13:11:39] [Server thread/INFO]: [Minecraft] Arrow Despawn Rate: 1200
[13:11:39] [Server thread/INFO]: [Minecraft] Allow Zombie Pigmen to spawn from portal blocks: false
[13:11:39] [Server thread/INFO]: [Minecraft] Zombie Aggressive Towards Villager: true
[13:11:39] [Server thread/INFO]: [Minecraft] -------- World Settings For [mapfactions] --------
[13:11:39] [Server thread/INFO]: [Minecraft] Remove invalid mob spawner tile entities: true
[13:11:39] [Server thread/INFO]: [Minecraft] Player blocking damage multiplier set to 0.5
[13:11:39] [Server thread/INFO]: [Minecraft] Squids will spawn between Y: 45.0 and Y: 63.0
[13:11:39] [Server thread/INFO]: [Minecraft] Max height for cactus growth 3. Max height for reed growth 3
[13:11:39] [Server thread/INFO]: [Minecraft] Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[13:11:39] [Server thread/INFO]: [Minecraft] Keep spawn chunk loaded: true
[13:11:39] [Server thread/INFO]: [Minecraft] WorldServer TickNextTick cap set at 10000000
[13:11:39] [Server thread/INFO]: [Minecraft] WorldServer TickNextTickList cap always processes redstone: true
[13:11:39] [Server thread/INFO]: [Minecraft] Fix TNT cannons: true
[13:11:39] [Server thread/INFO]: [Minecraft] World async lighting: true
[13:11:39] [Server thread/INFO]: [Minecraft] Water over lava flow speed: 5
[13:11:39] [Server thread/INFO]: [Minecraft] Allow undead horse types to be leashed: false
[13:11:39] [Server thread/INFO]: [Minecraft] -------- World Settings For [mapfactions] --------
[13:11:39] [Server thread/INFO]: Preparing start region for level 2 (Seed: 7877098864455998881)
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: KitMap_the_end
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: cosmic_station_1
[13:11:39] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:39] [Server thread/INFO]: [Minecraft] -------- World Settings For [world_the_end] --------
[13:11:39] [Server thread/INFO]: [Minecraft] Cactus Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Cane Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Melon Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Mushroom Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Pumpkin Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Sapling Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Wheat Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] NetherWart Growth Modifier: 100%
[13:11:39] [Server thread/INFO]: [Minecraft] Entity Activation Range: An 32 / Mo 32 / Mi 16
[13:11:39] [Server thread/INFO]: [Minecraft] Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[13:11:39] [Server thread/INFO]: [Minecraft] Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[13:11:39] [Server thread/INFO]: [Minecraft] Random Lighting Updates: false
[13:11:39] [Server thread/INFO]: [Minecraft] Structure Info Saving: true
[13:11:39] [Server thread/INFO]: [Minecraft] Sending up to 10 chunks per packet
[13:11:39] [Server thread/INFO]: [Minecraft] Max Entity Collisions: 0
[13:11:39] [Server thread/INFO]: [Minecraft] Custom Map Seeds:  Village: 10387312 Feature: 14357617
[13:11:39] [Server thread/INFO]: [Minecraft] Max TNT Explosions: 999999999
[13:11:39] [Server thread/INFO]: [Minecraft] Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:11:39] [Server thread/INFO]: [Minecraft] Mob Spawn Range: 4
[13:11:39] [Server thread/INFO]: [Minecraft] Nerfing mobs spawned from spawners: true
[13:11:39] [Server thread/INFO]: [Minecraft] Anti X-Ray: false
[13:11:39] [Server thread/INFO]: [Minecraft]     Engine Mode: 1
[13:11:39] [Server thread/INFO]: [Minecraft]     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[13:11:39] [Server thread/INFO]: [Minecraft]     Replace Blocks: [1, 5]
[13:11:39] [Server thread/INFO]: [Minecraft] Chunks to Grow per Tick: 300
[13:11:39] [Server thread/INFO]: [Minecraft] Clear tick list: true
[13:11:39] [Server thread/INFO]: [Minecraft] Experience Merge Radius: 7.0
[13:11:39] [Server thread/INFO]: [Minecraft] View Distance: 5
[13:11:39] [Server thread/INFO]: [Minecraft] Item Merge Radius: 4.5
[13:11:39] [Server thread/INFO]: [Minecraft] Item Despawn Rate: 1200
[13:11:39] [Server thread/INFO]: [Minecraft] Arrow Despawn Rate: 1200
[13:11:39] [Server thread/INFO]: [Minecraft] Allow Zombie Pigmen to spawn from portal blocks: false
[13:11:39] [Server thread/INFO]: [Minecraft] Zombie Aggressive Towards Villager: true
[13:11:39] [Server thread/INFO]: [Minecraft] -------- World Settings For [world_the_end] --------
[13:11:39] [Server thread/INFO]: [Minecraft] Remove invalid mob spawner tile entities: true
[13:11:39] [Server thread/INFO]: [Minecraft] Player blocking damage multiplier set to 0.5
[13:11:39] [Server thread/INFO]: [Minecraft] Squids will spawn between Y: 45.0 and Y: 63.0
[13:11:39] [Server thread/INFO]: [Minecraft] Max height for cactus growth 3. Max height for reed growth 3
[13:11:39] [Server thread/INFO]: [Minecraft] Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[13:11:39] [Server thread/INFO]: [Minecraft] Keep spawn chunk loaded: true
[13:11:39] [Server thread/INFO]: [Minecraft] WorldServer TickNextTick cap set at 10000000
[13:11:39] [Server thread/INFO]: [Minecraft] WorldServer TickNextTickList cap always processes redstone: true
[13:11:39] [Server thread/INFO]: [Minecraft] Fix TNT cannons: true
[13:11:39] [Server thread/INFO]: [Minecraft] World async lighting: true
[13:11:39] [Server thread/INFO]: [Minecraft] Water over lava flow speed: 5
[13:11:39] [Server thread/INFO]: [Minecraft] Allow undead horse types to be leashed: false
[13:11:39] [Server thread/INFO]: [Minecraft] -------- World Settings For [world_the_end] --------
[13:11:39] [Server thread/INFO]: Preparing start region for level 3 (Seed: 9727011751332162)
[13:11:40] [Server thread/INFO]: [Minecraft] -------- World Settings For [world_nether] --------
[13:11:40] [Server thread/INFO]: [Minecraft] Cactus Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Cane Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Melon Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Mushroom Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Pumpkin Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Sapling Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Wheat Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] NetherWart Growth Modifier: 100%
[13:11:40] [Server thread/INFO]: [Minecraft] Entity Activation Range: An 32 / Mo 32 / Mi 16
[13:11:40] [Server thread/INFO]: [Minecraft] Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[13:11:40] [Server thread/INFO]: [Minecraft] Hopper Transfer: 60 Hopper Check: 60 Hopper Amount: 320
[13:11:40] [Server thread/INFO]: [Minecraft] Random Lighting Updates: false
[13:11:40] [Server thread/INFO]: [Minecraft] Structure Info Saving: true
[13:11:40] [Server thread/INFO]: [Minecraft] Sending up to 10 chunks per packet
[13:11:40] [Server thread/INFO]: [Minecraft] Max Entity Collisions: 0
[13:11:40] [Server thread/INFO]: [Minecraft] Custom Map Seeds:  Village: 10387312 Feature: 14357617
[13:11:40] [Server thread/INFO]: [Minecraft] Max TNT Explosions: 999999999
[13:11:40] [Server thread/INFO]: [Minecraft] Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[13:11:40] [Server thread/INFO]: [Minecraft] Mob Spawn Range: 4
[13:11:40] [Server thread/INFO]: [Minecraft] Nerfing mobs spawned from spawners: true
[13:11:40] [Server thread/INFO]: [Minecraft] Anti X-Ray: false
[13:11:40] [Server thread/INFO]: [Minecraft]     Engine Mode: 1
[13:11:40] [Server thread/INFO]: [Minecraft]     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[13:11:40] [Server thread/INFO]: [Minecraft]     Replace Blocks: [1, 5]
[13:11:40] [Server thread/INFO]: [Minecraft] Chunks to Grow per Tick: 300
[13:11:40] [Server thread/INFO]: [Minecraft] Clear tick list: true
[13:11:40] [Server thread/INFO]: [Minecraft] Experience Merge Radius: 7.0
[13:11:40] [Server thread/INFO]: [Minecraft] View Distance: 5
[13:11:40] [Server thread/INFO]: [Minecraft] Item Merge Radius: 4.5
[13:11:40] [Server thread/INFO]: [Minecraft] Item Despawn Rate: 1200
[13:11:40] [Server thread/INFO]: [Minecraft] Arrow Despawn Rate: 1200
[13:11:40] [Server thread/INFO]: [Minecraft] Allow Zombie Pigmen to spawn from portal blocks: false
[13:11:40] [Server thread/INFO]: [Minecraft] Zombie Aggressive Towards Villager: true
[13:11:40] [Server thread/INFO]: [Minecraft] -------- World Settings For [world_nether] --------
[13:11:40] [Server thread/INFO]: [Minecraft] Remove invalid mob spawner tile entities: true
[13:11:40] [Server thread/INFO]: [Minecraft] Player blocking damage multiplier set to 0.5
[13:11:40] [Server thread/INFO]: [Minecraft] Squids will spawn between Y: 45.0 and Y: 63.0
[13:11:40] [Server thread/INFO]: [Minecraft] Max height for cactus growth 3. Max height for reed growth 3
[13:11:40] [Server thread/INFO]: [Minecraft] Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[13:11:40] [Server thread/INFO]: [Minecraft] Keep spawn chunk loaded: true
[13:11:40] [Server thread/INFO]: [Minecraft] WorldServer TickNextTick cap set at 10000000
[13:11:40] [Server thread/INFO]: [Minecraft] WorldServer TickNextTickList cap always processes redstone: true
[13:11:40] [Server thread/INFO]: [Minecraft] Fix TNT cannons: true
[13:11:40] [Server thread/INFO]: [Minecraft] World async lighting: true
[13:11:40] [Server thread/INFO]: [Minecraft] Water over lava flow speed: 5
[13:11:40] [Server thread/INFO]: [Minecraft] Allow undead horse types to be leashed: false
[13:11:40] [Server thread/INFO]: [Minecraft] -------- World Settings For [world_nether] --------
[13:11:40] [Server thread/INFO]: Preparing start region for level 4 (Seed: 9727011751332162)
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dungeon_destroyed_outpost
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: cosmic_station_vanilla
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_royale
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: dungeon_yijki_a
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: cosmic_station_2
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: cosmic_station_3
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: KitMap
[13:11:40] [Server thread/WARN]: [Minecraft] [Multiverse-Core] Use '/mv remove' to remove it from the config!
[13:11:40] [Server thread/INFO]: [Minecraft] [Multiverse-Core] 5 - World(s) loaded.
[13:11:40] [Server thread/INFO]: [Minecraft] [Multiverse-Core] Version 2.5-b699 (API v19) Enabled - By Rigby, fernferret, lithium3141 and main--
[13:11:40] [Server thread/INFO]: [me.urbae.rankannouncer.RankAnnouncerPlugin] [RankAnnouncer] Enabling RankAnnouncer v1.0.2
[13:11:40] [Server thread/INFO]: [x] RankAnnouncer by UrBae has enabled.
[13:11:40] [Server thread/INFO]: [net.splodgebox.eliteenchantskits.EliteEnchantsKits] [EliteEnchantmentsKits] Enabling EliteEnchantmentsKits v2.0.1
[13:11:40] [Server thread/INFO]: [com.rezzedup.opguard.OpGuard] [OpGuard] Enabling OpGuard v3.2.5
[13:11:40] [Server thread/INFO]: [me.badbones69.blockparticles.BlockParticles] [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[13:11:40] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[13:11:40] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[13:11:40] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[13:11:40] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[13:11:40] [Server thread/INFO]: [com.sectorgamer.sharkiller.AutoAnnouncer.Announcer] [AutoAnnouncer] Enabling AutoAnnouncer v1.7-03.23
[13:11:40] [Server thread/INFO]: [Minecraft] [AutoAnnouncer] Permission support enabled!
[13:11:40] [Server thread/INFO]: [Minecraft] [AutoAnnouncer] Settings Loaded (2 announces).
[13:11:40] [Server thread/INFO]: [Minecraft] [AutoAnnouncer] Scheduled every 15 minutes!
[13:11:40] [Server thread/INFO]: [Minecraft] [AutoAnnouncer] v1.7-03.23 is enabled!
[13:11:40] [Server thread/INFO]: [Minecraft] [AutoAnnouncer] Developed by: [Sharkiller]
[13:11:40] [Server thread/INFO]: [me.fatpigsarefat.moneypouch.Main] [MoneyPouch] Enabling MoneyPouch v2.1.10
[13:11:40] [Server thread/INFO]: [me.fatpigsarefat.moneypouch.Main] [MoneyPouch] Your server is running version v1_8_R3
[13:11:40] [Server thread/INFO]: [me.fatpigsarefat.moneypouch.Main] [MoneyPouch] MoneyPouch setup was successful!
[13:11:40] [Server thread/INFO]: [me.bournedev.ms.Core] [MysterySpawners] Enabling MysterySpawners v3.4
[13:11:40] [Server thread/INFO]: [me.shin1gamix.voidchest.VoidChestPlugin] [VoidChest-1.9.0] Enabling VoidChest v1.9.0
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] Plugin attempting to load now...
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] YML files loaded.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] messages.yml file fully loaded.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] Attempting to load voidchest files in memory.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] VoidChest file: chunkcollector successfully loaded in memory.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] VoidChest file: default successfully loaded in memory.
[13:11:40] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] Attempting to load voidchest items in memory.
[13:11:41] [Server thread/INFO]: Currently loaded files: 2
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] Loaded voidchest item for: default
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] Loaded voidchest item for: chunkcollector
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] Attempted registering the following tasks: voidchest-purge, hologram, data-purge, sell-message
[13:11:41] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:41] [Server thread/INFO]: [VoidChest] Leaked by Chan @ BlackSpigot.com
[13:11:41] [Server thread/INFO]: [me.zeuss.guibalance.Main] [GuiBalance] Enabling GuiBalance v1.4
[13:11:41] [Server thread/INFO]: [GuiBalance] You are using the latest version of GuiBalance
[13:11:41] [Server thread/INFO]: [com.sk89q.worldedit.bukkit.WorldEditPlugin] [WorldEdit] Enabling WorldEdit v6.1.7;dd00bb1
[13:11:41] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[13:11:41] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
[13:11:41] [Server thread/INFO]: [com.earth2me.essentials.Essentials] [Essentials] Enabling Essentials v2.19.7
[13:11:41] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[13:11:41] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:11:41] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:11:41] [Server thread/INFO]: [Essentials] Loaded 853 items from items.csv.
[13:11:41] [Server thread/INFO]: [Essentials] Using locale en_US
[13:11:41] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:11:41] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:11:41] [Server thread/INFO]: [net.milkbowl.vault.Vault] [Vault] [Economy] Essentials Economy hooked.
[13:11:41] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:11:41] [Server thread/INFO]: [com.technovision.jackpot.Jackpot] [Jackpot] Enabling Jackpot v1.0
[13:11:41] [Server thread/INFO]: [me.clip.deluxechat.DeluxeChat] [DeluxeChat] Enabling DeluxeChat v1.16.2
[13:11:41] [Server thread/INFO]: [me.clip.deluxechat.DeluxeChat] [DeluxeChat] 7 formats loaded!
[13:11:41] [Server thread/INFO]: [me.clip.deluxechat.DeluxeChat] [DeluxeChat] Loading DeluxeChat messages.yml
[13:11:41] [Server thread/INFO]: [me.clip.deluxechat.DeluxeChat] [DeluxeChat] Detected Vault
[13:11:41] [Server thread/INFO]: [me.clip.deluxechat.DeluxeChat] [DeluxeChat] Hooked into Vault
[13:11:41] [Server thread/INFO]: ----------------------------
[13:11:41] [Server thread/INFO]:      DeluxeChat Updater
[13:11:41] [Server thread/INFO]:  
[13:11:41] [Server thread/INFO]: You are running 1.16.2
[13:11:41] [Server thread/INFO]: The latest version
[13:11:41] [Server thread/INFO]: of DeluxeChat!
[13:11:41] [Server thread/INFO]:  
[13:11:41] [Server thread/INFO]: ----------------------------
[13:11:41] [Server thread/INFO]: [DeluxeChat] Leaked by Chan @ BlackSpigot.com
[13:11:41] [Server thread/INFO]: [n3kas.showcase.Core] [Showcase] Enabling Showcase v1.9.8
[13:11:41] [Server thread/INFO]: [n3kas.showcase.Core] [Showcase] Economy plugin (Vault) has been found, money manipulation is now available.
[13:11:41] [Server thread/INFO]: [me.krizzdawg.cosmicwarps.CosmicWarpsPlugin] [CosmicWarps] Enabling CosmicWarps v1.0
[13:11:41] [Server thread/INFO]: [gc.aah.Core] [AdvancedAuctionHouse] Enabling AdvancedAuctionHouse v1.5.2
[13:11:42] [Server thread/INFO]: [me.neznamy.tab.platforms.bukkit.Main] [TAB] Enabling TAB v3.1.5
[13:11:42] [Server thread/INFO]: [TAB] Server version: 1.8.8 (v1_8_R3)
[13:11:42] [Server thread/INFO]: [TAB] Loaded NMS hook in 8ms
[13:11:42] [Server thread/INFO]: [TAB] Enabled in 64ms
[13:11:42] [Server thread/INFO]: [com.sk89q.worldguard.bukkit.WorldGuardPlugin] [WorldGuard] Enabling WorldGuard v6.1
[13:11:42] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:11:42] [Server thread/INFO]: [WorldGuard] (testingworld) TNT ignition is PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (testingworld) Lighters are PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (testingworld) Lava fire is blocked.
[13:11:42] [Server thread/INFO]: [WorldGuard] (testingworld) Fire spread is UNRESTRICTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'testingworld'
[13:11:42] [Server thread/INFO]: [WorldGuard] (mapfactions) TNT ignition is PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (mapfactions) Lighters are PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (mapfactions) Lava fire is blocked.
[13:11:42] [Server thread/INFO]: [WorldGuard] (mapfactions) Fire spread is UNRESTRICTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mapfactions'
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[13:11:42] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[13:11:42] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[13:11:42] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:11:42] [Server thread/INFO]: [eu.kennytv.maintenance.spigot.MaintenanceSpigotBase] [Maintenance] Enabling Maintenance v4.0.1
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Enabling CrazyEnvoys v1.4.17.3
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loading the config.yml
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Successfully loaded config.yml
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loading the messages.yml
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Successfully loaded messages.yml
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loading the data.yml
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Successfully loaded data.yml
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loading custom files.
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loaded new custom file: /tiers/Basic.yml.
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loaded new custom file: /tiers/Lucky.yml.
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Loaded new custom file: /tiers/Titan.yml.
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] Finished loading custom files.
[13:11:42] [Server thread/INFO]: [me.badbones69.crazyenvoys.CrazyEnvoys] [CrazyEnvoys] LoadedHolographicDisplays hologram hook.
[13:11:42] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: crazyenvoys [1.4.17.3]
[13:11:42] [Server thread/INFO]: [me.mraxetv.beastwithdraw.BeastWithdraw] [BeastWithdraw] Enabling BeastWithdraw v2.7
[13:11:42] [Server thread/INFO]: [BeastWithdraw] /XpBottle command aliases [xpb, bottle] are regitered
[13:11:42] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [cashnote, withdraw, moneywithdraw, moneynote] are regitered
[13:11:42] [Server thread/INFO]: [me.fromgate.messagefilter.MessageFilter] [MessageFilter] Enabling MessageFilter v0.3.3
[13:11:42] [Server thread/INFO]: [me.fromgate.messagefilter.MessageFilter] [MessageFilter] ProtocolLib found and connected!
[13:11:42] [Server thread/INFO]: [com.earth2me.essentials.spawn.EssentialsSpawn] [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[13:11:42] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[13:11:42] [Server thread/INFO]: [it.ytnoos.lpx.BJ] [LPX] Enabling LPX v3.2.4
[13:11:42] [Server thread/INFO]: [it.ytnoos.lpx.BJ] [LPX] License successfully verified!
[13:11:42] [Server thread/INFO]: [net.citizensnpcs.Citizens] [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 2981)
[13:11:42] [Server thread/INFO]: [net.citizensnpcs.Citizens] [Citizens] Loading external libraries
[13:11:43] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[13:11:43] [Server thread/INFO]: [Minecraft] [Citizens] Loaded economy handling via Vault.
[13:11:43] [Server thread/INFO]: [com.mewin.WGRegionEvents.WGRegionEventsPlugin] [WGRegionEvents] Enabling WGRegionEvents vS_Ryan
[13:11:43] [Server thread/INFO]: [com.mewin.WGRegionEvents.WGRegionEventsPlugin] [WGRegionEvents] [WGRegionEvents] Version: 2.1.0
[13:11:43] [Server thread/INFO]: [com.mewin.WGRegionEvents.WGRegionEventsPlugin] [WGRegionEvents] [WGRegionEvents] Successfully Enabled.
[13:11:43] [Server thread/INFO]: [me.PM2.AdvancedCrates.MonthlyCrate] [AdvancedCrates] Enabling AdvancedCrates v3.8.8
[13:11:43] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.8.8]
[13:11:43] [Thread-25/WARN]: [NBTAPI] The NBT-API located at 'package de.tr7zw.advancedcrates.nbtapi' seems to be outdated!
[13:11:43] [Thread-25/WARN]: [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[13:11:43] [Thread-25/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:44] [Server thread/INFO]: [me.messageofdeath.commandnpc.CommandNPC] [CommandNPC] Enabling CommandNPC v1.8.9
[13:11:44] [Server thread/INFO]: [CommandNPC] Vault compatible economy found! Economy support for CommandNPC has been enabled.
[13:11:44] [Server thread/INFO]: [CommandNPC] Initiating Database
[13:11:44] [Server thread/INFO]: [CommandNPC] Injecting command info into Citizens.
[13:11:44] [Server thread/INFO]: [CommandNPC] CommandNPC successfully loaded!
[13:11:44] [Server thread/INFO]: [com.keurig.combatlogger.CombatLogger] [CombatLogger] Enabling CombatLogger v1.4.1
[13:11:44] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: combatlogger [1.4.1]
[13:11:44] [Server thread/INFO]: Factions not found! Disabling faction support
[13:11:44] [Server thread/INFO]: [com.massivecraft.factions.FactionsPlugin] [Factions] Enabling Factions v1.6.9.5-4.1.0-RC
[13:11:44] [Server thread/INFO]: [SaberFactions] === ENABLE START ===
[13:11:44] [Server thread/INFO]: [SaberFactions] Loaded 3 players
[13:11:44] [Server thread/INFO]: [SaberFactions] Loaded 6 Factions
[13:11:44] [Server thread/INFO]: [SaberFactions] Loading board from disk
[13:11:44] [Server thread/INFO]: [SaberFactions] Loaded 2518 board locations
[13:11:44] [Server thread/INFO]: [SaberFactions] Economy integration through Vault plugin successful.
[13:11:44] [Server thread/INFO]: [SaberFactions] CoreX Integration Starting!
[13:11:44] [Server thread/INFO]: [SaberFactions] Enabling 14 CoreX Features...
[13:11:44] [Server thread/INFO]: [SaberFactions] Loaded 1 timers into list!
[13:11:44] [Server thread/INFO]: [SaberFactions] Minecraft Version 1.8 found, Title Fadeouttime etc will not be configurable.
[13:11:45] [Server thread/INFO]: [SaberFactions] Found FactionsTop plugin. Disabling our own /f top command.
[13:11:45] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: factionsuuid [1.6.9.5-4.1.0-RC]
[13:11:45] [Server thread/INFO]: [SaberFactions] Successfully registered placeholders with PlaceholderAPI.
[13:11:45] [Server thread/INFO]: [SaberFactions] === ENABLE DONE (Took 548.129ms) ===
[13:11:45] [Server thread/INFO]: [com.vk2gpz.randomteleport.RandomTeleport] [RandomTeleport] Enabling RandomTeleport v7.25.0
[13:11:45] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] using [WorldGuard] for world
[13:11:45] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] using [WorldGuard, PlotSquared] for plotworld
[13:11:45] [Server thread/INFO]: [RandomTeleport] [RandomTeleport] using [WorldGuard, Factions] for pvp
[13:11:45] [Server thread/INFO]: [RandomTeleport] 1 commands found!
[13:11:45] [Server thread/INFO]: [RandomTeleport] Registered com.vk2gpz.randomteleport.d.o
[13:11:45] [Server thread/INFO]: [com.vk2gpz.randomteleport.RandomTeleport] [RandomTeleport] RandomTeleport version 7.25.0 is Enabled
[13:11:45] [Server thread/INFO]: [me.sofocused.genbucket.main.GenBuckets] [GenBuckets] Enabling GenBuckets v1.2
[13:11:45] [Server thread/INFO]: [me.sofocused.genbucket.main.GenBuckets] [GenBuckets] GenBuckets have been enabled!
[13:11:45] [Server thread/INFO]: [net.splodgebox.elitepets.ElitePets] [ElitePets] Enabling ElitePets v1.5.1
[13:11:45] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[13:11:45] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[13:11:45] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[13:11:45] [Server thread/INFO]: ElitePets: Factions Support Enabled
[13:11:45] [Server thread/INFO]: ElitePets: Factions Support Disabled
[13:11:45] [Server thread/INFO]: [me.darkknights22.wildpvp.WildPvP] [WildPvP] Enabling WildPvP v1.0.8
[13:11:45] [Thread-27/WARN]: [NBTAPI] The NBT-API located at 'package net.splodgebox.elitepets.pluginapi.item.nbt' seems to be outdated!
[13:11:45] [Thread-27/WARN]: [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[13:11:45] [Thread-27/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:46] [Server thread/INFO]: ------------------------------------------------------------------------
[13:11:46] [Server thread/INFO]: WildPvP: Version: 1.0.8
[13:11:46] [Server thread/INFO]: Factions Support: ENABLED
[13:11:46] [Server thread/INFO]: ------------------------------------------------------------------------
[13:11:46] [Server thread/INFO]: [cc.javajobs.factionsbridge.BridgePlugin] [FactionsBridge] Enabling FactionsBridge v1.3.8
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] Found Factions_SaberFactions!
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] Matched '4.0.2-RC (9)'!
[13:11:46] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] Hooking into API for SaberFactions!
[13:11:46] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[13:11:46] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] This plugin uses bStats to track non-specific server data.
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] Go to '/plugins/bStats/' to change this if you do not consent.
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] With thanks to: https://bstats.org
[13:11:46] [Server thread/INFO]: [FactionsBridge][ERROR] Thank you, Callum
[13:11:46] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[13:11:46] [Server thread/INFO]: [FactionsBridge][LOG] FactionsBridge started in 16 milliseconds without errors.
[13:11:46] [Server thread/INFO]: [FactionsBridge][WARN] FastAsyncWorldEdit changes the load-order of the Server. Delaying the API test by 5 seconds.
[13:11:46] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] Enabling SilkSpawners v7.3.0
[13:11:46] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] WorldGuard was found and support is enabled
[13:11:46] [Server thread/WARN]: [Minecraft] [SilkSpawners] Warning! "nerf-spawner-mobs" is set to true in the spigot.yml! Spawned mobs WON'T HAVE ANY AI!
[13:11:46] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] Loading support for v1_8_R3
[13:11:46] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] AutoUpdater is enabled and now running.
[13:11:46] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] BarAPI is disabled due to config setting.
[13:11:46] [Server thread/INFO]: [codes.biscuit.chunkbuster.ChunkBuster] [ChunkBuster] Enabling ChunkBuster v1.2.5
[13:11:46] [Server thread/INFO]: [codes.biscuit.chunkbuster.ChunkBuster] [ChunkBuster] Hooked into FactionsUUID/SavageFactions
[13:11:46] [Server thread/INFO]: [codes.biscuit.chunkbuster.ChunkBuster] [ChunkBuster] Hooked into WorldGuard 6
[13:11:46] [Server thread/INFO]: [codes.biscuit.chunkbuster.ChunkBuster] [ChunkBuster] Hooked into CoreProtect
[13:11:46] [Server thread/INFO]: [net.splodgebox.elitearmor.EliteArmor] [EliteArmor] Enabling EliteArmor v6.6.5
[13:11:46] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Classes received 9
[13:11:46] [Thread-20/INFO]:  ___  __    ________  ________  ___  ___  ___  ___     
[13:11:46] [Thread-20/INFO]: |\  \|\  \ |\   __  \|\   __  \|\  \|\  \|\  \|\  \    
[13:11:46] [Thread-20/INFO]: \ \  \/  /|\ \  \|\  \ \  \|\  \ \  \\\  \ \  \\\  \   
[13:11:46] [Thread-20/INFO]:  \ \   ___  \ \   __  \ \   _  _\ \   __  \ \  \\\  \  
[13:11:46] [Thread-20/INFO]:   \ \  \\ \  \ \  \ \  \ \  \\  \\ \  \ \  \ \  \\\  \ 
[13:11:46] [Thread-20/INFO]:    \ \__\\ \__\ \__\ \__\ \__\\ _\\ \__\ \__\ \_______\
[13:11:46] [Thread-20/INFO]:     \|__| \|__|\|__|\|__|\|__|\|__|\|__|\|__|\|_______|
[13:11:46] [Thread-20/INFO]: Version: 2.6.6 | 210
[13:11:46] [Thread-20/INFO]: Folder/home/container/plugins/KarhuLoader/libs/ failed to create, maybe it's already there!
[13:11:46] [Thread-20/INFO]: > Tasker initialized
[13:11:46] [Thread-20/INFO]: > Threads initialized
[13:11:46] [Thread-20/INFO]: > Loading file config.yml
[13:11:46] [Thread-20/INFO]: > Loading file checks.yml
[13:11:46] [Thread-20/INFO]: > PacketEvents settings setup
[13:11:46] [Thread-20/INFO]: > PacketEvents loaded V_1_8_8
[13:11:46] [Thread-20/INFO]: > Events initialized
[13:11:46] [Thread-20/INFO]: > Managers initialized
[13:11:46] [Thread-20/INFO]: > Commands initialized
[13:11:46] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Started up Pledge
[13:11:46] [Thread-20/INFO]: > SQLite initialized
[13:11:46] [Thread-20/INFO]: > Connection to SQLite has been established.
[13:11:46] [Thread-20/INFO]: > SQLite table already has COORDS and WORLD columns
[13:11:46] [Thread-20/INFO]: > TPS counter & Tick handler initialized
[13:11:46] [Thread-20/INFO]: > ChunkManager initialized
[13:11:46] [Thread-20/INFO]: Finished loading in 187ms
[13:11:47] [Thread-20/INFO]: [me.kassq.client.ClientPlugin] [KarhuLoader] Server is no longer whitelisted
[13:11:47] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[13:11:47] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[13:11:47] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[13:11:47] [Server thread/INFO]: EliteArmor: Factions Support Disabled
[13:11:47] [Server thread/INFO]: WorldGuard Support Enabled
[13:11:47] [Server thread/INFO]: [FactionsTopV5.FactionsTopPlugin] [FactionsTop] Enabling FactionsTop v5.0.64
[13:11:47] [Thread-29/WARN]: [NBTAPI] The NBT-API located at 'package net.splodgebox.elitearmor.pluginapi.item.nbt' seems to be outdated!
[13:11:47] [Thread-29/WARN]: [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[13:11:47] [Thread-29/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:47] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: factionstop [1.0]
[13:11:47] [Server thread/INFO]: [net.splodgebox.elitebosses.EliteBosses] [EliteBosses] Enabling EliteBosses v1.5.1
[13:11:47] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[13:11:47] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[13:11:47] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[13:11:47] [Server thread/INFO]: EliteBosses: Factions Support Success
[13:11:47] [Server thread/INFO]: EliteBosses: Factions Support Disabled
[13:11:47] [Server thread/INFO]: EliteBosses: Skyblock Support Failed
[13:11:47] [Server thread/INFO]: EliteBosses: WorldGuard Support Success
[13:11:47] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: elitebosses [1.0.0]
[13:11:47] [Thread-30/WARN]: [NBTAPI] The NBT-API located at 'package net.splodgebox.elitebosses.pluginapi.item.nbt' seems to be outdated!
[13:11:47] [Thread-30/WARN]: [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[13:11:47] [Thread-30/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:47] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Enabling ShopGUIPlus v1.81.3
[13:11:47] [Server thread/INFO]: [ShopGUIPlus] Leaked by Chan @ BlackSpigot.com
[13:11:47] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading specialElements > balance  (config.yml), item not loaded: No item specified
[13:11:47] [Server thread/INFO]: [net.splodgebox.elitemasks.EliteMasks] [EliteMasks] Enabling EliteMasks v1.5.4
[13:11:47] [Server thread/INFO]: [net.brcdev.shopgui.bridge.silkspawners.ShopGuiBridgeSilkSpawnersPlugin] [ShopGUIPlusSilkSpawnersBridge] Enabling ShopGUIPlusSilkSpawnersBridge v1.4.0
[13:11:47] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] WorldGuard was found and support is enabled
[13:11:47] [Server thread/WARN]: [Minecraft] [SilkSpawners] Warning! "nerf-spawner-mobs" is set to true in the spigot.yml! Spawned mobs WON'T HAVE ANY AI!
[13:11:47] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] Loading support for v1_8_R3
[13:11:47] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Registered spawners support for SilkSpawners.
[13:11:47] [Server thread/INFO]: [FactionsTopChangeAnnouncer.FactionsTopChangeAnnouncerPlugin] [FactionsTopChangeAnnouncerV3] Enabling FactionsTopChangeAnnouncerV3 v3.1.0
[13:11:47] [Server thread/INFO]: [Minecraft] Server permissions file permissions.yml is empty, ignoring it
[13:11:48] [Server thread/INFO]: Done (13.371s)! For help, type "help" or "?"
[13:11:48] [Server thread/INFO]: [Minecraft] Timings Reset
[13:11:48] [Server thread/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] ViaVersion detected server version: 1.8.x (47)
[13:11:48] [Craft Scheduler Thread - 3/INFO]: ManiacPvP Faction Top is now being recalculated
[13:11:48] [Server thread/WARN]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] This version of Minecraft is extremely outdated and support for it has reached its end of life. You will still be able to run Via on this Minecraft version, but we are unlikely to provide any further fixes or help with problems specific to legacy Minecraft versions. Please consider updating to give your players a better experience and to avoid issues that have long been fixed.
[13:11:48] [Server thread/WARN]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] You are running an outdated Java version, please consider updating it to at least Java 17 (your version is 1.8.0_312). At some point in the future, ViaVersion will no longer be compatible with this version of Java.
[13:11:48] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:11:48] [Craft Scheduler Thread - 5/INFO]: [Essentials] Fetching version information...
[13:11:48] [Craft Scheduler Thread - 2/INFO]: You, my friend are a time-traveller; please spare my life when you kill the planet!
[13:11:48] [Craft Scheduler Thread - 6/INFO]: [net.shortninja.staffplus.StaffPlus] [StaffPlus] You are using the latest version thanks
[13:11:48] [Server thread/INFO]: (FAWE) Plugin 'WorldGuard' found. Using it now.
[13:11:48] [Server thread/INFO]: (FAWE) Plugin 'FactionsUUID' found. Using it now.
[13:11:48] [Server thread/INFO]: (FAWE) Detected class org.bukkit.event.block.BlockExplodeEvent
[13:11:48] [Server thread/INFO]: [de.dustplanet.silkspawners.SilkSpawners] [SilkSpawners] Result from AutoUpdater is: {0}
[13:11:48] [Craft Scheduler Thread - 0/INFO]: [FactionsBridge][LOG] Checking for Updates.
[13:11:48] [Server thread/INFO]: > Starting world chunk load...
[13:11:48] [Server thread/INFO]: > ChunkManager is going to cache 0 chunks from world world
[13:11:48] [Server thread/INFO]: > ChunkManager cached 0 chunks from world world
[13:11:48] [Server thread/INFO]: > ChunkManager is going to cache 674 chunks from world testingworld
[13:11:48] [Server thread/INFO]: > ChunkManager cached 674 chunks from world testingworld
[13:11:48] [Server thread/INFO]: > ChunkManager is going to cache 674 chunks from world mapfactions
[13:11:48] [Server thread/INFO]: > ChunkManager cached 674 chunks from world mapfactions
[13:11:48] [Server thread/INFO]: > ChunkManager is going to cache 674 chunks from world world_the_end
[13:11:48] [Server thread/INFO]: > ChunkManager cached 674 chunks from world world_the_end
[13:11:48] [Server thread/INFO]: > ChunkManager is going to cache 674 chunks from world world_nether
[13:11:48] [Server thread/INFO]: > ChunkManager cached 674 chunks from world world_nether
[13:11:48] [Server thread/INFO]: > Finished chunk load in 5ms
[13:11:48] [Server thread/INFO]: > Your server had 2696 chunks pre-loaded, karhu cached 2696 chunks
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] ================================[ ShopGUI+ 1.81.3 ]================================
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus]  
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Vault economy registered.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Vault economy enabled.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Using Vault as default economy provider.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Permissions support enabled.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Using SilkSpawners for spawners support.
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading itemStackSizeCappedAt > 2 (config.yml), item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy1, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy2, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy3, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy4, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy5, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy6, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy7, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy8, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkBuy > buy9, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell1, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell2, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell3, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell4, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell5, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell6, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell7, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell8, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading button amountSelectionGUIBulkSell > sell9, button not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading shopMenuFillItem (config.yml), item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded 7 main menu items.
[13:11:48] [Craft Scheduler Thread - 8/INFO]: [PlayTime] Latest version is installed! - v3.6
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded shop 'ores' with 7 items.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded shop 'blocks' with 79 items.
[13:11:48] [Craft Scheduler Thread - 0/INFO]: [FactionsBridge][LOG] You're all up to date. No issues here!
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded shop 'Farming' with 36 items.
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 1, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 2, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 3, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 4, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 5, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 6, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 7, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 8, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 9, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 10, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 11, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 12, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 13, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 14, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 15, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 16, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 17, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 18, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 19, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 20, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 21, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 22, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading spawners > 23, item not loaded: Invalid or no material name specified
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded shop 'spawners' with 0 items.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded shop 'Misc' with 40 items.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded 5 shops with total of 162 items.
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[13:11:48] [Server thread/WARN]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] Error occurred when loading sounds (config.yml), no sounds loaded
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus]  
[13:11:48] [Server thread/INFO]: [net.brcdev.shopgui.ShopGuiPlugin] [ShopGUIPlus] ====================================================================================
[13:11:48] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Placeholder expansion registration initializing...
[13:11:48] [ForkJoinPool.commonPool-worker-13/ERROR]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Failed to load expansion Expansion-factionsupdated.jar (is a dependency missing?)
java.lang.NoClassDefFoundError: com/massivecraft/factions/RelationParticipator
    at java.lang.Class.getDeclaredMethods0(Native Method) ~[?:1.8.0_312]
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) ~[?:1.8.0_312]
    at java.lang.Class.getDeclaredMethods(Class.java:1975) ~[?:1.8.0_312]
    at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:419) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1604) [?:1.8.0_312]
    at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1596) [?:1.8.0_312]
    at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_312]
    at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_312]
    at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_312]
    at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [?:1.8.0_312]
Caused by: java.lang.ClassNotFoundException: com.massivecraft.factions.RelationParticipator
    at java.net.URLClassLoader.findClass(URLClassLoader.java:387) ~[?:1.8.0_312]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_312]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_312]
    ... 10 more
[13:11:48] [Server thread/INFO]: [Minecraft] [Citizens] Loaded 23 NPCs.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Attempt on registering the hologram type.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Hologram type hooked as: HolographicDisplays
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Attempt on registering the bank type.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Attempt on registering the tnt bank type.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] TNT Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Attempting to load player datas.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Emptied storages and loaded to stats a size of: 0 player data
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Starting a hook attempt for economy...
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Path was set correctly and economy selected is: Vault, VaultEconomy{name=Vault, version=?} attempting to hook now.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Starting a hook attempt for sell mode...
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Path was set correctly and mode selected is: VoidChest attempting to hook now.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] Event details: VoidChestEconomy{name=VoidChest, version=1.9.0}
[13:11:48] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:48] [Craft Scheduler Thread - 2/INFO]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] Finished mapping loading, shutting down loader executor!
[13:11:48] [Craft Scheduler Thread - 7/INFO]: [net.milkbowl.vault.Vault] [Vault] Checking for Updates ... 
[13:11:48] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[13:11:48] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[13:11:48] [Server thread/WARN]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[13:11:48] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[13:11:48] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[13:11:48] [Server thread/INFO]: [me.clip.placeholderapi.PlaceholderAPIPlugin] [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[13:11:48] [Server thread/INFO]: 5 placeholder hook(s) registered!
[13:11:48] [Craft Scheduler Thread - 7/INFO]: [net.milkbowl.vault.Vault] [Vault] No new version available
[13:11:48] [Server thread/WARN]: [com.viaversion.viaversion.ViaVersionPlugin] [ViaVersion] There is a newer plugin version available: 4.6.2, you're on: 4.6.1
[13:11:48] [Craft Scheduler Thread - 11/WARN]: java.io.IOException: Server returned HTTP response code: 503 for URL: https://plugin-version-manager.herokuapp.com/plugins/CommandAliases/checkVersion?version=1.1.0
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1897)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1495)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:268)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at me.kneesnap.CommandAliases.Updater.httpRequest(Updater.java:48)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at me.kneesnap.CommandAliases.Updater.isUpToDate(Updater.java:60)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at me.kneesnap.CommandAliases.CommandAliases.lambda$onEnable$0(CommandAliases.java:25)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:60)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:53)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[13:11:48] [Craft Scheduler Thread - 11/WARN]:     at java.lang.Thread.run(Thread.java:748)
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded yijki.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded og-phantom.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded spectrum.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded rift.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded ancient.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded supreme.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded phantom.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded traveller.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded engineer.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded koth.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded yeti.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded dragon.yml successfully!
[13:11:48] [Server thread/INFO]: EliteArmor: Loaded ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_yeti.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_rift.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_koth.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_engineer.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_spectrum.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_traveler.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_ranger.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_phantom.yml successfully!
[13:11:49] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_supreme.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded trick-or-treat.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded christmas-grinch.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded pig.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded halloween-horse.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded spider.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded sheep.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded chicken.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded creeper.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded cloud.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded squid.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded zombie.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded wolf.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded exp.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded chest.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded dragon.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded cow.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded iron-golem.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded bat.yml successfully!
[13:11:49] [Server thread/INFO]: ElitePets: Loaded fish.yml successfully!
[13:11:49] [Server thread/INFO]: EliteBosses: Loaded yijki.yml successfully!
[13:11:49] [Server thread/INFO]: EliteBosses: Loaded brood-mother.yml successfully!
[13:11:49] [Server thread/INFO]: EliteBosses: Loaded plague-bloater.yml successfully!
[13:11:49] [Server thread/INFO]: EliteBosses: Loaded undead-assassin.yml successfully!
[13:11:49] [Server thread/INFO]: EliteBosses: Loaded treasure-goblin.yml successfully!
[13:11:49] [Server thread/INFO]: EliteBosses: Loaded king-slime.yml successfully!
[13:11:49] [Craft Scheduler Thread - 7/INFO]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Fetching all due players...
[13:11:49] [Server thread/INFO]: [Minecraft] [Factions] Balance for Safezone had money: 0.0 found: 0.0 acc: faction--1
[13:11:49] [Server thread/INFO]: [Minecraft] [Factions] Balance for Warzone had money: 0.0 found: 0.0 acc: faction--2
[13:11:49] [Server thread/INFO]: [Minecraft] [Factions] Balance for Wilderness had money: 0.0 found: 0.0 acc: faction-0
[13:11:49] [Server thread/INFO]: [Minecraft] [Factions] Balance for skitzo had money: 0.0 found: 0.0 acc: faction-2
[13:11:49] [Server thread/INFO]: [Minecraft] [Factions] Balance for Bamboo had money: 0.0 found: 0.0 acc: faction-3
[13:11:49] [Server thread/INFO]: [Minecraft] [Factions] Balance for Psychosis had money: 0.0 found: 0.0 acc: faction-4
[13:11:49] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[13:11:49] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[13:11:49] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[13:11:49] [Server thread/INFO]: [NBTAPI] Using the plugin 'SlotBot' to create a bStats instance!
[13:11:49] [Craft Scheduler Thread - 7/INFO]: [net.buycraft.plugin.bukkit.BuycraftPlugin] [BuycraftX] Fetched due players (0 found).
[13:11:49] [Thread-33/WARN]: [NBTAPI] The NBT-API located at 'package net.splodgebox.eliteenchantments.imports.pluginapi.item.nbt' seems to be outdated!
[13:11:49] [Thread-33/WARN]: [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[13:11:49] [Thread-33/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:49] [Server thread/INFO]: EliteEnchantments: Factions Support Failed
[13:11:49] [Server thread/INFO]: EliteEnchantments: Successfully found WorldGuard, Executing worldguard commands...
[13:11:49] [Server thread/INFO]: These are needed to make it work, If you do not want these commands executed. Check config.yml
[13:11:49] [Server thread/INFO]: Region flag pvp set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag interact set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag block-break set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag pvp set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag interact set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag block-break set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag pvp set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag interact set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag block-break set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag pvp set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag interact set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag block-break set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag pvp set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag interact set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Region flag block-break set on '__global__' to 'allow'.
[13:11:49] [Server thread/INFO]: (Current flags: block-break: ALLOW, pvp: ALLOW, interact: ALLOW)
[13:11:49] [Server thread/INFO]: Successfully hooked into ShopGuiPlus
[13:11:49] [Server thread/INFO]: Successfully hooked into EliteEnchantments
[13:11:50] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[13:11:50] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[13:11:50] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[13:11:50] [Server thread/INFO]: Loaded destroyer.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded paladin.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded cannoner.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded voidwalker.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded guardian.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded spooky.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded diablo.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded grim-reaper.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded arcane.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded gladiator.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded grandmaster.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded trickster.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded tinkermaster.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded arena-champion.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded master-builder.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded party-animal.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded templar.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded loki.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded cosmonaut.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded viking.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded independence.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded valentines.yml successfully!
[13:11:50] [Thread-34/WARN]: [NBTAPI] The NBT-API located at 'package net.splodgebox.elitemasks.pluginapi.item.nbt' seems to be outdated!
[13:11:50] [Thread-34/WARN]: [NBTAPI] Current Version: '2.10.0-SNAPSHOT' Newest Version: 2.11.2'
[13:11:50] [Thread-34/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[13:11:50] [Server thread/INFO]: Loaded warlock.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded butcher.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded enchantment.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded cosmic-admiral.yml successfully!
[13:11:50] [Server thread/INFO]: Loaded hyperdrive.yml successfully!
[13:11:50] [Server thread/INFO]: EliteEnchantments found and enchantments loaded!
[13:11:50] [Server thread/INFO]: ManiacPvP Faction Top has finished calculating
[13:11:53] [Server thread/INFO]: [FactionsBridge][WARN] 6 factions have been loaded.
[13:11:53] [Server thread/INFO]: [VoidChest-1.9.0] Plugin loaded in 7.939 seconds
[13:11:53] [Server thread/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]:  
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]:  
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]:      Debugging... [VoidChest-1.9.0]
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]: An update is available! VoidChest 1.10.2 may be downloaded on SpigotMC or MC-Market (depending where you've bought it from)
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]: [VoidChest-1.9.0] End of debugging.
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]:  
[13:11:58] [ForkJoinPool.commonPool-worker-15/INFO]:  
[13:12:12] [Timer-2/INFO]: [WorldGuard] Region data changes made in 'world' have been background saved
[13:12:12] [Timer-2/INFO]: [WorldGuard] Region data changes made in 'world_the_end' have been background saved
[13:12:12] [Timer-2/INFO]: [WorldGuard] Region data changes made in 'testingworld' have been background saved
[13:12:12] [Timer-2/INFO]: [WorldGuard] Region data changes made in 'world_nether' have been background saved
[13:12:12] [Timer-2/INFO]: [WorldGuard] Region data changes made in 'mapfactions' have been background saved