Advertisement
_Twiistrz

mcMMO/config.yml

Dec 9th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 15.71 KB | None | 0 0
  1. #
  2. #  mcMMO configuration
  3. #  Last updated on 1.5.09-SNAPSHOT-b${BUILD_NUMBER}
  4. #
  5. #####
  6.  
  7. #
  8. #  Settings for mcMMO in general
  9. ###
  10. General:
  11.     Locale: en_US
  12.     MOTD_Enabled: false
  13.     # Send a message to the player when his profile was successfully loaded
  14.     Show_Profile_Loaded: false
  15.     # Amount of time (in minutes) to wait between saves of player information
  16.     Save_Interval: 10
  17.     # Allow mcMMO to report on basic anonymous usage
  18.     Stats_Tracking: true
  19.     # Allow mcMMO to check if a new version is available
  20.     Update_Check: true
  21.     Prefer_Beta: false
  22.     Power_Level_Cap: 0
  23.     # Should mcMMO truncate levels if you lower your max level cap for a skillname
  24.     TruncateSkills: false
  25.     # Should mcMMO print out debug messages?
  26.     Verbose_Logging: false
  27.     # Should mcMMO over-write configs to update, or make new ones ending in .new?
  28.     Config_Update_Overwrite: true
  29.     # Play level-up sounds
  30.     LevelUp_Sounds: true
  31.  
  32.     # This should fix blocks being broken client side, but not server-side.
  33.     # Enable to refresh the chunks around a player at the end of Super Breaker,
  34.     # Giga Drill Breaker, and Berserk. Resource intensive for larger servers.
  35.     Refresh_Chunks: false
  36.  
  37. #
  38. #  Settings for the mcMMO scoreboards
  39. ###
  40. Scoreboard:
  41.    # Display player's power levels below their names?
  42.     Power_Level_Tags: false
  43.  
  44.     # Allow players to use "/mcscoreboard keep" to keep the scoreboard up
  45.     Allow_Keep: true
  46.  
  47.     # Show the /mcstats scoreboard automatically after logging in
  48.     Show_Stats_After_Login: false
  49.  
  50.     # Show scoreboard tips 5 times. Tips are only displayed once for every login session.
  51.     # Set to 0 to never show these tips.
  52.     Tips_Amount: 5
  53.  
  54.     # Add some more color on the board :-)
  55.     Rainbows: false
  56.  
  57.     # Display ability names?
  58.     Ability_Names: true
  59.  
  60.     # Settings for each type of scoreboard
  61.     # Print: Should the command output be printed in chat?
  62.     # Board: Should the command output be displayed in the scoreboard sidebar?
  63.     # Display_Time: Amount of time (seconds) to display in the sidebar before clearing.
  64.     # To display permanently, use "/mcscoreboard keep" or set to -1
  65.     Types:
  66.        # Settings for /mcrank
  67.         # The sub-options (Print, Board, Display_Time) are the same for each type.
  68.         Rank:
  69.             Print: false
  70.             Board: true
  71.             Display_Time: 15
  72.         # Settings for /mctop
  73.         Top:
  74.             Print: true
  75.             Board: true
  76.             Display_Time: 15
  77.         # Settings for /mcstats
  78.         Stats:
  79.             Print: false
  80.             Board: true
  81.             Display_Time: 15
  82.         # Settings for /inspect
  83.         Inspect:
  84.             Print: false
  85.             Board: true
  86.             Display_Time: 20
  87.         # Settings for /mccooldown
  88.         Cooldown:
  89.             Print: true
  90.             Board: true
  91.             Display_Time: 41
  92.         # Settings for /<skillname> (e.g. /mining, /unarmed)
  93.         # No "print" option is given here; the information will always be displayed in chat.
  94.         # It should also be noted that this display is pretty dang cool.
  95.         Skill:
  96.             Board: true
  97.             Display_Time: 30
  98.  
  99.             # Should the board be shown when a player levels up, and for how long?
  100.             # It is recommended to NOT have LevelUp_Time be -1, as this may confuse players.
  101.             LevelUp_Board: true
  102.             LevelUp_Time: 5
  103.  
  104. Mob_Healthbar:
  105.    # Enabled: Whether or not the feature is enabled at all
  106.     # Display_Type: Per player Default display for mob health bars - HEARTS, BAR, or DISABLED
  107.     # Display_Time: Amount of time (in seconds) to display. To display permanently, set to -1
  108.     Enabled: true
  109.     Display_Type: HEARTS
  110.     Display_Time: 3
  111.  
  112. Database_Purging:
  113.    # Amount of time (in hours) to wait between database purging
  114.     # To only run at server start, set to 0
  115.     # To never run, set to -1
  116.     Purge_Interval: -1
  117.     # Any user who hasn't connected in this many months will be purged from the database
  118.     # To never purge old users, set to -1
  119.     Old_User_Cutoff: 6
  120.  
  121. #
  122. #  Settings for Backups
  123. #  Allow mcMMO to create zip backups for config files and flatfile data on shutdown.
  124. ###
  125. Backups:
  126.     Enabled: true
  127.  
  128.     Keep:
  129.         Last_24_Hours: true
  130.         Daily_Last_Week: true
  131.         Weekly_Past_Months: true
  132.  
  133. #
  134. #  Settings for using a mySQL database
  135. ###
  136. MySQL:
  137.     Enabled: false
  138.     Database:
  139.         User_Name: UserName
  140.         User_Password: UserPassword
  141.         Name: DataBaseName
  142.         TablePrefix: mcmmo_
  143.         # This setting is the max simultaneous mysql connections allowed at a time, needs to be
  144.         # high enough to support multiple player logins in quick succession
  145.         MaxConnections:
  146.             Misc: 30
  147.             Load: 30
  148.             Save: 30
  149.         # This setting is the max size of the pool of cached connections that we hold available
  150.         # at any given time
  151.         MaxPoolSize:
  152.             Misc: 10
  153.             Load: 20
  154.             Save: 20
  155.     Server:
  156.         Port: 3306
  157.         Address: localhost
  158.  
  159. #
  160. #  Settings for Hardcore mode
  161. #  Players will not lose stats when their level is below the Level_Threshold
  162. ###
  163. Hardcore:
  164.     Death_Stat_Loss:
  165.         Penalty_Percentage: 75.0
  166.         Level_Threshold: 0
  167.         Enabled:
  168.             Acrobatics: false
  169.             Alchemy: false
  170.             Archery: false
  171.             Axes: false
  172.             Excavation: false
  173.             Fishing: false
  174.             Herbalism: false
  175.             Mining: false
  176.             Repair: false
  177.             Swords: false
  178.             Taming: false
  179.             Unarmed: false
  180.             Woodcutting: false
  181.     Vampirism:
  182.         Leech_Percentage: 5.0
  183.         Level_Threshold: 0
  184.         Enabled:
  185.             Acrobatics: false
  186.             Alchemy: false
  187.             Archery: false
  188.             Axes: false
  189.             Excavation: false
  190.             Fishing: false
  191.             Herbalism: false
  192.             Mining: false
  193.             Repair: false
  194.             Swords: false
  195.             Taming: false
  196.             Unarmed: false
  197.             Woodcutting: false
  198.  
  199. #
  200. #  Settings for SMP Mods
  201. ###
  202. Mods:
  203.     Tool_Mods_Enabled: false
  204.     Armor_Mods_Enabled: false
  205.     Block_Mods_Enabled: false
  206.     Entity_Mods_Enabled: false
  207.  
  208. #
  209. #  Settings for mcMMO items
  210. ###
  211. Items:
  212.     Chimaera_Wing:
  213.         Enabled: true
  214.         Cooldown: 240
  215.         Warmup: 5
  216.         RecentlyHurt_Cooldown: 60
  217.         Prevent_Use_Underground: true
  218.         # Attempt to use the bed spawn, if one is available
  219.         Use_Bed_Spawn: true
  220.         Use_Cost: 1
  221.         Recipe_Cost: 5
  222.         Item_Name: FEATHER
  223.         Sound_Enabled: true
  224.     Flux_Pickaxe:
  225.         Enabled: true
  226.         Sound_Enabled: true
  227.  
  228. #
  229. #  Settings for Parties
  230. ###
  231. Party:
  232.    # Amount of time (in hours) to wait between automatically kicking old party members
  233.     # To only run at server start, set to 0
  234.     # To never kick old users, set to -1
  235.     AutoKick_Interval: 12
  236.     # Any user who hasn't connected in this many days will get kicked from their party
  237.     Old_Party_Member_Cutoff: 7
  238.  
  239.     # Settings for party share modes
  240.     Sharing:
  241.         ExpShare_bonus_base: 1.1
  242.         ExpShare_bonus_increase: 1.05
  243.         ExpShare_bonus_cap: 1.5
  244.         Range: 75.0
  245.  
  246.     # Party members level up their party by earning individual experience
  247.     # Newly created parties will not immediately have access to all the party features
  248.     # and have to level up the party a bit before they can use them.
  249.     Leveling:
  250.         Level_Cap: 10
  251.  
  252.         # Uses the regular XP formula but is multiplied by <amount of party members> + <Xp_Curve_Modifier>
  253.         Xp_Curve_Modifier: 3
  254.         Near_Members_Needed: false
  255.         Inform_All_Party_Members_On_LevelUp: false
  256.  
  257.         Chat_UnlockLevel: 1
  258.         Teleport_UnlockLevel: 2
  259.         Alliance_UnlockLevel: 5
  260.         ItemShare_UnlockLevel: 8
  261.         XpShare_UnlockLevel: 10
  262.  
  263. #
  264. #  Settings for Abilities
  265. ###
  266. Abilities:
  267.     Enabled: true
  268.     Messages: true
  269.     Activation:
  270.         Only_Activate_When_Sneaking: false
  271.     Cooldowns:
  272.         Berserk: 240
  273.         Blast_Mining: 60
  274.         Giga_Drill_Breaker: 240
  275.         Green_Terra: 240
  276.         Serrated_Strikes: 240
  277.         Skull_Splitter: 240
  278.         Super_Breaker: 240
  279.         Tree_Feller: 240
  280.     Max_Seconds:
  281.         Berserk: 0
  282.         Blast_Mining: 0
  283.         Giga_Drill_Breaker: 0
  284.         Green_Terra: 0
  285.         Serrated_Strikes: 0
  286.         Skull_Splitter: 0
  287.         Super_Breaker: 0
  288.         Tree_Feller: 0
  289.     Limits:
  290.         Tree_Feller_Threshold: 500
  291.     Tools:
  292.        # Use more tool durability while using abilities. Set Durability_Loss to 0 to disable the extra durability damage.
  293.         Durability_Loss: 1
  294.  
  295. #
  296. #  Settings for Skills
  297. #  Level cap of 0 for no limit
  298. ###
  299. Skills:
  300.     Acrobatics:
  301.         Enabled_For_PVP: true
  302.         Enabled_For_PVE: true
  303.         Prevent_AFK_Leveling: true
  304.         Max_Tries_At_Same_Location: 3
  305.         Prevent_Dodge_Lightning: false
  306.         # Prevent earning Acrobatics XP a few seconds after teleporting
  307.         XP_After_Teleport_Cooldown: 5
  308.         Level_Cap: 5000
  309.     Alchemy:
  310.        # Allow Hoppers to transfer ingredients and brew Rank 1 Alchemy potions
  311.         Enabled_for_Hoppers: true
  312.         # Prevent Hoppers from transferring ingredients into Brewing Stands
  313.         Prevent_Hopper_Transfer_Ingredients: false
  314.         # Prevent Hoppers from transferring bottles into Brewing Stands
  315.         Prevent_Hopper_Transfer_Bottles: false
  316.         Level_Cap: 5000
  317.     Archery:
  318.         Enabled_For_PVP: true
  319.         Enabled_For_PVE: true
  320.         Level_Cap: 5000
  321.     Axes:
  322.         Enabled_For_PVP: true
  323.         Enabled_For_PVE: true
  324.         Level_Cap: 5000
  325.     Excavation:
  326.         Level_Cap: 5000
  327.     Fishing:
  328.         Level_Cap: 5000
  329.         Drops_Enabled: true
  330.         Override_Vanilla_Treasures: true
  331.         # Always catch fish, even when treasure is found
  332.         Extra_Fish: true
  333.     Herbalism:
  334.         Level_Cap: 5000
  335.         Prevent_AFK_Leveling: true
  336.     Mining:
  337.         Level_Cap: 5000
  338.         Detonator_Name: FLINT_AND_STEEL
  339.     Repair:
  340.         Level_Cap: 5000
  341.         Anvil_Messages: true
  342.         Anvil_Placed_Sounds: true
  343.         Anvil_Use_Sounds: true
  344.         Anvil_Material: IRON_BLOCK
  345.         # Ask for a confirmation when a player tries to repair an enchanted item
  346.         Confirm_Required: true
  347.     Salvage:
  348.         Level_Cap: 5000
  349.         Anvil_Messages: true
  350.         Anvil_Placed_Sounds: true
  351.         Anvil_Use_Sounds: true
  352.         Anvil_Material: GOLD_BLOCK
  353.         # Ask for a confirmation when a player tries to salvage an enchanted item
  354.         Confirm_Required: true
  355.     Smelting:
  356.         Level_Cap: 5000
  357.     Swords:
  358.         Enabled_For_PVP: true
  359.         Enabled_For_PVE: true
  360.         Level_Cap: 5000
  361.     Taming:
  362.         Enabled_For_PVP: true
  363.         Enabled_For_PVE: true
  364.         Level_Cap: 5000
  365.         Call_Of_The_Wild:
  366.            # Item_Material: Material of the item needed to summon the pet
  367.             # Item_Amount: Amount of items required to summon the pet
  368.             # Summon_Amount: Amount of pets to summon when using Call Of The Wild
  369.             # Summon_Length: Pets despawn when their summon life length expires
  370.             # Summon_Max_Amount: Maximum amount of pets that can be summoned at the same time
  371.             Wolf:
  372.                 Item_Material: BONE
  373.                 Item_Amount: 10
  374.                 Summon_Amount: 1
  375.                 Summon_Length: 240
  376.                 Summon_Max_Amount: 10
  377.             Ocelot:
  378.                 Item_Material: RAW_FISH
  379.                 Item_Amount: 10
  380.                 Summon_Amount: 1
  381.                 Summon_Length: 240
  382.                 Summon_Max_Amount: 10
  383.             Horse:
  384.                 Item_Material: APPLE
  385.                 Item_Amount: 10
  386.                 Summon_Amount: 1
  387.                 Summon_Length: 240
  388.                 Summon_Max_Amount: 10
  389.  
  390.             # Range to check for nearby pets when using Call Of The Wild, 0 will disable the check
  391.             Range: 40.0
  392.  
  393.     Unarmed:
  394.         Enabled_For_PVP: true
  395.         Enabled_For_PVE: true
  396.         Level_Cap: 1500
  397.         Block_Cracker:
  398.             SmoothBrick_To_CrackedBrick: true
  399.         # When using Unarmed, picked up items will automatically get moved to a free slot instead of going in the slot
  400.         # of your hand. Should item pickup be disabled when your entire inventory - except for your hand - is full?
  401.         Item_Pickup_Disabled_Full_Inventory: true
  402.         # Any attacks made without a tool, i.e. with one's open hand, a block, etc., will count as unarmed.
  403.         Items_As_Unarmed: false
  404.     Woodcutting:
  405.         Tree_Feller_Sounds: true
  406.         Level_Cap: 5000
  407.  
  408. #
  409. #  Settings for Double Drops
  410. ###
  411. Double_Drops:
  412.     Herbalism:
  413.         Beetroot_Block: true
  414.         Brown_Mushroom: true
  415.         Beetroot_Block: true
  416.         Cactus: true
  417.         Carrot: true
  418.         Cocoa: true
  419.         Crops: true
  420.         Melon_Block: true
  421.         Nether_Warts: true
  422.         Potato: true
  423.         Pumpkin: true
  424.         Red_Mushroom: true
  425.         Red_Rose: true
  426.         Sugar_Cane_Block: true
  427.         Vine: true
  428.         Water_Lily: true
  429.         Yellow_Flower: true
  430.     Mining:
  431.         Coal_Ore: true
  432.         Diamond_Ore: true
  433.         Emerald_Ore: true
  434.         Ender_Stone: true
  435.         Glowstone: true
  436.         Gold_Ore: true
  437.         Iron_Ore: true
  438.         Lapis_Ore: true
  439.         Mossy_Cobblestone: true
  440.         Netherrack: true
  441.         Obsidian: true
  442.         Quartz_Ore: true
  443.         Redstone_Ore: true
  444.         Sandstone: true
  445.         Stone: true
  446.     Woodcutting:
  447.         Acacia: true
  448.         Birch: true
  449.         Dark_Oak: true
  450.         Generic: true
  451.         Jungle: true
  452.         Redwood: true
  453.  
  454. #
  455. #  Settings for commands
  456. ###
  457. Commands:
  458.     Generic:
  459.        # If true, when using partial names in commands mcMMO will try to look for a match from
  460.         # the offline players. Enabling this might slow the server down if there are a lot of offline players.
  461.         Match_OfflinePlayers: false
  462.     Database:
  463.        # Database command cooldown in milliseconds, cannot be changed below the default value. (1750)
  464.         # Prevents players from spamming /mctop or /mcrank
  465.         Player_Cooldown: 1750
  466.     mcmmo:
  467.         Donate_Message: true
  468.     inspect:
  469.         Max_Distance: 30.0
  470.     ptp:
  471.         Cooldown: 120
  472.         Warmup: 5
  473.         RecentlyHurt_Cooldown: 60
  474.         Accept_Required: true
  475.         Request_Timeout: 300
  476.         # If true, require players to have a mcmmo.commands.ptp.world.[WorldName] permission
  477.         # to teleport to, from, or within any given world.
  478.         World_Based_Permissions: false
  479.     partychat:
  480.         Chat_Prefix_Format: '[[GREEN]]([[WHITE]]{0}[[GREEN]])'
  481.         Use_Display_Names: true
  482.         Chat_Prefix_Format_Ally: '[[GREEN]](A)[[RESET]]'
  483.     adminchat:
  484.         Chat_Prefix_Format: '[[AQUA]][[[WHITE]]{0}[[AQUA]]]'
  485.         Use_Display_Names: true
  486.  
  487. #
  488. #  Settings for particles
  489. ###
  490. Particles:
  491.    # These settings determine if fireworks should get launched when a player activates/deactivates an ability
  492.     Ability_Activation: false
  493.     Ability_Deactivation: false
  494.  
  495.     # Determines if the fireworks should be a large ball or a small one
  496.     LargeFireworks: false
  497.  
  498.     # Use particle effect when these abilities trigger
  499.     Bleed: true
  500.     Dodge: true
  501.     Flux: true
  502.     Greater_Impact: true
  503.     Call_of_the_Wild: true
  504.  
  505.     # These settings determine if fireworks should get launched when a player levels-up,
  506.     # this will happen by default for every 100 levels.
  507.     LevelUp_Enabled: true
  508.     LevelUp_Tier: 100
  509. #
  510. #  Settings for sounds
  511. ###
  512. Sounds:
  513.    # This setting controls the master volume. 1.0 is Max,  0 would be off
  514.     MasterVolume: 1.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement