· 5 years ago · Oct 21, 2020, 06:10 PM
1#=========================================================#
2# Anti leak configuration #
3#=========================================================#
4
5# Licence key
6LICENCE: ""
7
8#=========================================================#
9# Database configuration #
10#=========================================================#
11
12# Data saving method (JSON or MONGO)
13DATASTORE: "JSON"
14
15# Mongo connection
16MONGO:
17 SERVER_IP: "localhost"
18 SERVER_PORT: 27017
19 DATABASE_NAME: "hcf"
20 AUTH:
21 ENABLED: true
22 USER: ""
23 PASSWORD: ""
24
25#=========================================================#
26# General configuration #
27#=========================================================#
28
29# What timezone should we use?
30# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
31TIMEZONE: "Europe/Zagreb"
32
33# What date format should we use?
34# https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html
35DATE_FORMAT: "dd.MM HH:mm:ss"
36
37SEND_TO_HUB_ON_KICK:
38 # Should we enable player sending to hub on kick?
39 ENABLED: false
40 # List of hubs from bungee config.yml (you can add multiple hubs)
41 HUBS:
42 - "Hub"
43
44# Should we enabled join welcome message?
45JOIN_WELCOME_MESSAGE_ENABLED: true
46
47# Commands cooldown in seconds
48COMMANDS_COOLDOWN: 2
49
50# What should be mob limit per chunk?
51MOB_LIMIT_PER_CHUNK: 20
52
53# Should we disable all natural mob spawning?
54MOBS_SPAWN_ONLY_FROM_SPAWNERS: false
55
56# Should we disable block damage by explosions?
57DISABLE_EXPLOSIONS_BLOCK_DAMAGE: true
58
59# Should we disable bed bombing?
60DISABLE_BED_BOMBING: true
61
62# Should we disable creeper targeting?
63DISABLE_CREEPER_PLAYER_TARGETING: true
64
65# Should we enable mob spawning in warzone?
66SPAWN_MOBS_IN_WARZONE: false
67
68# Should we use lightning effect on player death?
69LIGHTNING_EFFECT_ON_DEATH: true
70
71# Should we remove empty bottle after potion use?
72REMOVE_EMPTY_BOTTLE_ON_POTION_USE: false
73
74# Should we enable enderpearl glitch fixes?
75ENDERPEARL_GLITCH_FIX_ENABLED: true
76
77# Should we deny spawner break in end or nether?
78DENY_SPAWNER_BREAK:
79 IN_END: true
80 IN_NETHER: true
81
82# Should we deny spawner place in end or nether?
83DENY_SPAWNER_PLACE:
84 IN_END: true
85 IN_NETHER: true
86
87# For what blocks should we disable placement?
88DISABLED_BLOCK_PLACEMENT:
89 - "137:0"
90
91#=========================================================#
92# Chat configuration #
93#=========================================================#
94
95# Default chat delay in seconds
96DEFAULT_CHAT_DELAY: 0
97
98CHAT_FORMAT:
99 # Should we enable custom chat format?
100 ENABLED: true
101 # Chat format when player has no faction
102 FORMAT: "&6[&c*&6] <displayName>&7: "
103 # Chat format when player is in faction
104 FORMAT_WITH_FACTION: "&6[<faction>&6] <displayName>&7: "
105
106#=========================================================#
107# LunarClient API configuration #
108#=========================================================#
109
110# Should we enable lunar client API?
111LUNAR_CLIENT_API_ENABLED: false
112
113# Should we enable forced waypoints?
114FORCED_WAYPOINTS_ENABLED: true
115
116# List of forced waypoints
117# Waypoint beacon beam colors are in RGB hex format (https://www.rapidtables.com/web/color/RGB_Color.html)
118FORCED_WAYPOINTS:
119 SPAWN:
120 NAME: "&a&lSpawn"
121 COLOR: "#00FF00"
122 CONQUEST_RED:
123 NAME: "&c&lConquest Red"
124 COLOR: "#FF0000"
125 CONQUEST_BLUE:
126 NAME: "&b&lConquest Blue"
127 COLOR: "#0000FF"
128 CONQUEST_GREEN:
129 NAME: "&a&lConquest Green"
130 COLOR: "#00FF00"
131 CONQUEST_YELLOW:
132 NAME: "&e&lConquest Yellow"
133 COLOR: "#FFFF00"
134 KOTH:
135 NAME: "&3&l<name> KoTH"
136 COLOR: "#00FFFF"
137 DTC:
138 NAME: "&4&lDTC"
139 COLOR: "#202020"
140 END_EXIT:
141 NAME: "&f&lEnd Exit"
142 COLOR: "#FFFFFF"
143 FACTION_RALLY:
144 NAME: "&d&lFaction Rally"
145 COLOR: "#FF33FF"
146 FACTION_HOME:
147 NAME: "&b&lFaction Home"
148 COLOR: "#CC0000"
149 FOCUSED_FACTION_HOME:
150 NAME: "&5&lFocused Faction Home"
151 COLOR: "#990000"
152
153# Should we enable staff modules
154STAFF_MODULES_ENABLED: true
155
156# Should we enable cooldowns
157COOLDOWNS_ENABLED: true
158
159# List of cooldowns
160COOLDOWNS:
161 APPLE:
162 NAME: "Golden Apple"
163 MATERIAL_ID: "322:0"
164 COMBAT_TAG:
165 NAME: "Combat Tag"
166 MATERIAL_ID: "276:0"
167 ENDERPEARL:
168 NAME: "Enderpearl"
169 MATERIAL_ID: "368:0"
170 HOME:
171 NAME: "Home"
172 MATERIAL_ID: "107:0"
173 LOGOUT:
174 NAME: "Logout"
175 MATERIAL_ID: "152:0"
176 STUCK:
177 NAME: "Stuck"
178 MATERIAL_ID: "30:0"
179
180NAMETAGS:
181 # Should we enable Lunar Client name tags?
182 ENABLED: true
183 # Lunar Client name tags format
184 FACTION: "&6[<faction> &7\u2503 <dtr>&6]"
185
186#=========================================================#
187# Commands configuration #
188#=========================================================#
189
190# What Lazarus commands should we disable?
191DISABLED_LAZARUS_COMMANDS:
192 - "cmd1"
193 - "cmd2"
194
195DISABLED_FACTION_SUBCOMMANDS:
196 - "subcmd1"
197 - "subcmd2"
198
199#=========================================================#
200# Durability configuration #
201#=========================================================#
202
203REDUCED_DURABILITY_LOSS:
204 # Should reduced durability loss be enabled?
205 ENABLED: true
206 # Reduced durability percentage
207 REDUCED_PERCENTAGE: 30
208
209# What materials should have reduced durability loss?
210REDUCED_DURABILITY_MATERIALS:
211 - "298:0"
212 - "299:0"
213 - "300:0"
214 - "301:0"
215 - "302:0"
216 - "303:0"
217 - "304:0"
218 - "305:0"
219 - "306:0"
220 - "307:0"
221 - "308:0"
222 - "309:0"
223 - "310:0"
224 - "311:0"
225 - "312:0"
226 - "313:0"
227 - "314:0"
228 - "314:0"
229 - "315:0"
230 - "316:0"
231 - "317:0"
232
233#=========================================================#
234# Selection wand configuration #
235#=========================================================#
236
237# Claim wand configuration
238CLAIM_WAND:
239 MATERIAL_ID: "294:0"
240 NAME: "&cClaim Wand"
241 LORE:
242 - "&7Left or right click a block to set the"
243 - "&afirst &7and &asecond &7position of your claim"
244 - ""
245 - "&7Shift and left click the air or a block to"
246 - "&apurchase &7your current claim selection"
247 - ""
248 - "&7Right click the air to &aclear"
249 - "&7your current claim selection"
250
251# Selection wand configuration
252SELECTION_WAND:
253 MATERIAL_ID: "294:0"
254 NAME: "&cSelection Wand"
255 LORE:
256 - "&7Left click to set &afirst &7position"
257 - "&7Right click to set &asecond &7position"
258
259#=========================================================#
260# Factions configuration #
261#=========================================================#
262
263# Factions auto save task interval in minutes
264FACTIONS_AUTO_SAVE: 30
265
266# Should we send player his faction info on join?
267SHOW_FACTION_INFO_ON_JOIN: true
268
269FACTION_DTR:
270 # Dtr per player
271 DTR_PER_PLAYER: 0.9
272 # Maximum faction dtr
273 MAX_DTR: 6.5
274 # Minimum faction dtr
275 MIN_DTR: -6.5
276 # Solo faction dtr
277 SOLO_FACTION_DTR: 1.1
278 # Dtr regen per minute
279 REGEN_PER_MINUTE: 0.1
280 # Freeze duration in minutes
281 FREEZE_DURATION: 45
282 # Per world dtr loss
283 DTR_DEATH_LOSS:
284 OVERWORLD: 1
285 NETHER: 0.5
286 END: 1
287
288FACTION_PLAYER:
289 # Faction player limit
290 FACTION_LIMIT: 15
291 # Enable join while frozen?
292 JOIN_WHILE_FROZEN: false
293 # Enable leave while frozen?
294 LEAVE_WHILE_FROZEN: true
295 # Enable disband while frozen?
296 DISBAND_WHILE_FROZEN: false
297 # Enable unclaim while frozen?
298 UNCLAIM_WHILE_FROZEN: false
299 # Enable leave while in own claim?
300 LEAVE_WHILE_IN_OWN_CLAIM: false
301 # Should players be able to damage themselves?
302 PLAYERS_TAKE_OWN_DAMAGE: true
303 # Enable ally friendly fire?
304 ALLY_FRIENDLY_FIRE: false
305 # Enable block break in warzone
306 WARZONE_BREAK_AFTER:
307 OVERWORLD: 300
308 NETHER: 200
309
310# Per faction pvp class limit (-1 for unlimited)
311FACTION_PVP_CLASS_LIMIT:
312 # Faction archer limit
313 ARCHER: 3
314 # Faction bard limit
315 BARD: 2
316 # Faction miner limit
317 MINER: -1
318 # Faction rogue limit
319 ROGUE: 2
320
321# Max faction ally count (0 to disable)
322FACTION_MAX_ALLIES: 0
323
324# Radius in which claim pillars are shown
325FACTION_MAP_RADIUS: 32
326
327FACTION_CLAIM:
328 # Do all faction claims must be connected?
329 MUST_BE_CONNECTED: true
330 # Max claims per faction
331 MAX_CLAIMS: 6
332 # Max claims per player
333 CLAIMS_PER_PLAYER: 1
334 # Min claim size (example: 5x5)
335 MIN_CLAIM_SIZE: 5
336 # Max claim size (example: 40x40)
337 MAX_CLAIM_SIZE: 40
338 # Min faction claim buffer
339 CLAIM_BUFFER: 2
340 # Should we ignore claim buffer next to road claims?
341 CLAIM_BUFFER_IGNORE_ROADS: true
342 # Claim price per block (10x10 would cost $50)
343 CLAIM_PRICE_PER_BLOCK: 0.5
344 # Unclaim price reduce multiplier
345 UNCLAIM_PRICE_MULTIPLIER: 0.5
346 # Should we allow liquid flow from wilderness to claimed land?
347 LIQUID_FLOW_FROM_WILDERNESS_TO_CLAIMS: false
348
349WARZONE_RADIUS:
350 # Overworld warzone radius
351 OVERWORLD: 1000
352 # Nether warzone radius
353 NETHER: 500
354 # End warzone radius
355 END: 500
356
357FACTION_TOP:
358 # Should we allow negative faction points?
359 ALLOW_NEGATIVE_POINTS: true
360 # Points per player kill
361 KILL: 5
362 # Points per player death
363 DEATH: -5
364 # Points per koth cap
365 KOTH_CAP: 20
366 # Points per conquest cap
367 CONQUEST_CAP: 100
368
369FACTION_RALLY:
370 # Rally location expiration in seconds
371 EXPIRE_AFTER: 600
372 # Should we include Y coordinate on scoreboard?
373 INCLUDE_Y_COORDINATE: true
374
375# Should we disable home teleport from enemy territory?
376DENY_HOME_TELEPORT_FROM_ENEMY_TERRITORY: true
377
378# Per world home teleport delay in seconds
379HOME_WARMUP:
380 OVERWORLD: 10
381 NETHER: 30
382 END: 30
383 ENEMY_TERRITORY: 20
384
385FACTION_STUCK:
386 # Stuck teleport delay in seconds
387 WARMUP: 60
388 # Stuck movement radius before cancelling teleport
389 ALLOWED_MOVEMENT_RADIUS: 5
390
391# Faction create cooldown in seconds
392FACTION_CREATE_COOLDOWN: 30
393
394# Faction rename cooldown in seconds
395FACTION_RENAME_COOLDOWN: 30
396
397# Faction open status change cooldown in seconds
398FACTION_OPEN_CHANGE_COOLDOWN: 30
399
400SYSTEM_FACTION_NAMES:
401 # Wilderness faction name
402 WILDERNESS: "&2Wilderness"
403 # Warzone faction name
404 WARZONE: "&4Warzone"
405
406FACTION_NAME:
407 # Minimum faction name length
408 MINIMUM_LENGTH: 3
409 # Maximum faction name length
410 MAXIMUM_LENGTH: 15
411 # Disallowed faction names
412 DISALLOWED_NAMES:
413 - "Staff"
414 - "Admin"
415 - "Dick"
416 - "Test"
417
418RELATION_COLORS:
419 # Teammate tab relation color
420 TEAMMATE_COLOR: "&a"
421 # Ally tab relation color
422 ALLY_COLOR: "&d"
423 # Enemy tab relation color
424 ENEMY_COLOR: "&c"
425 # Archer tagged color
426 ARCHER_TAGGED_COLOR: "&4"
427 # Focused color
428 FOCUSED_COLOR: "&b&l"
429 # Sotw active color
430 SOTW_COLOR: "&6"
431 # Staff prefix
432 STAFF_MODE_COLOR: "&8[&bS&8] &b"
433
434#=========================================================#
435# Conquest configuration #
436#=========================================================#
437
438CONQUEST:
439 # Cap time per point in seconds
440 CAP_TIME: 30
441 # How many points faction get per cap?
442 POINTS_PER_CAP: 1
443 # How much points should we remove upon death?
444 DEATH_PENALTY: 20
445 # How much points do we need to win conquest?
446 POINTS_TO_WIN: 300
447 # Should we allow cap points going below 0?
448 ALLOW_NEGATIVE_POINTS: false
449
450CONQUEST_CAPPED_SIGN:
451 # Should we enable Conquest capped sign?
452 ENABLED: true
453 # Conquest capped sign name
454 NAME: "&6Conquest Cap Sign"
455 # Conquest capped sign lore
456 LORE:
457 - "&5Conquest"
458 - "&dcapped by"
459 - "&5<faction>"
460 - "<date>"
461
462#=========================================================#
463# DTC configuration #
464#=========================================================#
465
466DTC:
467 # How many times we need to break the core?
468 CORE_BREAKS: 300
469 # Announce core break every x breaks
470 BREAK_MESSAGE_INTERVAL: 50
471
472#=========================================================#
473# KoTH configuration #
474#=========================================================#
475
476KOTH:
477 # Default koth cap time in seconds
478 DEFAULT_CAP_TIME: 900
479 # How often should we send capping message?
480 CAPPING_MESSAGE_INTERVAL: 30
481 # How often should we send nobody capping message?
482 NOBODY_CAPPING_MESSAGE_INTERVAL: 60
483 # Koth started capping/knocked anti spam message delay in seconds
484 ANTI_SPAM_MESSAGE_DELAY: 3
485 # Maximum amount of KoTH's running at the same time
486 MAX_RUNNING_KOTHS_AT_THE_SAME_TIME: 2
487
488KOTH_CAPPED_SIGN:
489 # Should we enable koth capped sign?
490 ENABLED: true
491 # Koth capped sign name
492 NAME: "&6KoTH Cap Sign"
493 # Koth capped sign lore
494 LORE:
495 - "&3<koth>"
496 - "&ecapped by"
497 - "&3<capper>"
498 - "<date>"
499
500#=========================================================#
501# Kill the king configuration #
502#=========================================================#
503
504KILL_THE_KING:
505 # Should we disable item drops for the King?
506 DENY_ITEM_DROP: true
507 # Should we enable auto reward for King's slayer?
508 AUTO_REWARD_ENABLED: true
509 # Kill the king reward
510 REWARD:
511 - "luckperms user <player> parent set VIP"
512 - "give <player> COOKIE 1"
513
514#=========================================================#
515# Mountain configuration #
516#=========================================================#
517
518# Respawn interval in seconds
519MOUNTAIN_RESPAWN_INTERVAL: 1800
520
521# Mountain respawn message interval in seconds
522MOUNTAIN_MESSAGE_INTERVAL: 300
523
524#=========================================================#
525# Ender dragon configuration #
526#=========================================================#
527
528# Configuration for ender dragon event
529ENDER_DRAGON:
530 # Ender dragon name
531 NAME: "&5&lEnder dragon"
532 # Ender dragon max health
533 HEALTH: 600
534
535#=========================================================#
536# Loot configuration #
537#=========================================================#
538
539LOOT:
540 # How much items should player get by default
541 DEFAULT_REWARD_AMOUNT: 1
542 # Should we randomize reward items?
543 RANDOMIZE_REWARDS: false
544 # What should loot inventory name be?
545 INVENTORY_NAME: "&3&l<event>'s &4&lloot"
546 # What should be the size of loot inventory?
547 INVENTORY_SIZE: 9
548
549#=========================================================#
550# World configuration #
551#=========================================================#
552
553# Number player position will be multiplied and divided by
554# when using nether portal. For example if player enters
555# nether portal at X=1000 and Z=1000 in overworld he will
556# be teleported to X=500 and Z=500 in nether with value 2
557NETHER_PORTAL_POSITION_TRANSLATION:
558 ENABLED: true
559 VALUE: 2
560
561# Border size in blocks
562BORDER_SIZE:
563 OVERWORLD: 3000
564 NETHER: 1000
565 END: 300
566
567#=========================================================#
568# Economy configuration #
569#=========================================================#
570
571# Max balance for players
572MAX_BALANCE: 1000000
573
574# Default economy balances
575DEFAULT_BALANCE:
576 PLAYER: 200
577 FACTION: 0
578
579# Buy signs configuration
580BUY_SIGN:
581 LINES:
582 - "&a[Buy]"
583 - "<material>"
584 - "<amount>"
585 - "$<price>"
586
587# Sell signs configuration
588SELL_SIGN:
589 LINES:
590 - "&c[Sell]"
591 - "<material>"
592 - "<amount>"
593 - "$<price>"
594
595#=========================================================#
596# Kitmap mode configuration #
597#=========================================================#
598
599KITMAP_MODE:
600 # Should kitmap mode be enabled?
601 ENABLED: false
602 # Should we disable deathbans when in kitmap mode?
603 DISABLE_DEATHBAN: true
604 # Should we disable DTR loss during kitmap mode
605 DISABLE_DTR_LOSS: false
606 # Should we disable item drop in safezone during kitmap mode?
607 DISABLE_ITEM_DROP_IN_SAFEZONE: true
608 # Spawn teleport delay for normal players in seconds
609 SPAWN_TELEPORT_DELAY: 10
610
611KITMAP_CLEAR_ITEMS:
612 # Should we enable item clear task in kitmap mode?
613 ENABLED: true
614 # Item clear task interval in seconds
615 INTERVAL: 30
616
617KITMAP_KILL_REWARD:
618 # Should we enable kill rewards in kitmap mode?
619 ENABLED: true
620 # Commands that will be issued when player gets a kill
621 COMMANDS:
622 - "econ give <player> 150"
623
624KITMAP_KILLSTREAK:
625 # Should we enable killstreak rewards in kitmap mode?
626 ENABLED: true
627 # Killstreak rewards sorted by kill count
628 KILLS:
629 3:
630 - "econ give <player> 250"
631 - "give <player> 322:0 3"
632 5:
633 - "econ give <player> 500"
634 - "give <player> 373:16388 1"
635 - "give <player> 373:16426 1"
636 10:
637 - "econ give <player> 750"
638 - "effect <player> INVISIBILITY 300 0"
639 15:
640 - "econ give <player> 1000"
641 - "give <player> 322:1 1"
642 20:
643 - "econ give <player> 2000"
644 - "effect <player> REGENERATION 300 0"
645 25:
646 - "econ give <player> 3000"
647 - "effect <player> SPEED 99999999 1"
648
649#=========================================================#
650# Kits configuration #
651#=========================================================#
652
653KITS:
654 # First join kit enabled?
655 FIRST_JOIN_KIT_ENABLED: true
656 # First join kit
657 FIRST_JOIN_KIT: "Starter"
658 # Kitmap archer kit sign color
659 ARCHER_SIGN_COLOR: "&5&l"
660 # Kitmap bard kit sign color
661 BARD_SIGN_COLOR: "&6&l"
662 # Kitmap builder kit sign color
663 BUILDER_SIGN_COLOR: "&7&l"
664 # Kitmap diamond kit sign color
665 DIAMOND_SIGN_COLOR: "&b&l"
666 # Kitmap rogue kit sign color
667 ROGUE_SIGN_COLOR: "&c&l"
668 # Regular kits sign format
669 REGULAR_KIT_SIGN_FORMAT:
670 - ""
671 - "&a[Kit]"
672 - "&7<kitName>"
673 - ""
674
675#=========================================================#
676# Inventory restore configuration #
677#=========================================================#
678
679INVENTORY_RESTORE:
680 # Should we enable inventory restore?
681 ENABLED: true
682 # After how much hours should we delete inventory restore file?
683 FILE_CACHE: 48
684
685#=========================================================#
686# Deathban configuration #
687#=========================================================#
688
689DEATHBAN:
690 # Should we deathban players upon death?
691 ENABLED: true
692 # What should be default deathban time in minutes?
693 DEFAULT_BAN_TIME: 180
694 # Deathban times represented by time (minutes) and permission
695 BAN_TIMES:
696 30: "lazarus.deathban.30"
697 45: "lazarus.deathban.45"
698 60: "lazarus.deathban.60"
699 75: "lazarus.deathban.75"
700 90: "lazarus.deathban.90"
701
702# Default amount of lives player receives on map start
703DEFAULT_LIVES: 0
704
705#=========================================================#
706# Player settings configuration #
707#=========================================================#
708
709PLAYER_SETTINGS:
710 # Name of settings inventory
711 INVENTORY_NAME: "&4&lYour settings"
712 # Size of settings inventory
713 INVENTORY_SIZE: 45
714 # Settings inventory items
715 SETTINGS:
716 ITEM_1:
717 NAME: "&3&lToggle messages"
718 MATERIAL_ID: "386:0"
719 SLOT: 11
720 SETTING: "<messages>"
721 COMMAND: "/togglemessages"
722 TOGGLED_ON_LORE:
723 - ""
724 - "&6\u25CF &aShow private messages"
725 - "&7Hide private messages"
726 TOGGLED_OFF_LORE:
727 - ""
728 - "&7Show private messages"
729 - "&6\u25CF &cHide private messages"
730 ITEM_2:
731 NAME: "&3&lToggle message sounds"
732 MATERIAL_ID: "25:0"
733 SLOT: 13
734 SETTING: "<sounds>"
735 COMMAND: "/togglesounds"
736 TOGGLED_ON_LORE:
737 - ""
738 - "&6\u25CF &aMessage sounds enabled"
739 - "&7Message sounds disabled"
740 TOGGLED_OFF_LORE:
741 - ""
742 - "&7Message sounds enabled"
743 - "&6\u25CF &cMessage sounds disabled"
744 ITEM_3:
745 NAME: "&3&lToggle public chat"
746 MATERIAL_ID: "339:0"
747 SLOT: 15
748 SETTING: "<publicchat>"
749 COMMAND: "/togglechat"
750 TOGGLED_ON_LORE:
751 - ""
752 - "&6\u25CF &aShow public chat"
753 - "&7Hide public chat"
754 TOGGLED_OFF_LORE:
755 - ""
756 - "&7Show public chat"
757 - "&6\u25CF &cHide public chat"
758 ITEM_4:
759 NAME: "&3&lToggle found ore"
760 MATERIAL_ID: "56:0"
761 SLOT: 17
762 SETTING: "<foundore>"
763 COMMAND: "/togglefoundore"
764 TOGGLED_ON_LORE:
765 - ""
766 - "&6\u25CF &aFound ore enabled"
767 - "&7Found ore disabled"
768 TOGGLED_OFF_LORE:
769 - ""
770 - "&7Found ore enabled"
771 - "&6\u25CF &cFound ore disabled"
772 ITEM_5:
773 NAME: "&3&lToggle death messages"
774 MATERIAL_ID: "351:1"
775 SLOT: 29
776 SETTING: "<deathmessages>"
777 COMMAND: "/toggledeathmessages"
778 TOGGLED_ON_LORE:
779 - ""
780 - "&6\u25CF &aDeath messages enabled"
781 - "&7Death messages disabled"
782 TOGGLED_OFF_LORE:
783 - ""
784 - "&7Death messages enabled"
785 - "&6\u25CF &cDeath messages disabled"
786 ITEM_6:
787 NAME: "&3&lToggle cobble pickup"
788 MATERIAL_ID: "4:0"
789 SLOT: 31
790 SETTING: "<cobble>"
791 COMMAND: "/togglecobble"
792 TOGGLED_ON_LORE:
793 - ""
794 - "&6\u25CF &aCobble pickup enabled"
795 - "&7Cobble pickup disabled"
796 TOGGLED_OFF_LORE:
797 - ""
798 - "&7Cobble pickup enabled"
799 - "&6\u25CF &cCobble pickup disabled"
800 ITEM_7:
801 NAME: "&3&lToggle death lightning"
802 MATERIAL_ID: "369:0"
803 SLOT: 33
804 SETTING: "<lightning>"
805 COMMAND: "/togglelightning"
806 TOGGLED_ON_LORE:
807 - ""
808 - "&6\u25CF &aDeath lightning enabled"
809 - "&7Death lightning disabled"
810 TOGGLED_OFF_LORE:
811 - ""
812 - "&7Death lightning enabled"
813 - "&6\u25CF &cDeath lightning disabled"
814 ITEM_8:
815 NAME: "&3&lToggle scoreboard"
816 MATERIAL_ID: "399:0"
817 SLOT: 35
818 SETTING: "<scoreboard>"
819 COMMAND: "/togglescoreboard"
820 TOGGLED_ON_LORE:
821 - ""
822 - "&6\u25CF &aScoreboard enabled"
823 - "&7Scoreboard disabled"
824 TOGGLED_OFF_LORE:
825 - ""
826 - "&7Scoreboard enabled"
827 - "&6\u25CF &cScoreboard disabled"
828
829#=========================================================#
830# Handlers configuration #
831#=========================================================#
832
833BLOCKED_COMMANDS:
834 # Should we disable using ":" in commands?
835 DISABLE_COLON: true
836 # Blocked commands
837 COMMANDS:
838 - "/op"
839 - "/reload"
840 - "/rl"
841 - "/restart"
842 - "/plugins"
843 - "/pl"
844 - "/icanhasbukkit"
845
846BOTTLE:
847 # Should we drop player exp on death?
848 DROP_ON_DEATH: true
849 # Exp bottle title
850 NAME: "&6&lExp Bottle"
851 # Exp bottle lore
852 LORE:
853 - "&bContains: &7<exp> exp levels."
854 - "&bRight click to receive exp."
855
856# How much faster should brewing be?
857BREWING_SPEED_MULTIPLIER: 3
858
859COMBAT_LOGGER:
860 # Combat logger name format
861 NAME_FORMAT: "&7(CombatLogger) &c<player>"
862 # Combat logger removal time in seconds
863 TIME: 15
864
865COMBAT_TAG:
866 # Combat tag duration in seconds
867 DURATION: 30
868 # Should we disable entering end while tagged?
869 DISABLE_END_ENTRY: false
870 # Should we disable enderchests while in combat?
871 DISABLE_ENDERCHESTS: false
872 # Should we enable placing blocks in combat?
873 PLACE_BLOCKS: true
874 # Should we enable breaking blocks in combat?
875 BREAK_BLOCKS: true
876 # What commands should we disable during combat tag?
877 DISABLED_COMMANDS:
878 - "/spawn"
879
880CROWBAR:
881 # What item should we use as crowbar?
882 MATERIAL_ID: "294:0"
883 # What crowbar name should we use?
884 NAME: "&3&lCrowbar"
885 # What crowbar lore should we use?
886 LORE:
887 - "&5Spawners: &a{&c<scount>&a}"
888 - "&5Portals: &a{&c<pcount>&a}"
889 # Crowbar spawner uses before it breaks
890 SPAWNER_USES: 1
891 # Crowbar portal uses before it breaks
892 PORTAL_USES: 6
893 # What color should be spawner name
894 SPAWNER_NAME_COLOR: "&a&l"
895 # Should we disable crowbar usage in warzone?
896 DISABLE_IN_WARZONE: false
897
898DEATH_SIGN:
899 # Should we enable death signs?
900 ENABLED: true
901 # Death sign name
902 NAME: "&6DeathSign"
903 # Death sign lore
904 LORE:
905 - "&a<killer>"
906 - "killed"
907 - "&c<victim>"
908 - "<date>"
909
910ENDER_PEARL:
911 # Should we enable enderpearl cooldown?
912 COOLDOWN_ENABLED: true
913 # Enderpearl cooldown time in seconds
914 COOLDOWN_TIME: 15
915 # Should we refund enderpearl to player if teleport was canceled?
916 REFUND_ENDER_PEARL_ON_CANCEL: true
917
918EOTW_TIMER:
919 # Should we clear all deathbans when eotw is started?
920 CLEAR_DEATHBANS_ON_START: true
921
922EXPERIENCE_AMPLIFIER:
923 # Looting experience amplifier
924 LOOTING: 3
925 # Fortune experience amplifier
926 FORTUNE: 3
927
928FOUND_ORE:
929 # Should we enable found ore messages?
930 ENABLED: true
931
932FREEZE:
933 # How often should we send freeze message?
934 MESSAGE_INTERVAL: 10
935 # Commands that are disabled when frozen
936 DISABLED_COMMANDS:
937 - "/f home"
938 - "/fhome"
939 - "/f stuck"
940 - "/fstuck"
941 - "/logout"
942
943# How much faster should smelting be?
944FURNACE_SPEED_MULTIPLIER: 3
945
946GLISTERING_MELON:
947 # Should we enable easier glistering melon crafting?
948 EASY_CRAFTING: true
949
950GOLDEN_APPLE:
951 # Normal golden apple configuration
952 NORMAL:
953 # Should we show cooldown on scoreboard?
954 ON_SCOREBOARD: true
955 # Cooldown in seconds
956 COOLDOWN: 120
957 # Enchanted golden apple configuration
958 ENCHANTED:
959 # Should we show cooldown on scoreboard?
960 ON_SCOREBOARD: true
961 # Cooldown in seconds
962 COOLDOWN: 7200
963
964HEAD_DROP:
965 # Should we enable head drop on player death?
966 ENABLED: true
967 # What skull name format should we use?
968 SKULL_NAME_FORMAT: "&b<player>'s head"
969
970LFF_COMMAND:
971 # Looking for faction command cooldown in seconds
972 COOLDOWN: 300
973
974LIST_COMMAND:
975 NO_STAFF_ONLINE: "No staff"
976 # Should we show vanished staff on /list?
977 SHOW_VANISHED_STAFF: false
978
979# Time before player is safely logged out
980LOGOUT_DELAY: 30
981
982MAPKIT:
983 # How should we name mapkit inventory?
984 INVENTORY_NAME: "&4&lMapKit"
985 # What size should mapkit inventory be?
986 INVENTORY_SIZE: 54
987
988MINECART_ELEVATOR:
989 # Should minecart elevators be enabled?
990 ENABLED: true
991 # Should we disable it while in combat?
992 DISABLED_IN_COMBAT: true
993 # Should we enable minecart elevators in own claims only?
994 OWN_CLAIM_ONLY: false
995
996MOB_STACK:
997 # Should we enable mob stacking?
998 ENABLED: true
999 # Stacked mob nametag color
1000 COLOR: "RED"
1001 # Radius we are stacking mobs in
1002 RADIUS: 15
1003 # Entities we are stacking
1004 ENTITIES:
1005 - "ZOMBIE"
1006 - "SKELETON"
1007 - "SPIDER"
1008 - "CAVE_SPIDER"
1009 - "COW"
1010 # What should be maximum stack size?
1011 MAX_AMOUNT: 200
1012
1013PVP_PROTECTION:
1014 # Pvp protection duration in seconds
1015 DURATION: 3600
1016 # Should we deny end portal usage during pvp timer?
1017 DISABLE_END_ENTRY: false
1018 # Can players enter own claims during pvp timer?
1019 CAN_ENTER_OWN_CLAIM: false
1020 # Items which usage is disabled during pvp timer
1021 DISABLED_ITEMS:
1022 - "12:0"
1023 - "13:0"
1024 - "30:0"
1025 - "46:0"
1026 - "145:0"
1027 - "259:0"
1028 - "327:0"
1029 # Items which pickup is disabled during pvp timer
1030 PICKUP_DENY_ITEMS:
1031 - "261:0"
1032 - "276:0"
1033 - "310:0"
1034 - "311:0"
1035 - "312:0"
1036 - "313:0"
1037
1038# Rank revive data configuration
1039# Cooldown is in minutes
1040RANK_REVIVE_COMMAND:
1041 1:
1042 RANK_NAME: "&4Ruby"
1043 PERMISSION: "lazarus.rankrevive.ruby"
1044 COOLDOWN: 30
1045 2:
1046 RANK_NAME: "&5Supreme"
1047 PERMISSION: "lazarus.rankrevive.supreme"
1048 COOLDOWN: 60
1049
1050# Reclaim data configuration
1051RECLAIM_COMMAND:
1052 1:
1053 RANK_NAME: "&5Supreme"
1054 PERMISSION: "lazarus.reclaim.supreme"
1055 COMMANDS:
1056 - "give <player> diamond_block 4"
1057 - "lives add <player> 4"
1058 2:
1059 RANK_NAME: "&4Ruby"
1060 PERMISSION: "lazarus.reclaim.ruby"
1061 COMMANDS:
1062 - "give <player> diamond_block 2"
1063 - "lives add <player> 2"
1064
1065RENAME_COMMAND:
1066 # Max new name length
1067 MAX_LENGTH: 64
1068 # Rename blacklisted words
1069 BLACKLISTED_WORDS:
1070 - "retard"
1071 - "idiot"
1072
1073REPORT_COMMAND:
1074 # Report cooldown in seconds
1075 COOLDOWN: 60
1076
1077REQUEST_COMMAND:
1078 # Request cooldown in seconds
1079 COOLDOWN: 60
1080
1081SIGN_ELEVATOR:
1082 # Should sign elevators be enabled?
1083 ENABLED: true
1084 # Should we disable sign elevators while in combat?
1085 DISABLED_IN_COMBAT: true
1086 # Should we enable sign elevators in own claims only?
1087 OWN_CLAIM_ONLY: false
1088 # Elevator up format
1089 ELEVATOR_UP:
1090 - "[&bElevator&0]"
1091 - "Up"
1092 - ""
1093 - ""
1094 # Elevator down format
1095 ELEVATOR_DOWN:
1096 - "[&bElevator&0]"
1097 - "Down"
1098 - ""
1099 - ""
1100
1101SOTW_TIMER:
1102 # Default Sotw time in minutes
1103 DEFAULT_TIME: 120
1104 # Should we spawn mobs only from spawners on Sotw?
1105 SPAWN_MOBS_FROM_SPAWNERS_ONLY: true
1106 # Should we hide players in safezones
1107 HIDE_PLAYERS: true
1108
1109STAFF_MODE:
1110 # Should we enable staffmode on join?
1111 STAFF_MODE_ON_JOIN_ENABLED: false
1112
1113# Staff mode items configuration
1114STAFF_MODE_ITEMS:
1115 ITEM_1:
1116 USAGE: "VANISH_ON"
1117 REPLACEMENT_ITEM: "VANISH_OFF"
1118 NAME: "&aVanish"
1119 MATERIAL_ID: "351:10"
1120 SLOT: 7
1121 COMMAND: "vanish"
1122 LORE:
1123 - "&bBecome invisible"
1124 ITEM_2:
1125 USAGE: "VANISH_OFF"
1126 REPLACEMENT_ITEM: "VANISH_ON"
1127 NAME: "&aUnvanish"
1128 MATERIAL_ID: "351:8"
1129 SLOT: 7
1130 COMMAND: "vanish"
1131 LORE:
1132 - "&bBecome visible"
1133 ITEM_3:
1134 USAGE: "TELEPORTER"
1135 NAME: "&5Teleporter"
1136 MATERIAL_ID: "345:0"
1137 SLOT: 1
1138 LORE:
1139 - "&bEasier teleporting"
1140 ITEM_4:
1141 USAGE: "INV_INSPECT"
1142 NAME: "&6Inventory Inspect"
1143 MATERIAL_ID: "340:0"
1144 SLOT: 2
1145 COMMAND: "invinspect <player>"
1146 LORE:
1147 - "&bInspect player's inventory"
1148 ITEM_5:
1149 USAGE: "WORLD_EDIT_WAND"
1150 NAME: "&eWorldEdit Wand"
1151 MATERIAL_ID: "271:0"
1152 SLOT: 3
1153 LORE:
1154 - "&bWorldEdit wand editor"
1155 ITEM_6:
1156 USAGE: "BETTER_VIEW"
1157 NAME: "&bBetter View"
1158 MATERIAL_ID: "171:3"
1159 SLOT: 5
1160 LORE:
1161 - "&bBetter view for 1.7 users"
1162 ITEM_7:
1163 USAGE: "FREEZE"
1164 NAME: "&3Freeze"
1165 MATERIAL_ID: "79:0"
1166 SLOT: 8
1167 COMMAND: "ss <player>"
1168 LORE:
1169 - "&bFreeze player"
1170 ITEM_8:
1171 USAGE: "RANDOM_TELEPORT"
1172 NAME: "&cRandom Teleport"
1173 MATERIAL_ID: "2267:0"
1174 SLOT: 9
1175 COMMAND: "randomteleport"
1176 LORE:
1177 - "&bRandomly teleport to a player"
1178
1179STATS_COMMAND:
1180 # Name of stats inventory
1181 INVENTORY_NAME: "&cStats &7- &6<player>"
1182 # Size of stats inventory
1183 INVENTORY_SIZE: 45
1184 # Stats inventory items
1185 INVENTORY_ITEMS:
1186 ITEM_1:
1187 NAME: "&aKills: &7"
1188 REPLACE: "<kills>"
1189 MATERIAL_ID: "264:0"
1190 SLOT: 13
1191 ITEM_2:
1192 NAME: "&cDeaths: &7"
1193 REPLACE: "<deaths>"
1194 MATERIAL_ID: "351:1"
1195 SLOT: 14
1196 ITEM_3:
1197 NAME: "&6Balance: &7$"
1198 REPLACE: "<balance>"
1199 MATERIAL_ID: "339:0"
1200 SLOT: 15
1201 ITEM_4:
1202 NAME: "&bDiamonds: &c"
1203 REPLACE: "<diamonds>"
1204 MATERIAL_ID: "56:0"
1205 SLOT: 29
1206 ITEM_5:
1207 NAME: "&2Emeralds: &c"
1208 REPLACE: "<emeralds>"
1209 MATERIAL_ID: "129:0"
1210 SLOT: 30
1211 ITEM_6:
1212 NAME: "&6Gold: &c"
1213 REPLACE: "<gold>"
1214 MATERIAL_ID: "14:0"
1215 SLOT: 31
1216 ITEM_7:
1217 NAME: "&7Iron: &c"
1218 REPLACE: "<iron>"
1219 MATERIAL_ID: "15:0"
1220 SLOT: 32
1221 ITEM_8:
1222 NAME: "&9Lapis: &c"
1223 REPLACE: "<lapis>"
1224 MATERIAL_ID: "21:0"
1225 SLOT: 33
1226 ITEM_9:
1227 NAME: "&4Redstone: &c"
1228 REPLACE: "<redstone>"
1229 MATERIAL_ID: "73:0"
1230 SLOT: 34
1231 ITEM_10:
1232 NAME: "&8Coal: &c"
1233 REPLACE: "<coal>"
1234 MATERIAL_ID: "16:0"
1235 SLOT: 35
1236
1237STAT_TRAK:
1238 # Should we enable weapons stattrak?
1239 ENABLED: true
1240 # Stattrak kills counter format
1241 KILLS_FORMAT: "&6&lKills&7: &b<kills>"
1242 # Stattrak kill string
1243 KILL_STRING: "&e<player> &fwas slain by &e<killer> &6<date>"
1244 # Stattrak items
1245 TRACKING_ITEMS:
1246 - "DIAMOND_SWORD"
1247 - "IRON_SWORD"
1248 - "STONE_SWORD"
1249 - "GOLD_SWORD"
1250 - "WOOD_SWORD"
1251
1252STRENGTH_NERF:
1253 # Should we enable strength nerf?
1254 ENABLED: true
1255 # Strength I nerf percentage
1256 STRENGTH_1_NERF_PERCENTAGE: 40
1257 # Strength II nerf percentage
1258 STRENGTH_2_NERF_PERCENTAGE: 50
1259 # Should we remove strength upon entering END?
1260 REMOVE_STRENGTH_ON_END_ENTER: true
1261
1262SUBCLAIMS:
1263 # What title should we use for subclaim signs?
1264 SIGN_TITLE: "[&3Subclaim&r]"
1265 # Leader only subclaim sign
1266 LEADER_ONLY: "&cLeader"
1267 # CoLeaders only subclaim sign
1268 CO_LEADERS_ONLY: "&cCoLeaders"
1269 # Captains only subclaim sign
1270 CAPTAINS_ONLY: "&aCaptains"
1271
1272# Item with this lore will be unrepairable
1273UNREPAIRABLE_ITEM_LORE: "&cUnrepairable"
1274
1275VANISH:
1276 # Should we enable vanish on join?
1277 VANISH_ON_JOIN_ENABLED: true