Paste #42998: Untitled Paste

Date: 2017/07/12 19:27:14 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


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


Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=128m; support was removed in 8.0
Loading libraries, please wait...
[12:23:34 INFO]: Starting minecraft server version 1.11.2
[12:23:34 INFO]: Loading properties
[12:23:34 INFO]: Default game type: SURVIVAL
[12:23:34 INFO]: This server is running CraftBukkit version git-Spigot-3fb9445-6e3cec8 (MC: 1.11.2) (Implementing API version 1.11.2-R0.1-SNAPSHOT)
[12:23:34 INFO]: Using 4 threads for Netty based IO
[12:23:34 INFO]: Server Ping Player Sample Count: 12
[12:23:34 INFO]: Debug logging is disabled
[12:23:34 INFO]: Generating keypair
[12:23:34 INFO]: Starting Minecraft server on 43.245.163.26:25565
[12:23:34 INFO]: Using epoll channel type
[12:23:36 INFO]: [ServerLogManager] Loading ServerLogManager v1.3.0
[12:23:36 INFO]: [GroupManager] Loading GroupManager v2.0.1-b332
[12:23:36 INFO]: [VoxelSniper] Loading VoxelSniper v5.171.0-SNAPSHOT
[12:23:36 INFO]: [EpicWorldGenerator] Loading EpicWorldGenerator v7.2.23
[12:23:39 INFO]: [RandomTeleport] Loading RandomTeleport vmaven-version-number
[12:23:39 INFO]: [ViaVersion] Loading ViaVersion v1.1.1
[12:23:39 INFO]: [ViaVersion] ViaVersion 1.1.1 is now loaded, injecting!
[12:23:39 INFO]: [ViaBackwards] Loading ViaBackwards v2.1
[12:23:39 INFO]: [VoteRoulette] Loading VoteRoulette v3.2.2
[12:23:39 INFO]: [ToggleSneak] Loading ToggleSneak v4.0
[12:23:39 INFO]: [FirstJoinPlus] Loading FirstJoinPlus v2.4.1
[12:23:39 INFO]: [MagicLamps] Loading MagicLamps v0.3.3
[12:23:39 INFO]: [WorldBorder] Loading WorldBorder v1.8.2
[12:23:39 INFO]: [Votifier] Loading Votifier v1.9
[12:23:39 INFO]: [ProtocolLib] Loading ProtocolLib v3.6.3-SNAPSHOT
[12:23:39 WARN]: [ProtocolLib] Version (MC: 1.11.2) has not yet been tested! Proceed with caution.
[12:23:39 INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v17.07.12-6b6f285-750-13.7.8
[12:23:39 INFO]: [Effect Library] Loading EffectLib v5.0
[12:23:39 INFO]: [mcMMO] Loading mcMMO v1.5.06-SNAPSHOT-b145
[12:23:39 INFO]: [WorldEdit] Loading WorldEdit v6.1.5;4651611
[12:23:39 INFO]: [WorldGuard] Loading WorldGuard v6.1.2;e38d98d
[12:23:39 INFO]: [Lift] Loading Lift v51
[12:23:39 INFO]: [StackableItems] Loading StackableItems v1.0.5
[12:23:39 INFO]: [PerWorldInventory] Loading PerWorldInventory v1.10.0
[12:23:39 INFO]: [PlotSquared] Loading PlotSquared v3.5.0-SNAPSHOT-95f8aaa
[12:23:39 INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5-b688
[12:23:39 INFO]: [Multiverse-Portals] Loading Multiverse-Portals v2.5-b699
[12:23:39 INFO]: [EssentialsProtect] Loading EssentialsProtect v2.0.1-b403
[12:23:39 INFO]: [LimitedCreative] Loading LimitedCreative v2.3-SNAPSHOT-8cfc3b7f01
[12:23:39 INFO]: [Denizen] Loading Denizen v1.0.2-SNAPSHOT (build 1638)
[12:23:39 INFO]: [Essentials] Loading Essentials v2.0.1-b403
[12:23:39 INFO]: [EssentialsGeoIP] Loading EssentialsGeoIP v2.0.1-b403
[12:23:39 INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.0.1-b403
[12:23:39 INFO]: [EssentialsChat] Loading EssentialsChat v2.0.1-b403
[12:23:39 INFO]: [PickUpSpawners] Loading PickUpSpawners v2.8
[12:23:39 INFO]: [CompatNoCheatPlus] Loading CompatNoCheatPlus v6.6.4-RC-sMD5NET-b88
[12:23:39 INFO]: [NoCheatPlus] Loading NoCheatPlus v3.15.1-RC-sMD5NET-b1084
[12:23:39 INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[12:23:39 INFO]: [NoCheatPlus] Logging system initialized.
[12:23:39 INFO]: [NoCheatPlus] Detected Minecraft version: 1.11.2
[12:23:39 INFO]: [Paintball] Loading Paintball v1.3.7
[12:23:39 INFO]: [TreasureChest] Loading TreasureChest v8.4.4
[12:23:39 INFO]: [Citizens] Loading Citizens v2.0.21-SNAPSHOT (build 1463)
[12:23:39 INFO]: [WanderingNPC] Loading WanderingNPC v1.6
[12:23:39 INFO]: [DiscordSRV] Loading DiscordSRV v14.3
[12:23:39 INFO]: [HeavySpleef] Loading HeavySpleef v2.4.1
[12:23:39 INFO]: [RandomTP-Reborn] Loading RandomTP-Reborn v1.9
[12:23:39 INFO]: [Vault] Loading Vault v1.5.6-b49
[12:23:39 INFO]: [HyperConomy] Loading HyperConomy v0.975.7
[12:23:39 INFO]: [HyperMerchant] Loading HyperMerchant v1.6.2-dev
[12:23:39 INFO]: [Swearjar] Loading Swearjar v1.7
[12:23:39 INFO]: [GlobalMarket] Loading GlobalMarket v1.3.0-11
[12:23:39 INFO]: [DeathTpPlus] Loading DeathTpPlus v3.9.16.2320
[12:23:39 INFO]: [EpicWorldGenerator] Enabling EpicWorldGenerator v7.2.23
[12:23:41 INFO]:  
[12:23:41 INFO]:  
[12:23:41 INFO]:   _                              __
[12:23:41 INFO]:  |_ ._  o  _ \    / _  ._ |  _| /__  _  ._   _  ._ _. _|_  _  ._ 
[12:23:41 INFO]:  |_ |_) | (_  \/\/ (_) |  | (_| \_| (/_ | | (/_ | (_|  |_ (_) |  
[12:23:41 INFO]:     |       
[12:23:41 INFO]:  
[12:23:41 INFO]:               Version 7.2.23 | Licensed to 11227
[12:23:41 INFO]:  
[12:23:41 INFO]:  Documentation can be found at http://discuss.dynamic-bytes.com/p/1-wiki
[12:23:41 INFO]:  
[12:23:41 INFO]:  
[12:23:41 INFO]:   > Loading structures (.EWG schematics)
[12:23:45 INFO]:     - TREES_pine_normal
[12:23:45 INFO]:     - TREES_pine_normal_2
[12:23:45 INFO]:     - DECO_rock_04
[12:23:45 INFO]:     - TREES_jungle_big
[12:23:45 INFO]:     - TREES_pine_tiny
[12:23:45 INFO]:     - TREES_forgottenForest_medium_4
[12:23:45 INFO]:     - TREES_willow_big
[12:23:45 INFO]:     - TREES_pine_huge
[12:23:45 INFO]:     - DECO_jungle_tower
[12:23:45 INFO]:     - TREES_nether_normal
[12:23:45 INFO]:     - DECO_rock_01
[12:23:45 INFO]:     - DECO_portals_204
[12:23:45 INFO]:     - TREES_scotsPine_normal_11
[12:23:45 INFO]:     - TREES_dead_huge
[12:23:45 INFO]:     - TREES_pine_big
[12:23:45 INFO]:     - TREES_dead_big
[12:23:45 INFO]:     - TREES_tropicalForest_small_1
[12:23:45 INFO]:     - TREES_willow_medium_2
[12:23:45 INFO]:     - TREES_pine_tiny_2
[12:23:45 INFO]:     - DECO_rock_23
[12:23:45 INFO]:     - TREES_willow_small
[12:23:45 INFO]:     - TREES_bonsai_big_3
[12:23:45 INFO]:     - TREES_dead_medium
[12:23:45 INFO]:     - DECO_rock_20
[12:23:45 INFO]:     - DECO_rock_24
[12:23:45 INFO]:     - TREES_bonsai_huge
[12:23:45 INFO]:     - TREES_jungle_normal_3
[12:23:45 INFO]:     - DECO_rock_03
[12:23:45 INFO]:     - TREES_jungle_normal_4
[12:23:45 INFO]:     - TREES_jungle_huge
[12:23:45 INFO]:     - TREES_forgottenForest_normal_2
[12:23:45 INFO]:     - TREES_willow_tiny_2
[12:23:45 INFO]:     - TREES_fantasy_small
[12:23:45 INFO]:     - TREES_pine_medium
[12:23:45 INFO]:     - TREES_tropicalForest_medium_1
[12:23:45 INFO]:     - TREES_forgottenForest_medium
[12:23:45 INFO]:     - DECO_forest_house
[12:23:45 INFO]:     - TREES_tropicalForest_medium_3
[12:23:45 INFO]:     - DECO_rock_18
[12:23:45 INFO]:     - TREES_willow_tiny_3
[12:23:45 INFO]:     - TREES_bonsai_small
[12:23:45 INFO]:     - TREES_willow_tiny
[12:23:45 INFO]:     - TREES_dead_normal_2
[12:23:45 INFO]:     - TREES_bonsai_medium
[12:23:45 INFO]:     - TREES_scotsPine_normal_9
[12:23:45 INFO]:     - TREES_dead_medium_2
[12:23:45 INFO]:     - TREES_tropicalForest_medium_2
[12:23:45 INFO]:     - TREES_scotsPine_normal_6
[12:23:45 INFO]:     - TREES_stoneForest_normal_2
[12:23:45 INFO]:     - DECO_rock_19
[12:23:45 INFO]:     - TREES_jungle_normal_2
[12:23:45 INFO]:     - TREES_scotsPine_normal_8
[12:23:45 INFO]:     - TREES_bonsai_normal
[12:23:45 INFO]:     - TREES_bonsai_normal_2
[12:23:45 INFO]:     - TREES_willow_normal
[12:23:45 INFO]:     - TREES_bonsai_tiny
[12:23:45 INFO]:     - TREES_dead_normal
[12:23:45 INFO]:     - TREES_scotsPine_normal_12
[12:23:45 INFO]:     - TREES_stoneForest_normal_3
[12:23:45 INFO]:     - TREES_jungle_small
[12:23:45 INFO]:     - DECO_rock_17
[12:23:45 INFO]:     - TREES_jungle_small_3
[12:23:45 INFO]:     - DECO_rock_02
[12:23:45 INFO]:     - TREES_forgottenForest_medium_5
[12:23:45 INFO]:     - TREES_jungle_small_2
[12:23:45 INFO]:     - DECO_rock_22
[12:23:45 INFO]:     - TREES_scotsPine_normal_10
[12:23:45 INFO]:     - TREES_forgottenForest_normal_3
[12:23:45 INFO]:     - TREES_fantasy_normal_2
[12:23:45 INFO]:     - TREES_jungle_medium
[12:23:45 INFO]:     - TREES_birch_normal
[12:23:45 INFO]:     - TREES_fantasy_normal
[12:23:45 INFO]:     - TREES_willow_big_2
[12:23:45 INFO]:     - TREES_stoneForest_normal
[12:23:45 INFO]:     - TREES_tropicalForest_medium_4
[12:23:45 INFO]:     - TREES_bonsai_medium_2
[12:23:45 INFO]:     - TREES_willow_medium
[12:23:45 INFO]:     - TREES_bonsai_big
[12:23:45 INFO]:     - TREES_birch_normal_2
[12:23:45 INFO]:     - TREES_willow_huge
[12:23:45 INFO]:     - TREES_birch_normal_4
[12:23:45 INFO]:     - DECO_desert_tower
[12:23:45 INFO]:     - TREES_pine_small_2
[12:23:45 INFO]:     - TREES_pine_small
[12:23:45 INFO]:     - TREES_pine_small_3
[12:23:45 INFO]:     - TREES_fantasy_small_3
[12:23:45 INFO]:     - DECO_rock_25
[12:23:45 INFO]:     - TREES_birch_normal_3
[12:23:45 INFO]:     - DECO_rock_21
[12:23:45 INFO]:     - TREES_bonsai_big_2
[12:23:45 INFO]:     - TREES_fantasy_small_2
[12:23:45 INFO]:     - DECO_rock_10
[12:23:45 INFO]:     - TREES_jungle_normal
[12:23:45 INFO]:  
[12:23:45 INFO]:   > Loading configuration
[12:23:45 INFO]:  
[12:23:45 INFO]: Done
[12:23:45 INFO]: [ViaBackwards] Enabling ViaBackwards v2.1
[12:23:45 INFO]: [ProtocolLib] Enabling ProtocolLib v3.6.3-SNAPSHOT
[12:23:45 INFO]: [ProtocolLib] Started structure compiler thread.
[12:23:45 INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v17.07.12-6b6f285-750-13.7.8
[12:23:46 INFO]: ====== USE PAPER ======
[12:23:46 INFO]: DOWNLOAD: https://ci.destroystokyo.com/job/PaperSpigot/
[12:23:46 INFO]: GUIDE: https://www.spigotmc.org/threads/21726/
[12:23:46 INFO]:  - This is only a recommendation
[12:23:46 INFO]: ==============================
[12:23:46 INFO]: [mcMMO] Enabling mcMMO v1.5.06-SNAPSHOT-b145
[12:23:46 WARN]: [mcMMO] Invalid material: POTION_POISON
[12:23:46 WARN]: [mcMMO] Potion format for Treasures.yml has changed
[12:23:46 WARN]: [mcMMO] Invalid material: POTION_INSTANT_HEAL
[12:23:46 WARN]: [mcMMO] Potion format for Treasures.yml has changed
[12:23:46 WARN]: [mcMMO] Invalid material: POTION_FIRE_RESISTANCE
[12:23:46 WARN]: [mcMMO] Potion format for Treasures.yml has changed
[12:23:46 WARN]: [mcMMO] Invalid material: POTION_SPEED
[12:23:46 WARN]: [mcMMO] Potion format for Treasures.yml has changed
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 64
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 832
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 1088
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 2112
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 2368
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 2880
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 3904
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 4416
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 5184
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 5440
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 5696
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 17216
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 17472
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 18496
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 18752
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 19264
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 20288
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 20800
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 21568
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 21824
[12:23:46 WARN]: [mcMMO] Failed to load Alchemy potion: 22080
[12:23:47 INFO]: [PlotSquared] Enabling PlotSquared v3.5.0-SNAPSHOT-95f8aaa
[12:23:47 INFO]: [P2] Metrics enabled.
[12:23:47 INFO]: [P2]  PlotSquared is using online UUIDs
[12:23:47 INFO]: PlotSquared hooked into WorldEdit.
[12:23:47 INFO]: [P2] Key: plot-expiry, Value: false
[12:23:47 INFO]: [P2] Key: kill-road-mobs, Value: false
[12:23:47 INFO]: [P2] Key: worldedit-restrictions, Value: true
[12:23:47 INFO]: [P2] Key: database-purger, Value: false
[12:23:47 INFO]: [P2] Key: economy, Value: true
[12:23:47 INFO]: [P2] Key: block-cache, Value: true
[12:23:47 INFO]: [P2] Key: kill-road-vehicles, Value: false
[12:23:47 INFO]: [P2] Key: persistent-meta, Value: true
[12:23:47 INFO]: [P2] Key: ban-deleter, Value: false
[12:23:47 INFO]: [P2] Key: updater, Value: true
[12:23:47 INFO]: [P2] Key: database, Value: true
[12:23:47 INFO]: [P2] Key: plotme-converter, Value: true
[12:23:47 INFO]: [P2] Key: permission-cache, Value: true
[12:23:47 INFO]: [P2] Key: rating-cache, Value: true
[12:23:47 INFO]: [P2] Key: comment-notifier, Value: false
[12:23:47 INFO]: [P2] Key: metrics, Value: true
[12:23:47 INFO]: [P2] Key: chunk-processor, Value: false
[12:23:47 INFO]: [P2] Key: uuid-cache, Value: true
[12:23:47 INFO]: [P2] Key: events, Value: true
[12:23:47 INFO]: [P2] Key: commands, Value: true
[12:23:47 INFO]: PlotSquared is now enabled
[12:23:47 INFO]: [P2] Metrics enabled.
[12:23:47 INFO]: [Vault] Enabling Vault v1.5.6-b49
[12:23:47 INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[12:23:47 INFO]: [Vault] [Permission] GroupManager found: Waiting
[12:23:47 INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[12:23:47 INFO]: [Vault] [Chat] GroupManager found: Waiting
[12:23:47 INFO]: [Vault] Enabled Version 1.5.6-b49
[12:23:47 INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[12:23:47 INFO]: Preparing level "world"
[12:23:47 INFO]: -------- World Settings For [world] --------
[12:23:47 INFO]: Mob Spawn Range: 4
[12:23:47 INFO]: Cactus Growth Modifier: 100%
[12:23:47 INFO]: Cane Growth Modifier: 100%
[12:23:47 INFO]: Melon Growth Modifier: 100%
[12:23:47 INFO]: Mushroom Growth Modifier: 100%
[12:23:47 INFO]: Pumpkin Growth Modifier: 100%
[12:23:47 INFO]: Sapling Growth Modifier: 100%
[12:23:47 INFO]: Wheat Growth Modifier: 100%
[12:23:47 INFO]: NetherWart Growth Modifier: 100%
[12:23:47 INFO]: Vine Growth Modifier: 100%
[12:23:47 INFO]: Cocoa Growth Modifier: 100%
[12:23:47 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:47 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:47 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:47 INFO]: Random Lighting Updates: false
[12:23:47 INFO]: Structure Info Saving: true
[12:23:47 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:47 INFO]: Max TNT Explosions: 100
[12:23:47 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:47 INFO]: Item Despawn Rate: 6000
[12:23:47 INFO]: Item Merge Radius: 2.5
[12:23:47 INFO]: Arrow Despawn Rate: 1200
[12:23:47 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:47 INFO]: View Distance: 10
[12:23:47 INFO]: Experience Merge Radius: 3.0
[12:23:47 INFO]: Zombie Aggressive Towards Villager: true
[12:23:47 INFO]: Nerfing mobs spawned from spawners: false
[12:23:48 INFO]: CUSTOM TERRAIN: Scots pine forest
[12:23:48 INFO]: ~~~~~~~~~~~~[ EWG Settings for world ]~~~~~~~~~~~~
[12:23:48 INFO]: Biomes that will generated;
[12:23:48 INFO]:  * Mesa
[12:23:48 INFO]:  * Tropical Forest
[12:23:48 INFO]:  * Deciduous Forest
[12:23:48 INFO]:  * River
[12:23:48 INFO]:  * Deep Ocean
[12:23:48 INFO]:  * Birch Forest
[12:23:48 INFO]:  * Fantasy Forest
[12:23:48 INFO]:  * Bonsai Forest
[12:23:48 INFO]:  * Pine Forest 2
[12:23:48 INFO]:  * Pine Forest
[12:23:48 INFO]:  * Plains
[12:23:48 INFO]:  * Bonsai Forest
[12:23:48 INFO]:  * Jungle
[12:23:48 INFO]:  * Desert
[12:23:48 INFO]:  * Ocean
[12:23:48 INFO]:  * Forgotten Forest
[12:23:48 INFO]:  * Stone Forest
[12:23:48 INFO]:  * Scots pine forest
[12:23:48 INFO]: Generator version: 7.2.23
[12:23:48 INFO]: Biomes in total: 18
[12:23:48 INFO]: Preparing world injection
[12:23:48 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:48 INFO]: -------- World Settings For [world_nether] --------
[12:23:48 INFO]: Mob Spawn Range: 4
[12:23:48 INFO]: Cactus Growth Modifier: 100%
[12:23:48 INFO]: Cane Growth Modifier: 100%
[12:23:48 INFO]: Melon Growth Modifier: 100%
[12:23:48 INFO]: Mushroom Growth Modifier: 100%
[12:23:48 INFO]: Pumpkin Growth Modifier: 100%
[12:23:48 INFO]: Sapling Growth Modifier: 100%
[12:23:48 INFO]: Wheat Growth Modifier: 100%
[12:23:48 INFO]: NetherWart Growth Modifier: 100%
[12:23:48 INFO]: Vine Growth Modifier: 100%
[12:23:48 INFO]: Cocoa Growth Modifier: 100%
[12:23:48 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:48 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:48 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:48 INFO]: Random Lighting Updates: false
[12:23:48 INFO]: Structure Info Saving: true
[12:23:48 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:48 INFO]: Max TNT Explosions: 100
[12:23:48 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:48 INFO]: Item Despawn Rate: 6000
[12:23:48 INFO]: Item Merge Radius: 2.5
[12:23:48 INFO]: Arrow Despawn Rate: 1200
[12:23:48 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:48 INFO]: View Distance: 10
[12:23:48 INFO]: Experience Merge Radius: 3.0
[12:23:48 INFO]: Zombie Aggressive Towards Villager: true
[12:23:48 INFO]: Nerfing mobs spawned from spawners: false
[12:23:48 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:48 INFO]: -------- World Settings For [world_the_end] --------
[12:23:48 INFO]: Mob Spawn Range: 4
[12:23:48 INFO]: Cactus Growth Modifier: 100%
[12:23:48 INFO]: Cane Growth Modifier: 100%
[12:23:48 INFO]: Melon Growth Modifier: 100%
[12:23:48 INFO]: Mushroom Growth Modifier: 100%
[12:23:48 INFO]: Pumpkin Growth Modifier: 100%
[12:23:48 INFO]: Sapling Growth Modifier: 100%
[12:23:48 INFO]: Wheat Growth Modifier: 100%
[12:23:48 INFO]: NetherWart Growth Modifier: 100%
[12:23:48 INFO]: Vine Growth Modifier: 100%
[12:23:48 INFO]: Cocoa Growth Modifier: 100%
[12:23:48 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:48 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:48 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:48 INFO]: Random Lighting Updates: false
[12:23:48 INFO]: Structure Info Saving: true
[12:23:48 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:48 INFO]: Max TNT Explosions: 100
[12:23:48 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:48 INFO]: Item Despawn Rate: 6000
[12:23:48 INFO]: Item Merge Radius: 2.5
[12:23:48 INFO]: Arrow Despawn Rate: 1200
[12:23:48 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:48 INFO]: View Distance: 10
[12:23:48 INFO]: Experience Merge Radius: 3.0
[12:23:48 INFO]: Zombie Aggressive Towards Villager: true
[12:23:48 INFO]: Nerfing mobs spawned from spawners: false
[12:23:48 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:48 INFO]: Preparing start region for level 0 (Seed: 6707403072515731209)
[12:23:50 INFO]: Preparing spawn area: 47%
[12:23:50 INFO]: Preparing start region for level 1 (Seed: 6707403072515731209)
[12:23:51 INFO]: Preparing start region for level 2 (Seed: 6707403072515731209)
[12:23:51 INFO]: [ServerLogManager] Enabling ServerLogManager v1.3.0
[12:23:51 INFO]: <<[ ServerLogManager ]>>  [ Version ]=[ 1.3.0 ] [ Successfully Loaded! ]
[12:23:51 INFO]: [GroupManager] Enabling GroupManager v2.0.1-b332
[12:23:51 WARN]: GroupManager - WARNING - Inherited group 'randomtp.tp' not found for group Moderator. Ignoring entry in file: plugins/GroupManager/worlds/world/groups.yml
[12:23:51 INFO]: GroupManager - INFO - World Found: minigames
[12:23:51 WARN]: GroupManager - WARNING - The group 'Citizen' is claiming to be default where 'Basic' already was.
[12:23:51 WARN]: GroupManager - WARNING - Overriding first default request in file: plugins/GroupManager/worlds/minigames/groups.yml
[12:23:51 WARN]: GroupManager - WARNING - Inherited group 'Minigames' not found for group Member. Ignoring entry in file: plugins/GroupManager/worlds/minigames/groups.yml
[12:23:51 INFO]: GroupManager - INFO - World Found: factions_nether
[12:23:51 INFO]: GroupManager - INFO - World Found: 1-portal-hub
[12:23:51 INFO]: GroupManager - INFO - World Found: world
[12:23:51 INFO]: GroupManager - INFO - World Found: plotworld
[12:23:51 INFO]: GroupManager - INFO - World Found: buildworld
[12:23:51 WARN]: GroupManager - WARNING - Inherited group 'Adventurer' not found for group Member. Ignoring entry in file: plugins/GroupManager/worlds/buildworld/groups.yml
[12:23:51 INFO]: GroupManager - INFO - World Found: 1-10-world
[12:23:51 WARN]: GroupManager - WARNING - Overriding first default request in file: plugins/GroupManager/worlds/1-10-world/groups.yml
[12:23:51 INFO]: GroupManager - INFO - World Found: wilderness_nether
[12:23:51 INFO]: GroupManager - INFO - World Found: factions
[12:23:51 INFO]: GroupManager - INFO - World Found: world_nether
[12:23:51 INFO]: GroupManager - INFO - World Found: newend
[12:23:51 INFO]: GroupManager - INFO - World Found: rpgold
[12:23:51 INFO]: GroupManager - INFO - World Found: wilderness
[12:23:51 INFO]: GroupManager - INFO - World Found: towny
[12:23:51 INFO]: GroupManager - INFO - World Found: factions_the_end
[12:23:51 INFO]: GroupManager - INFO - World Found: spawn
[12:23:51 WARN]: GroupManager - WARNING - Inherited group 'Adventurer' not found for group Member. Ignoring entry in file: plugins/GroupManager/worlds/spawn/groups.yml
[12:23:51 INFO]: GroupManager - INFO - Superperms support enabled.
[12:23:51 INFO]: GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
[12:23:51 INFO]: GroupManager - INFO - Backups will be retained for 24 hours!
[12:23:51 INFO]: GroupManager version 2.0.1-b332 is enabled!
[12:23:51 INFO]: [Vault][Permission] GroupManager hooked.
[12:23:51 INFO]: [Vault][Chat] GroupManager - Chat hooked.
[12:23:51 INFO]: [VoxelSniper] Enabling VoxelSniper v5.171.0-SNAPSHOT
[12:23:51 INFO]: [VoxelSniper] Registered 75 Sniper Brushes with 149 handles.
[12:23:51 INFO]: [VoxelSniper] Registered Sniper Listener.
[12:23:51 INFO]: [RandomTeleport] Enabling RandomTeleport vmaven-version-number
[12:23:51 INFO]: [RandomTP] Auto-Updater disabled! If you would like to have RandomTP Update itself please set Enable to true!
[12:23:51 INFO]: [RandomTP] Enabled!
[12:23:51 INFO]: [ViaVersion] Enabling ViaVersion v1.1.1
[12:23:51 INFO]: [ToggleSneak] Enabling ToggleSneak v4.0
[12:23:51 INFO]: [ToggleSneak Version-4.0] Has been Enabled!
[12:23:52 INFO]: [FirstJoinPlus] Enabling FirstJoinPlus v2.4.1
[12:23:52 INFO]: [MagicLamps] Enabling MagicLamps v0.3.3
[12:23:52 INFO]: [MagicLamps] Info submitted to mcstats.org
[12:23:52 ERROR]: Error occurred while enabling MagicLamps v0.3.3 (Is it up to date?)
1 4
[12:23:52 INFO]: [WorldBorder] Enabling WorldBorder v1.8.2
[12:23:52 INFO]: [WorldBorder] [CONFIG] Using elliptic/round border, knockback of 5.0 blocks, and timer delay of 5.
[12:23:52 INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[12:23:52 INFO]: [WorldBorder] [CONFIG] World "Factions" has border radius 1000 at X: -347.5 Z: 85.1
[12:23:52 INFO]: [WorldBorder] [CONFIG] World "plotworld" has border radius 2000 at X: 0.5 Z: 0.3 (shape override: rectangular/square)
[12:23:52 INFO]: [WorldBorder] [CONFIG] World "Spawn" has border radius 500 at X: 720.5 Z: -922.6
[12:23:52 INFO]: [WorldBorder] [CONFIG] World "1-10-world" has border radius 7500 at X: 0.0 Z: 0.0 (shape override: rectangular/square)
[12:23:52 INFO]: [WorldBorder] For reference, the main world's spawn location is at X: -90.0 Y: 96.0 Z: -430.0
[12:23:52 INFO]: [Votifier] Enabling Votifier v1.9
[12:23:52 WARN]: [Votifier] No listeners loaded! Cannot find listener directory 'plugins/Votifier/listeners' 
[12:23:52 INFO]: [Votifier] Votifier enabled.
[12:23:52 INFO]: [Effect Library] Enabling EffectLib v5.0
[12:23:52 INFO]: [WorldEdit] Enabling WorldEdit v6.1.5;4651611
[12:23:52 INFO]: WEPIF: GroupManager detected! Using GroupManager for permissions.
[12:23:52 INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_11_R1 as the Bukkit adapter
[12:23:52 INFO]: [WorldGuard] Enabling WorldGuard v6.1.2;e38d98d
[12:23:52 INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[12:23:52 INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[12:23:52 INFO]: [WorldGuard] (world) Lava fire is blocked.
[12:23:52 INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[12:23:52 INFO]: [WorldGuard] Loaded configuration for world 'world'
[12:23:52 INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[12:23:52 INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[12:23:52 INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[12:23:52 INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[12:23:52 INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[12:23:52 INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[12:23:52 INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[12:23:52 INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[12:23:52 INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[12:23:52 INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[12:23:52 INFO]: [WorldGuard] Loading region data...
[12:23:52 INFO]: [Lift] Enabling Lift v51
[12:23:52 INFO]: Lift v51 is now enabled!
[12:23:52 INFO]: [StackableItems] Enabling StackableItems v1.0.5
[12:23:54 INFO]: [PerWorldInventory] Enabling PerWorldInventory v1.10.0
[12:23:54 WARN]: [PerWorldInventory] Could not save default.json to plugins/PerWorldInventory/default.json because default.json already exists.
[12:23:54 INFO]: [PerWorldInventory] Registering listeners...
[12:23:54 INFO]: [PerWorldInventory] Listeners registered!
[12:23:54 INFO]: [PerWorldInventory] Registering commands...
[12:23:54 INFO]: [PerWorldInventory] Commands registered!
[12:23:54 INFO]: [PerWorldInventory] Vault found! Hooking into it...
[12:23:54 INFO]: [PerWorldInventory] Hooked into Vault!
[12:23:54 INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5-b688
[12:23:54 INFO]: [Multiverse-Core] [AllPay] - Version 13.0 - hooked into Essentials Economy for Multiverse-Core v2.5-b688
[12:23:54 INFO]: -------- World Settings For [newEnd] --------
[12:23:54 INFO]: Mob Spawn Range: 4
[12:23:54 INFO]: Cactus Growth Modifier: 100%
[12:23:54 INFO]: Cane Growth Modifier: 100%
[12:23:54 INFO]: Melon Growth Modifier: 100%
[12:23:54 INFO]: Mushroom Growth Modifier: 100%
[12:23:54 INFO]: Pumpkin Growth Modifier: 100%
[12:23:54 INFO]: Sapling Growth Modifier: 100%
[12:23:54 INFO]: Wheat Growth Modifier: 100%
[12:23:54 INFO]: NetherWart Growth Modifier: 100%
[12:23:54 INFO]: Vine Growth Modifier: 100%
[12:23:54 INFO]: Cocoa Growth Modifier: 100%
[12:23:54 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:54 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:54 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:54 INFO]: Random Lighting Updates: false
[12:23:54 INFO]: Structure Info Saving: true
[12:23:54 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:54 INFO]: Max TNT Explosions: 100
[12:23:54 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:54 INFO]: Item Despawn Rate: 6000
[12:23:54 INFO]: Item Merge Radius: 2.5
[12:23:54 INFO]: Arrow Despawn Rate: 1200
[12:23:54 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:54 INFO]: View Distance: 10
[12:23:54 INFO]: Experience Merge Radius: 3.0
[12:23:54 INFO]: Zombie Aggressive Towards Villager: true
[12:23:54 INFO]: Nerfing mobs spawned from spawners: false
[12:23:54 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:54 INFO]: Preparing start region for level 3 (Seed: -6957808050608288351)
[12:23:54 INFO]: [WorldGuard] (newEnd) TNT ignition is PERMITTED.
[12:23:54 INFO]: [WorldGuard] (newEnd) Lighters are PERMITTED.
[12:23:54 INFO]: [WorldGuard] (newEnd) Lava fire is blocked.
[12:23:54 INFO]: [WorldGuard] (newEnd) Fire spread is UNRESTRICTED.
[12:23:54 INFO]: [WorldGuard] Loaded configuration for world 'newEnd'
[12:23:54 INFO]: -------- World Settings For [buildworld] --------
[12:23:54 INFO]: Mob Spawn Range: 4
[12:23:54 INFO]: Cactus Growth Modifier: 100%
[12:23:54 INFO]: Cane Growth Modifier: 100%
[12:23:54 INFO]: Melon Growth Modifier: 100%
[12:23:54 INFO]: Mushroom Growth Modifier: 100%
[12:23:54 INFO]: Pumpkin Growth Modifier: 100%
[12:23:54 INFO]: Sapling Growth Modifier: 100%
[12:23:54 INFO]: Wheat Growth Modifier: 100%
[12:23:54 INFO]: NetherWart Growth Modifier: 100%
[12:23:54 INFO]: Vine Growth Modifier: 100%
[12:23:54 INFO]: Cocoa Growth Modifier: 100%
[12:23:54 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:54 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:54 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:54 INFO]: Random Lighting Updates: false
[12:23:54 INFO]: Structure Info Saving: true
[12:23:54 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:54 INFO]: Max TNT Explosions: 100
[12:23:54 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:54 INFO]: Item Despawn Rate: 6000
[12:23:54 INFO]: Item Merge Radius: 2.5
[12:23:54 INFO]: Arrow Despawn Rate: 1200
[12:23:54 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:54 INFO]: View Distance: 10
[12:23:54 INFO]: Experience Merge Radius: 3.0
[12:23:54 INFO]: Zombie Aggressive Towards Villager: true
[12:23:54 INFO]: Nerfing mobs spawned from spawners: false
[12:23:54 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:54 INFO]: Preparing start region for level 4 (Seed: 6517961929168672979)
[12:23:55 INFO]: [WorldGuard] (buildworld) TNT ignition is PERMITTED.
[12:23:55 INFO]: [WorldGuard] (buildworld) Lighters are PERMITTED.
[12:23:55 INFO]: [WorldGuard] (buildworld) Lava fire is blocked.
[12:23:55 INFO]: [WorldGuard] (buildworld) Fire spread is UNRESTRICTED.
[12:23:55 INFO]: [WorldGuard] Loaded configuration for world 'buildworld'
[12:23:55 INFO]: -------- World Settings For [Factions] --------
[12:23:55 INFO]: Mob Spawn Range: 4
[12:23:55 INFO]: Cactus Growth Modifier: 100%
[12:23:55 INFO]: Cane Growth Modifier: 100%
[12:23:55 INFO]: Melon Growth Modifier: 100%
[12:23:55 INFO]: Mushroom Growth Modifier: 100%
[12:23:55 INFO]: Pumpkin Growth Modifier: 100%
[12:23:55 INFO]: Sapling Growth Modifier: 100%
[12:23:55 INFO]: Wheat Growth Modifier: 100%
[12:23:55 INFO]: NetherWart Growth Modifier: 100%
[12:23:55 INFO]: Vine Growth Modifier: 100%
[12:23:55 INFO]: Cocoa Growth Modifier: 100%
[12:23:55 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:55 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:55 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:55 INFO]: Random Lighting Updates: false
[12:23:55 INFO]: Structure Info Saving: true
[12:23:55 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:55 INFO]: Max TNT Explosions: 100
[12:23:55 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:55 INFO]: Item Despawn Rate: 6000
[12:23:55 INFO]: Item Merge Radius: 2.5
[12:23:55 INFO]: Arrow Despawn Rate: 1200
[12:23:55 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:55 INFO]: View Distance: 10
[12:23:55 INFO]: Experience Merge Radius: 3.0
[12:23:55 INFO]: Zombie Aggressive Towards Villager: true
[12:23:55 INFO]: Nerfing mobs spawned from spawners: false
[12:23:55 INFO]: CUSTOM TERRAIN: Scots pine forest
[12:23:55 INFO]: ~~~~~~~~~~~~[ EWG Settings for Factions ]~~~~~~~~~~~~
[12:23:55 INFO]: Biomes that will generated;
[12:23:55 INFO]:  * Mesa
[12:23:55 INFO]:  * Tropical Forest
[12:23:55 INFO]:  * Deciduous Forest
[12:23:55 INFO]:  * River
[12:23:55 INFO]:  * Deep Ocean
[12:23:55 INFO]:  * Birch Forest
[12:23:55 INFO]:  * Fantasy Forest
[12:23:55 INFO]:  * Bonsai Forest
[12:23:55 INFO]:  * Pine Forest 2
[12:23:55 INFO]:  * Pine Forest
[12:23:55 INFO]:  * Plains
[12:23:55 INFO]:  * Bonsai Forest
[12:23:55 INFO]:  * Jungle
[12:23:55 INFO]:  * Desert
[12:23:55 INFO]:  * Ocean
[12:23:55 INFO]:  * Forgotten Forest
[12:23:55 INFO]:  * Stone Forest
[12:23:55 INFO]:  * Scots pine forest
[12:23:55 INFO]: Generator version: 7.2.23
[12:23:55 INFO]: Biomes in total: 18
[12:23:55 INFO]: Preparing world injection
[12:23:55 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:55 INFO]: Preparing start region for level 5 (Seed: -5984126626515008815)
[12:23:55 INFO]: [WorldGuard] (Factions) TNT ignition is PERMITTED.
[12:23:55 INFO]: [WorldGuard] (Factions) Lighters are PERMITTED.
[12:23:55 INFO]: [WorldGuard] (Factions) Lava fire is blocked.
[12:23:55 INFO]: [WorldGuard] (Factions) Fire spread is UNRESTRICTED.
[12:23:55 INFO]: [WorldGuard] Loaded configuration for world 'Factions'
[12:23:55 INFO]: -------- World Settings For [Wilderness] --------
[12:23:55 INFO]: Mob Spawn Range: 4
[12:23:55 INFO]: Cactus Growth Modifier: 100%
[12:23:55 INFO]: Cane Growth Modifier: 100%
[12:23:55 INFO]: Melon Growth Modifier: 100%
[12:23:55 INFO]: Mushroom Growth Modifier: 100%
[12:23:55 INFO]: Pumpkin Growth Modifier: 100%
[12:23:55 INFO]: Sapling Growth Modifier: 100%
[12:23:55 INFO]: Wheat Growth Modifier: 100%
[12:23:55 INFO]: NetherWart Growth Modifier: 100%
[12:23:55 INFO]: Vine Growth Modifier: 100%
[12:23:55 INFO]: Cocoa Growth Modifier: 100%
[12:23:55 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:55 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:55 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:55 INFO]: Random Lighting Updates: false
[12:23:55 INFO]: Structure Info Saving: true
[12:23:55 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:55 INFO]: Max TNT Explosions: 100
[12:23:55 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:55 INFO]: Item Despawn Rate: 6000
[12:23:55 INFO]: Item Merge Radius: 2.5
[12:23:55 INFO]: Arrow Despawn Rate: 1200
[12:23:55 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:55 INFO]: View Distance: 10
[12:23:55 INFO]: Experience Merge Radius: 3.0
[12:23:55 INFO]: Zombie Aggressive Towards Villager: true
[12:23:55 INFO]: Nerfing mobs spawned from spawners: false
[12:23:55 INFO]: CUSTOM TERRAIN: Scots pine forest
[12:23:55 INFO]: ~~~~~~~~~~~~[ EWG Settings for Wilderness ]~~~~~~~~~~~~
[12:23:55 INFO]: Biomes that will generated;
[12:23:55 INFO]:  * Mesa
[12:23:55 INFO]:  * Tropical Forest
[12:23:55 INFO]:  * Deciduous Forest
[12:23:55 INFO]:  * River
[12:23:55 INFO]:  * Deep Ocean
[12:23:55 INFO]:  * Birch Forest
[12:23:55 INFO]:  * Fantasy Forest
[12:23:55 INFO]:  * Bonsai Forest
[12:23:55 INFO]:  * Pine Forest 2
[12:23:55 INFO]:  * Pine Forest
[12:23:55 INFO]:  * Plains
[12:23:55 INFO]:  * Bonsai Forest
[12:23:55 INFO]:  * Jungle
[12:23:55 INFO]:  * Desert
[12:23:55 INFO]:  * Ocean
[12:23:55 INFO]:  * Forgotten Forest
[12:23:55 INFO]:  * Stone Forest
[12:23:55 INFO]:  * Scots pine forest
[12:23:55 INFO]: Generator version: 7.2.23
[12:23:55 INFO]: Biomes in total: 18
[12:23:55 INFO]: Preparing world injection
[12:23:55 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:55 INFO]: Preparing start region for level 6 (Seed: 3549369577323084955)
[12:23:55 INFO]: [WorldGuard] (Wilderness) TNT ignition is PERMITTED.
[12:23:55 INFO]: [WorldGuard] (Wilderness) Lighters are PERMITTED.
[12:23:55 INFO]: [WorldGuard] (Wilderness) Lava fire is blocked.
[12:23:55 INFO]: [WorldGuard] (Wilderness) Fire spread is UNRESTRICTED.
[12:23:55 INFO]: [WorldGuard] Loaded configuration for world 'Wilderness'
[12:23:55 INFO]: -------- World Settings For [1-10-world] --------
[12:23:55 INFO]: Mob Spawn Range: 4
[12:23:55 INFO]: Cactus Growth Modifier: 100%
[12:23:55 INFO]: Cane Growth Modifier: 100%
[12:23:55 INFO]: Melon Growth Modifier: 100%
[12:23:55 INFO]: Mushroom Growth Modifier: 100%
[12:23:55 INFO]: Pumpkin Growth Modifier: 100%
[12:23:55 INFO]: Sapling Growth Modifier: 100%
[12:23:55 INFO]: Wheat Growth Modifier: 100%
[12:23:55 INFO]: NetherWart Growth Modifier: 100%
[12:23:55 INFO]: Vine Growth Modifier: 100%
[12:23:55 INFO]: Cocoa Growth Modifier: 100%
[12:23:55 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:55 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:55 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:55 INFO]: Random Lighting Updates: false
[12:23:55 INFO]: Structure Info Saving: true
[12:23:55 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:55 INFO]: Max TNT Explosions: 100
[12:23:55 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:55 INFO]: Item Despawn Rate: 6000
[12:23:55 INFO]: Item Merge Radius: 2.5
[12:23:55 INFO]: Arrow Despawn Rate: 1200
[12:23:55 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:55 INFO]: View Distance: 10
[12:23:55 INFO]: Experience Merge Radius: 3.0
[12:23:55 INFO]: Zombie Aggressive Towards Villager: true
[12:23:55 INFO]: Nerfing mobs spawned from spawners: false
[12:23:55 INFO]: CUSTOM TERRAIN: Scots pine forest
[12:23:55 INFO]: ~~~~~~~~~~~~[ EWG Settings for 1-10-world ]~~~~~~~~~~~~
[12:23:55 INFO]: Biomes that will generated;
[12:23:55 INFO]:  * Mesa
[12:23:55 INFO]:  * Tropical Forest
[12:23:55 INFO]:  * Deciduous Forest
[12:23:55 INFO]:  * River
[12:23:55 INFO]:  * Deep Ocean
[12:23:55 INFO]:  * Birch Forest
[12:23:55 INFO]:  * Fantasy Forest
[12:23:55 INFO]:  * Bonsai Forest
[12:23:55 INFO]:  * Pine Forest 2
[12:23:55 INFO]:  * Pine Forest
[12:23:55 INFO]:  * Plains
[12:23:55 INFO]:  * Bonsai Forest
[12:23:55 INFO]:  * Jungle
[12:23:55 INFO]:  * Desert
[12:23:55 INFO]:  * Ocean
[12:23:55 INFO]:  * Forgotten Forest
[12:23:55 INFO]:  * Stone Forest
[12:23:55 INFO]:  * Scots pine forest
[12:23:55 INFO]: Generator version: 7.2.23
[12:23:55 INFO]: Biomes in total: 18
[12:23:55 INFO]: Preparing world injection
[12:23:55 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:55 INFO]: Preparing start region for level 7 (Seed: 659579295)
[12:23:56 INFO]: [WorldGuard] (1-10-world) TNT ignition is PERMITTED.
[12:23:56 INFO]: [WorldGuard] (1-10-world) Lighters are PERMITTED.
[12:23:56 INFO]: [WorldGuard] (1-10-world) Lava fire is blocked.
[12:23:56 INFO]: [WorldGuard] (1-10-world) Fire spread is UNRESTRICTED.
[12:23:56 INFO]: [WorldGuard] Loaded configuration for world '1-10-world'
[12:23:56 INFO]: Using connector: com.plotsquared.bukkit.database.plotme.ClassicPlotMeConnector
[12:23:56 INFO]: PlotMe->PlotSquared: PlotMe conversion has started. To disable this, please set 'enabled-components -> plotme-converter' to false in the 'settings.yml'
[12:23:56 INFO]: PlotMe->PlotSquared: Connecting to PlotMe DB
[12:23:56 INFO]: PlotMe->PlotSquared: Collecting plot data
[12:23:56 INFO]: PlotMe->PlotSquared:  - plotmePlots
[12:23:56 INFO]: PlotMe->PlotSquared: Updating bukkit.yml
[12:23:56 INFO]: PlotMe->PlotSquared: Copying config for: plotworld
[12:23:56 INFO]:  - plotmeDenied
[12:23:56 INFO]: Could not identify denied for plot: 0;-6
[12:23:56 INFO]: PlotMe->PlotSquared:  - plotmeAllowed
[12:23:56 INFO]: PlotMe->PlotSquared: Collected 297 plots from PlotMe
[12:23:56 INFO]: [WARNING] Found 297 duplicate plots already in DB for world: 'plotworld'. Have you run the converter already?
[12:23:56 INFO]: PlotMe->PlotSquared: Creating plot DB
[12:23:57 INFO]: PlotMe->PlotSquared: Saving configuration...
[12:23:57 INFO]: -------- World Settings For [plotworld] --------
[12:23:57 INFO]: Mob Spawn Range: 4
[12:23:57 INFO]: Cactus Growth Modifier: 100%
[12:23:57 INFO]: Cane Growth Modifier: 100%
[12:23:57 INFO]: Melon Growth Modifier: 100%
[12:23:57 INFO]: Mushroom Growth Modifier: 100%
[12:23:57 INFO]: Pumpkin Growth Modifier: 100%
[12:23:57 INFO]: Sapling Growth Modifier: 100%
[12:23:57 INFO]: Wheat Growth Modifier: 100%
[12:23:57 INFO]: NetherWart Growth Modifier: 100%
[12:23:57 INFO]: Vine Growth Modifier: 100%
[12:23:57 INFO]: Cocoa Growth Modifier: 100%
[12:23:57 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:57 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:57 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:57 INFO]: Random Lighting Updates: false
[12:23:57 INFO]: Structure Info Saving: true
[12:23:57 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:57 INFO]: Max TNT Explosions: 100
[12:23:57 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:57 INFO]: Item Despawn Rate: 6000
[12:23:57 INFO]: Item Merge Radius: 2.5
[12:23:57 INFO]: Arrow Despawn Rate: 1200
[12:23:57 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:57 INFO]: View Distance: 10
[12:23:57 INFO]: Experience Merge Radius: 3.0
[12:23:57 INFO]: Zombie Aggressive Towards Villager: true
[12:23:57 INFO]: Nerfing mobs spawned from spawners: false
[12:23:57 INFO]: [P2] Detected world load for 'plotworld'
[12:23:57 INFO]: [P2]  - generator: PlotSquared>PlotSquared
[12:23:57 INFO]: [P2]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[12:23:57 INFO]: [P2]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[12:23:57 INFO]: [P2]  - schematic: false
[12:23:57 INFO]: World possibly already loaded: plotworld
[12:23:57 INFO]: Preparing start region for level 8 (Seed: 8762336733806700265)
[12:23:58 INFO]: [WorldGuard] (plotworld) TNT ignition is PERMITTED.
[12:23:58 INFO]: [WorldGuard] (plotworld) Lighters are PERMITTED.
[12:23:58 INFO]: [WorldGuard] (plotworld) Lava fire is blocked.
[12:23:58 INFO]: [WorldGuard] (plotworld) Fire spread is UNRESTRICTED.
[12:23:58 INFO]: [WorldGuard] Loaded configuration for world 'plotworld'
[12:23:58 INFO]: -------- World Settings For [RPG] --------
[12:23:58 INFO]: Mob Spawn Range: 4
[12:23:58 INFO]: Cactus Growth Modifier: 100%
[12:23:58 INFO]: Cane Growth Modifier: 100%
[12:23:58 INFO]: Melon Growth Modifier: 100%
[12:23:58 INFO]: Mushroom Growth Modifier: 100%
[12:23:58 INFO]: Pumpkin Growth Modifier: 100%
[12:23:58 INFO]: Sapling Growth Modifier: 100%
[12:23:58 INFO]: Wheat Growth Modifier: 100%
[12:23:58 INFO]: NetherWart Growth Modifier: 100%
[12:23:58 INFO]: Vine Growth Modifier: 100%
[12:23:58 INFO]: Cocoa Growth Modifier: 100%
[12:23:58 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:58 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:58 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:58 INFO]: Random Lighting Updates: false
[12:23:58 INFO]: Structure Info Saving: true
[12:23:58 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:58 INFO]: Max TNT Explosions: 100
[12:23:58 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:58 INFO]: Item Despawn Rate: 6000
[12:23:58 INFO]: Item Merge Radius: 2.5
[12:23:58 INFO]: Arrow Despawn Rate: 1200
[12:23:58 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:58 INFO]: View Distance: 10
[12:23:58 INFO]: Experience Merge Radius: 3.0
[12:23:58 INFO]: Zombie Aggressive Towards Villager: true
[12:23:58 INFO]: Nerfing mobs spawned from spawners: false
[12:23:58 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:58 INFO]: Preparing start region for level 9 (Seed: 6517961929168672979)
[12:23:58 INFO]: [WorldGuard] (RPG) TNT ignition is PERMITTED.
[12:23:58 INFO]: [WorldGuard] (RPG) Lighters are PERMITTED.
[12:23:58 INFO]: [WorldGuard] (RPG) Lava fire is blocked.
[12:23:58 INFO]: [WorldGuard] (RPG) Fire spread is UNRESTRICTED.
[12:23:58 INFO]: [WorldGuard] Loaded configuration for world 'RPG'
[12:23:58 WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: RPGold
[12:23:58 WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[12:23:58 INFO]: -------- World Settings For [1-Portal-Hub] --------
[12:23:58 INFO]: Mob Spawn Range: 4
[12:23:58 INFO]: Cactus Growth Modifier: 100%
[12:23:58 INFO]: Cane Growth Modifier: 100%
[12:23:58 INFO]: Melon Growth Modifier: 100%
[12:23:58 INFO]: Mushroom Growth Modifier: 100%
[12:23:58 INFO]: Pumpkin Growth Modifier: 100%
[12:23:58 INFO]: Sapling Growth Modifier: 100%
[12:23:58 INFO]: Wheat Growth Modifier: 100%
[12:23:58 INFO]: NetherWart Growth Modifier: 100%
[12:23:58 INFO]: Vine Growth Modifier: 100%
[12:23:58 INFO]: Cocoa Growth Modifier: 100%
[12:23:58 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:58 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:58 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:58 INFO]: Random Lighting Updates: false
[12:23:58 INFO]: Structure Info Saving: true
[12:23:58 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:58 INFO]: Max TNT Explosions: 100
[12:23:58 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:58 INFO]: Item Despawn Rate: 6000
[12:23:58 INFO]: Item Merge Radius: 2.5
[12:23:58 INFO]: Arrow Despawn Rate: 1200
[12:23:58 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:58 INFO]: View Distance: 10
[12:23:58 INFO]: Experience Merge Radius: 3.0
[12:23:58 INFO]: Zombie Aggressive Towards Villager: true
[12:23:58 INFO]: Nerfing mobs spawned from spawners: false
[12:23:58 INFO]: CUSTOM TERRAIN: Scots pine forest
[12:23:58 INFO]: ~~~~~~~~~~~~[ EWG Settings for 1-Portal-Hub ]~~~~~~~~~~~~
[12:23:58 INFO]: Biomes that will generated;
[12:23:58 INFO]:  * Mesa
[12:23:58 INFO]:  * Tropical Forest
[12:23:58 INFO]:  * Deciduous Forest
[12:23:58 INFO]:  * River
[12:23:58 INFO]:  * Deep Ocean
[12:23:58 INFO]:  * Birch Forest
[12:23:58 INFO]:  * Fantasy Forest
[12:23:58 INFO]:  * Bonsai Forest
[12:23:58 INFO]:  * Pine Forest 2
[12:23:58 INFO]:  * Pine Forest
[12:23:58 INFO]:  * Plains
[12:23:58 INFO]:  * Bonsai Forest
[12:23:58 INFO]:  * Jungle
[12:23:58 INFO]:  * Desert
[12:23:58 INFO]:  * Ocean
[12:23:58 INFO]:  * Forgotten Forest
[12:23:58 INFO]:  * Stone Forest
[12:23:58 INFO]:  * Scots pine forest
[12:23:58 INFO]: Generator version: 7.2.23
[12:23:58 INFO]: Biomes in total: 18
[12:23:58 INFO]: Preparing world injection
[12:23:58 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:58 INFO]: Preparing start region for level 10 (Seed: -8272316117306947375)
[12:23:59 INFO]: [WorldGuard] (1-Portal-Hub) TNT ignition is PERMITTED.
[12:23:59 INFO]: [WorldGuard] (1-Portal-Hub) Lighters are PERMITTED.
[12:23:59 INFO]: [WorldGuard] (1-Portal-Hub) Lava fire is blocked.
[12:23:59 INFO]: [WorldGuard] (1-Portal-Hub) Fire spread is UNRESTRICTED.
[12:23:59 INFO]: [WorldGuard] Loaded configuration for world '1-Portal-Hub'
[12:23:59 INFO]: -------- World Settings For [Minigames] --------
[12:23:59 INFO]: Mob Spawn Range: 4
[12:23:59 INFO]: Cactus Growth Modifier: 100%
[12:23:59 INFO]: Cane Growth Modifier: 100%
[12:23:59 INFO]: Melon Growth Modifier: 100%
[12:23:59 INFO]: Mushroom Growth Modifier: 100%
[12:23:59 INFO]: Pumpkin Growth Modifier: 100%
[12:23:59 INFO]: Sapling Growth Modifier: 100%
[12:23:59 INFO]: Wheat Growth Modifier: 100%
[12:23:59 INFO]: NetherWart Growth Modifier: 100%
[12:23:59 INFO]: Vine Growth Modifier: 100%
[12:23:59 INFO]: Cocoa Growth Modifier: 100%
[12:23:59 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:59 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:59 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:59 INFO]: Random Lighting Updates: false
[12:23:59 INFO]: Structure Info Saving: true
[12:23:59 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:59 INFO]: Max TNT Explosions: 100
[12:23:59 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:59 INFO]: Item Despawn Rate: 6000
[12:23:59 INFO]: Item Merge Radius: 2.5
[12:23:59 INFO]: Arrow Despawn Rate: 1200
[12:23:59 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:59 INFO]: View Distance: 10
[12:23:59 INFO]: Experience Merge Radius: 3.0
[12:23:59 INFO]: Zombie Aggressive Towards Villager: true
[12:23:59 INFO]: Nerfing mobs spawned from spawners: false
[12:23:59 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:59 INFO]: Preparing start region for level 11 (Seed: 4149001325058462572)
[12:23:59 INFO]: [WorldGuard] (Minigames) TNT ignition is PERMITTED.
[12:23:59 INFO]: [WorldGuard] (Minigames) Lighters are PERMITTED.
[12:23:59 INFO]: [WorldGuard] (Minigames) Lava fire is blocked.
[12:23:59 INFO]: [WorldGuard] (Minigames) Fire spread is UNRESTRICTED.
[12:23:59 INFO]: [WorldGuard] Loaded configuration for world 'Minigames'
[12:23:59 INFO]: -------- World Settings For [wilderness_nether] --------
[12:23:59 INFO]: Mob Spawn Range: 4
[12:23:59 INFO]: Cactus Growth Modifier: 100%
[12:23:59 INFO]: Cane Growth Modifier: 100%
[12:23:59 INFO]: Melon Growth Modifier: 100%
[12:23:59 INFO]: Mushroom Growth Modifier: 100%
[12:23:59 INFO]: Pumpkin Growth Modifier: 100%
[12:23:59 INFO]: Sapling Growth Modifier: 100%
[12:23:59 INFO]: Wheat Growth Modifier: 100%
[12:23:59 INFO]: NetherWart Growth Modifier: 100%
[12:23:59 INFO]: Vine Growth Modifier: 100%
[12:23:59 INFO]: Cocoa Growth Modifier: 100%
[12:23:59 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:23:59 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:23:59 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:23:59 INFO]: Random Lighting Updates: false
[12:23:59 INFO]: Structure Info Saving: true
[12:23:59 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:23:59 INFO]: Max TNT Explosions: 100
[12:23:59 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:23:59 INFO]: Item Despawn Rate: 6000
[12:23:59 INFO]: Item Merge Radius: 2.5
[12:23:59 INFO]: Arrow Despawn Rate: 1200
[12:23:59 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:23:59 INFO]: View Distance: 10
[12:23:59 INFO]: Experience Merge Radius: 3.0
[12:23:59 INFO]: Zombie Aggressive Towards Villager: true
[12:23:59 INFO]: Nerfing mobs spawned from spawners: false
[12:23:59 INFO]: BukkitPlotGenerator does not fully support: null
[12:23:59 INFO]: Preparing start region for level 12 (Seed: 7439175175912865986)
[12:24:00 INFO]: [WorldGuard] (wilderness_nether) TNT ignition is PERMITTED.
[12:24:00 INFO]: [WorldGuard] (wilderness_nether) Lighters are PERMITTED.
[12:24:00 INFO]: [WorldGuard] (wilderness_nether) Lava fire is blocked.
[12:24:00 INFO]: [WorldGuard] (wilderness_nether) Fire spread is UNRESTRICTED.
[12:24:00 INFO]: [WorldGuard] Loaded configuration for world 'wilderness_nether'
[12:24:00 INFO]: -------- World Settings For [Factions_nether] --------
[12:24:00 INFO]: Mob Spawn Range: 4
[12:24:00 INFO]: Cactus Growth Modifier: 100%
[12:24:00 INFO]: Cane Growth Modifier: 100%
[12:24:00 INFO]: Melon Growth Modifier: 100%
[12:24:00 INFO]: Mushroom Growth Modifier: 100%
[12:24:00 INFO]: Pumpkin Growth Modifier: 100%
[12:24:00 INFO]: Sapling Growth Modifier: 100%
[12:24:00 INFO]: Wheat Growth Modifier: 100%
[12:24:00 INFO]: NetherWart Growth Modifier: 100%
[12:24:00 INFO]: Vine Growth Modifier: 100%
[12:24:00 INFO]: Cocoa Growth Modifier: 100%
[12:24:00 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:24:00 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:24:00 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:24:00 INFO]: Random Lighting Updates: false
[12:24:00 INFO]: Structure Info Saving: true
[12:24:00 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:24:00 INFO]: Max TNT Explosions: 100
[12:24:00 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:24:00 INFO]: Item Despawn Rate: 6000
[12:24:00 INFO]: Item Merge Radius: 2.5
[12:24:00 INFO]: Arrow Despawn Rate: 1200
[12:24:00 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:24:00 INFO]: View Distance: 10
[12:24:00 INFO]: Experience Merge Radius: 3.0
[12:24:00 INFO]: Zombie Aggressive Towards Villager: true
[12:24:00 INFO]: Nerfing mobs spawned from spawners: false
[12:24:00 INFO]: BukkitPlotGenerator does not fully support: null
[12:24:00 INFO]: Preparing start region for level 13 (Seed: 4073449074923023755)
[12:24:00 INFO]: [WorldGuard] (Factions_nether) TNT ignition is PERMITTED.
[12:24:00 INFO]: [WorldGuard] (Factions_nether) Lighters are PERMITTED.
[12:24:00 INFO]: [WorldGuard] (Factions_nether) Lava fire is blocked.
[12:24:00 INFO]: [WorldGuard] (Factions_nether) Fire spread is UNRESTRICTED.
[12:24:00 INFO]: [WorldGuard] Loaded configuration for world 'Factions_nether'
[12:24:01 INFO]: -------- World Settings For [towny] --------
[12:24:01 INFO]: Mob Spawn Range: 4
[12:24:01 INFO]: Cactus Growth Modifier: 100%
[12:24:01 INFO]: Cane Growth Modifier: 100%
[12:24:01 INFO]: Melon Growth Modifier: 100%
[12:24:01 INFO]: Mushroom Growth Modifier: 100%
[12:24:01 INFO]: Pumpkin Growth Modifier: 100%
[12:24:01 INFO]: Sapling Growth Modifier: 100%
[12:24:01 INFO]: Wheat Growth Modifier: 100%
[12:24:01 INFO]: NetherWart Growth Modifier: 100%
[12:24:01 INFO]: Vine Growth Modifier: 100%
[12:24:01 INFO]: Cocoa Growth Modifier: 100%
[12:24:01 INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[12:24:01 INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[12:24:01 INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[12:24:01 INFO]: Random Lighting Updates: false
[12:24:01 INFO]: Structure Info Saving: true
[12:24:01 INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617 Monument: 10387313 Slime: 987234911
[12:24:01 INFO]: Max TNT Explosions: 100
[12:24:01 INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[12:24:01 INFO]: Item Despawn Rate: 6000
[12:24:01 INFO]: Item Merge Radius: 2.5
[12:24:01 INFO]: Arrow Despawn Rate: 1200
[12:24:01 INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[12:24:01 INFO]: View Distance: 10
[12:24:01 INFO]: Experience Merge Radius: 3.0
[12:24:01 INFO]: Zombie Aggressive Towards Villager: true
[12:24:01 INFO]: Nerfing mobs spawned from spawners: false
[12:24:01 INFO]: CUSTOM TERRAIN: Scots pine forest
[12:24:01 INFO]: ~~~~~~~~~~~~[ EWG Settings for towny ]~~~~~~~~~~~~
[12:24:01 INFO]: Biomes that will generated;
[12:24:01 INFO]:  * Mesa
[12:24:01 INFO]:  * Tropical Forest
[12:24:01 INFO]:  * Deciduous Forest
[12:24:01 INFO]:  * River
[12:24:01 INFO]:  * Deep Ocean
[12:24:01 INFO]:  * Birch Forest
[12:24:01 INFO]:  * Fantasy Forest
[12:24:01 INFO]:  * Bonsai Forest
[12:24:01 INFO]:  * Pine Forest 2
[12:24:01 INFO]:  * Pine Forest
[12:24:01 INFO]:  * Plains
[12:24:01 INFO]:  * Bonsai Forest
[12:24:01 INFO]:  * Jungle
[12:24:01 INFO]:  * Desert
[12:24:01 INFO]:  * Ocean
[12:24:01 INFO]:  * Forgotten Forest
[12:24:01 INFO]:  * Stone Forest
[12:24:01 INFO]:  * Scots pine forest
[12:24:01 INFO]: Generator version: 7.2.23
[12:24:01 INFO]: Biomes in total: 18
[12:24:01 INFO]: Preparing world injection
[12:24:01 INFO]: BukkitPlotGenerator does not fully support: null
[12:24:01 INFO]: Preparing start region for level 14 (Seed: 1918122565703059565)
[12:24:01 INFO]: [WorldGuard] (towny) TNT ignition is PERMITTED.
[12:24:01 INFO]: [WorldGuard] (towny) Lighters are PERMITTED.
[12:24:01 INFO]: [WorldGuard] (towny) Lava fire is blocked.
[12:24:01 INFO]: [WorldGuard] (towny) Fire spread is UNRESTRICTED.
[12:24:01 INFO]: [WorldGuard] Loaded configuration for world 'towny'
[12:24:02 INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.0.1-b403
[12:24:02 ERROR]: Essentials not installed or failed to load. Essenials Protect is in emergency mode now.
[12:24:02 INFO]: [LimitedCreative] Enabling LimitedCreative v2.3-SNAPSHOT-8cfc3b7f01
[12:24:03 INFO]: [LimitedCreative] <Regions> Module loaded.
[12:24:03 INFO]: [LimitedCreative] <CmdBlocker> Module loaded.
[12:24:03 INFO]: [LimitedCreative] <Limits> Module loaded.
[12:24:03 INFO]: [LimitedCreative] <Inventory> Module loaded.
[12:24:03 INFO]: [Denizen] Enabling Denizen v1.0.2-SNAPSHOT (build 1638)
[12:24:03 INFO]: +> [Denizen] Initializing Denizen Core v1.15 (Build 89), 
                   implementation for Bukkit version 1.0.2-SNAPSHOT (build 
                   1638) 
[12:24:03 WARN]: [Denizen] Citizens does not seem to be activated! Denizen will have greatly reduced functionality!
[12:24:03 INFO]: +> [Denizen] +-------------------------+ 
[12:24:03 INFO]: +> [Denizen]  _/_ _  ._  _ _ 
[12:24:03 INFO]: +> [Denizen] (/(-/ )/ /_(-/ )  scriptable minecraft 
[12:24:03 INFO]: +> [Denizen]  
[12:24:03 INFO]: +> [Denizen] by: aufdemrand 
[12:24:03 INFO]: +> [Denizen] version: 1.0.2-SNAPSHOT (build 1638) 
[12:24:03 INFO]: +> [Denizen] +-------------------------+ 
[12:24:04 INFO]:  OKAY! Loaded core commands: [showfake, invisible, ban, 
                   modifyblock, cast, midi, explode, sidebar, cooldown, 
                   weather, action, scoreboard, if, give, worldborder, 
                   chunkload, zap, execute, mount, announce, push, fail, 
                   firework, light, reset, hurt, nbt, viewer, wait, flag, 
                   log, webget, goto, attack, event, map, strike, health, 
                   team, trigger, fly, gamerule, kick, playsound, anchor, 
                   fish, leash, queue, rotate, sign, run, experience, while, 
                   listen, playeffect, bossbar, narrate, pushable, finish, 
                   shoot, oxygen, walkto, group, yaml, statistic, fakeitem, 
                   blockcrack, schematic, sync, look, feed, take, compass, 
                   adjust, animatechest, glow, drop, note, teleport, choose, 
                   actionbar, inventory, title, remove, sql, switch, head, 
                   foreach, random, repeat, define, heal, copyblock, 
                   filecopy, sit, burn, runtask, debug, determine, 
                   permission, follow, displayitem, scribe, async, 
                   createworld, spawn, equip, money, time, inject, mark, age, 
                   walk] 
[12:24:04 INFO]:  ERROR! Your Denizen config file is from an older version. 
                   Some settings will not be available unless you generate a 
                   new one. This is easily done by stopping the server, 
                   deleting the current config.yml file in the Denizen folder 
                   and restarting the server. 
[12:24:04 INFO]: +> [RuntimeCompiler] Loading external dependencies for 
                   run-time compiler. 
[12:24:04 INFO]: +> [RuntimeCompiler] No dependencies to load or error 
                   loading dependencies: null 
[12:24:04 INFO]: +> [RuntimeCompiler] Loading plugins as dependencies for 
                   run-time compiler. 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  ViaVersion-1.1.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EssentialsXGeoIP-2.0.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  VoteRoulette.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  worldguard-6.1.2.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  FirstJoinPlus (1).jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  SwearJar.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  DiscordSRV-Build-14.3.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  PlotSquared.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  worldedit-bukkit-6.1.5.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  ServerLogManager.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  
                   VoxelSniper-5.171.0-SNAPSHOT.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  RandomTP1.9.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  
                   FastAsyncWorldEdit-bukkit-17.07.01-448dd37-739-13.5.0.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EssentialsXSpawn-2.0.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  hypermerchant-1.6.2-dev 
                   (1).jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Multiverse-Portals-2.5.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EssentialsX-2.0.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EssentialsXChat-2.0.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  ToggleSneak.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  RandomTP.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Paintball-1.3.7.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  WorldBorder.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Citizens.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  HyperConomy.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EssentialsXProtect-2.0.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EffectLib-5.0.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  PickUpSpawners 2.8.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  MagicLamps.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  cncp.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  perworldinventory-1.10.0.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Lift.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  ProtocolLib.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  NoCheatPlus.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  TreasureChest.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Vault.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Votifier.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Multiverse-Core-2.5.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  StackableItems (1).jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  Wandering_NPC (3).jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  HeavySpleef.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  DeathTpPlus.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  mcMMO.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  viabackwards-all-2.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  EpicWorldGenerator (1).jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  GlobalMarket-1.3.0-11.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  denizen-1.0.2-SNAPSHOT.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  LimitedCreative.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  
                   EssentialsXGroupManager-2.0.1.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  
                   multiverse-inventories_1.9.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Attempting to add CraftBukkit as 
                   dependency for run-time compiler. 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  spigot.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  spigotLatest.jar 
[12:24:04 INFO]: +> [RuntimeCompiler] Loaded  spigot-1.8.2.jar 
[12:24:04 INFO]:  OKAY! Loaded core requirements: [PERMISSION, OP, MONEY, 
                   FLAGGED, PROCEDURE, RAINY, TIME, ISPOWERED, SUNNY, 
                   INREGION, ISLIQUID, OXYGEN, ITEM, OWNER, SCRIPT, SNEAKING, 
                   INGROUP, STORMING, ENCHANTED, HOLDING] 
[12:24:04 INFO]: +> [Denizen] Registered: dBiome as b 
[12:24:04 INFO]: +> [Denizen] Registered: dChunk as ch 
[12:24:04 INFO]: +> [Denizen] Registered: dColor as co 
[12:24:04 INFO]: +> [Denizen] Registered: dCuboid as cu 
[12:24:04 INFO]: +> [Denizen] Registered: dEllipsoid as ellipsoid 
[12:24:04 INFO]: +> [Denizen] Registered: dEntity as e 
[12:24:04 INFO]: +> [Denizen] Registered: dInventory as in 
[12:24:04 INFO]: +> [Denizen] Registered: dItem as i 
[12:24:04 INFO]: +> [Denizen] Registered: dLocation as l 
[12:24:04 INFO]: +> [Denizen] Registered: dMaterial as m 
[12:24:04 INFO]: +> [Denizen] Registered: dPlayer as p 
[12:24:04 INFO]: +> [Denizen] Registered: dPlugin as pl 
[12:24:04 INFO]: +> [Denizen] Registered: dWorld as w 
[12:24:04 INFO]: +> [Denizen] Registered: CustomObject as custom 
[12:24:04 INFO]: +> [Denizen] Registered: dList as li 
[12:24:04 INFO]: +> [Denizen] Registered: dList as  fl 
[12:24:04 INFO]: +> [Denizen] Registered: dScript as s 
[12:24:04 INFO]: +> [Denizen] Registered: Element as el 
[12:24:04 INFO]: +> [Denizen] Registered: Duration as d 
[12:24:04 INFO]: +> [Denizen] Registered: ScriptQueue as q 
[12:24:04 INFO]:  OKAY! Added objects to the ObjectFetcher [b, d, ch, e, 
                   in, fl, custom, el, i, co, l, m, ellipsoid, p, q, cu, s, 
                   w, pl, li] 
[12:24:04 INFO]: [Essentials] Enabling Essentials v2.0.1-b403
[12:24:04 INFO]: Using locale en_US
[12:24:04 INFO]: [Essentials] Using 1.8.3+ BlockStateMeta provider as mob spawner provider.
[12:24:04 INFO]: [Essentials] Using legacy item data provider as spawn egg provider.
[12:24:04 INFO]: [Essentials] Using 1.9+ BasePotionData provider as potion meta provider.
[12:24:04 INFO]: Using locale en_US
[12:24:04 INFO]: [Essentials] Metrics disabled per PluginMetrics config.
[12:24:04 INFO]: [Vault][Economy] Essentials Economy hooked.
[12:24:04 INFO]: [Essentials] Using Vault based permissions (GroupManager)
[12:24:04 INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.0.1-b403
[12:24:04 INFO]: [EssentialsGeoIP] This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com/.
[12:24:04 INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.0.1-b403
[12:24:04 INFO]: [EssentialsChat] Enabling EssentialsChat v2.0.1-b403
[12:24:04 INFO]: [PickUpSpawners] Enabling PickUpSpawners v2.8
[12:24:04 INFO]: [CompatNoCheatPlus] Enabling CompatNoCheatPlus v6.6.4-RC-sMD5NET-b88
[12:24:04 INFO]: [cncp] Ensured that the following plugin is enabled: WorldGuard
[12:24:04 INFO]: [cncp] Registered hook(NCPHook might get added later): mcMMO(default) / 2.1
[12:24:04 INFO]: [cncp] Registered hook(NCPHook might get added later): BlockBreak(default) / 1.1
[12:24:04 INFO]: [cncp] Registered hook(NCPHook might get added later): BlockPlace(default) / 1.0
[12:24:04 INFO]: [cncp] Registered hook(NCPHook might get added later): InstaBreak(default) / 1.0
[12:24:04 INFO]: [cncp] Registered hook(NCPHook might get added later): EntityDamageByEntity(default) / 0.0
[12:24:04 INFO]: [cncp] Registered hook(NCPHook might get added later): Interact(default) / 1.0
[12:24:04 INFO]: [CompatNoCheatPlus] CompatNoCheatPlus v6.6.4-RC-sMD5NET-b88 is enabled. Some hooks might get registered with NoCheatPlus later on.
[12:24:05 INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.15.1-RC-sMD5NET-b1084
[12:24:05 INFO]: [NoCheatPlus] McAccess set to: 1.11-1.11.2 / Spigot-CB-1.11_R1
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.9 blocks.
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.10 blocks.
[12:24:05 INFO]: [NoCheatPlus] Added block-info for Minecraft 1.11 blocks.
[12:24:05 INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[12:24:05 WARN]: [NoCheatPlus] Packet level access via ProtocolLib not available, supported configurations:  | ProtocolLib 4.2.0 or later for Minecraft 1.11.x | ProtocolLib 4.1 or later for Minecraft 1.8.x to 1.10.x | ProtocolLib 3.7.0 for Minecraft 1.7.x and earlier | ProtocolLib 3.6.6 for PaperSpigot 1.8.x
[12:24:05 INFO]: [NoCheatPlus] Force disable FastHeal on Minecraft 1.9 and later.
[12:24:05 WARN]: [NoCheatPlus] The following configuration default values have changed:
Changed with build 785: checks.inventory.drop.timeframe
Changed with build 1057: strings.nofall
Changed with build 785: checks.fight.speed.actions
Changed with build 785: checks.chat.relog.warning.timeout
Changed with build 785: checks.moving.passable.raytracing.blockchangeonly
Changed with build 785: checks.chat.relog.timeout
Changed with build 785: strings.godmode
Changed with build 1080: checks.moving.survivalfly.actions
Changed with build 1080: checks.moving.creativefly.actions
Changed with build 1067: strings.flylong
Changed with build 785: strings.passable
Changed with build 785: checks.moving.survivalfly.hover.loginticks
Changed with build 785: checks.fight.fastheal.buffer
Changed with build 785: strings.morepackets
Changed with build 785: checks.moving.enforcelocation
Changed with build 1036: compatibility.blocks.changetracker.active
Changed with build 785: checks.moving.creativefly.ignoreallowflight
Changed with build 785: checks.fight.toolchangepenalty
Changed with build 785: checks.fight.direction.penalty
Changed with build 785: checks.fight.fastheal.interval
Changed with build 785: checks.moving.vehicle.enforcelocation
Changed with build 785: checks.blockplace.speed.interval
Changed with build 785: strings.fastheal
(Remove/update individual values or set configversion.created to 0 to ignore all, then reload the configuration with the 'ncp reload' command.)
[12:24:05 INFO]: [NoCheatPlus] Version 3.15.1-RC-sMD5NET-b1084 is enabled.
[12:24:05 INFO]: [CompatNoCheatPlus] [cncp] Added 1 registered hooks to NoCheatPlus.
[12:24:05 INFO]: [Paintball] Enabling Paintball v1.3.7
[12:24:06 INFO]: [Paintball] Loading the default language: enUS.txt
[12:24:06 INFO]: [Paintball] Scanned lines: 379 | Skipped lines: 0
[12:24:06 INFO]: [Paintball] Using the default language now: enUS.txt
[12:24:06 INFO]: [Paintball] Loading the specified melody now: win.txt
[12:24:06 INFO]: [Paintball] Scanned .txt melody sucessfully. Lines: 20
[12:24:06 INFO]: [Paintball] Loading the specified melody now: defeat.txt
[12:24:06 INFO]: [Paintball] Scanned .txt melody sucessfully. Lines: 43
[12:24:06 INFO]: [Paintball] Loading the specified melody now: draw.txt
[12:24:06 INFO]: [Paintball] Scanned .txt melody sucessfully. Lines: 29
[12:24:06 INFO]: [Paintball] Loading ranks..
[12:24:06 INFO]: [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
[12:24:06 INFO]: [Paintball] Plugin 'TagAPI' not found. Additional tag features disabled.
[12:24:06 INFO]: [Paintball] Plugin 'Votifier' found. Using it now.
[12:24:06 INFO]: [Paintball] Plugin 'Vault' found and economy detected. Using it now.
[12:24:06 INFO]: [Paintball] By blablubbabc enabled.
[12:24:06 INFO]: [TreasureChest] Enabling TreasureChest v8.4.4
[12:24:06 INFO]: [Citizens] Enabling Citizens v2.0.21-SNAPSHOT (build 1463)
[12:24:06 INFO]: [WanderingNPC] Enabling WanderingNPC v1.6
[12:24:06 INFO]: [DiscordSRV] Enabling DiscordSRV v14.3
[12:24:06 INFO]: [HeavySpleef] Enabling HeavySpleef v2.4.1
[12:24:07 INFO]: [HeavySpleef] Add-On load complete. Enabled 0 add-ons
[12:24:07 INFO]: [RandomTP-Reborn] Enabling RandomTP-Reborn v1.9
[12:24:07 INFO]: [RandomTP-Reborn] Linked with Vault-Economy!
[12:24:07 INFO]: [RandomTP-Reborn] All cooldowns had been synchronized
[12:24:07 INFO]: [RandomTP-Reborn] The plugin load process has been completed sucessfully. Runnining 1.9 version of the plugin.
[12:24:07 INFO]: [HyperConomy] Enabling HyperConomy v0.975.7
[12:24:07 INFO]: [HyperConomy]Using external economy plugin (Essentials Economy) via Vault.
[12:24:07 INFO]: [HyperMerchant] Enabling HyperMerchant v1.6.2-dev
[12:24:07 INFO]: [Swearjar] Enabling Swearjar v1.7
[12:24:07 INFO]: [Swearjar] has been Enabled!
[12:24:07 INFO]: [GlobalMarket] Enabling GlobalMarket v1.3.0-11
[12:24:07 INFO]: [GlobalMarket] Item index: 250
[12:24:07 INFO]: [GlobalMarket] Listing index: 54
[12:24:07 INFO]: [GlobalMarket] Mail index: 793
[12:24:09 INFO]: Server permissions file permissions.yml is empty, ignoring it
[12:24:09 INFO]: Done (22.116s)! For help, type "help" or "?"