Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1.  
  2. # Wearing heavy pieces of armors reduces
  3. # your movement speed by a specific amount,
  4. # relative to your current move speed.
  5. heavy-armors:
  6.  
  7. # The movement speed reduction in % for each heavy armor piece worn.
  8. speed-malus: 5.0
  9.  
  10. # The list of heavy armor pieces. By default gold is not
  11. # considered a heavy armor to incite players to use this armor set.
  12. list:
  13. - DIAMOND_HELMET
  14. - DIAMOND_CHESTPLATE
  15. - DIAMOND_LEGGINGS
  16. - DIAMOND_BOOTS
  17. - IRON_HELMET
  18. - IRON_CHESTPLATE
  19. - IRON_LEGGINGS
  20. - IRON_BOOTS
  21.  
  22. # The list of all conditions which must be met for the
  23. # BLOCK REGEN and BLOCK RESTRICTIONS to apply.
  24. # Set to 'custom-mine-conditions: []' for no condition.
  25. custom-mine-conditions: []
  26.  
  27. # Offset is the distance traveled on X and Y coordinates
  28. # Height is the Y velocity coordinate. Lootsplosions
  29. # only trigger with MythicMobs monsters.
  30. # Requires a SERVER reload when changed.
  31. lootsplosion:
  32. enabled: true
  33. mmoitems-color: true
  34. offset: .1
  35. height: .3
  36.  
  37. # Settings for the default action bar
  38. action-bar:
  39. # Whether or not to use the default action bar. (This doesn't change any other action bars provided by MMOCore.)
  40. enabled: true
  41. # The decimal format for stats (not including stat formats in stats.yml)
  42. decimal: "0.#"
  43. # The amount of ticks before updating the info
  44. ticks-to-update: 5
  45. # How to display the data.
  46. format: "&cā¤ {health}/{max_health} &f| &9ā­ {mana}/{max_mana} &f| &7ā›Ø {armor}"
  47.  
  48. party:
  49.  
  50. # Edit party buffs here. You may
  51. # add as many stats as you want.
  52. buff:
  53. health-regeneration: 3%
  54. additional-experience: 10%
  55.  
  56. # Prefix you need to put in the chat
  57. # to talk in the party chat.
  58. chat-prefix: '@'
  59.  
  60. guilds:
  61.  
  62. # Prefix you need to put in the chat
  63. # to talk in the guild chat.
  64. chat-prefix: '*'
  65.  
  66. # Enable this open to override vanilla EXP and display
  67. # level progress on the vanilla experience bar.
  68. # Requires a SERVER reload when changed.
  69. override-vanilla-exp: false
  70.  
  71. # Requires a SERVER reload when changed.
  72. death-exp-loss:
  73. enabled: false
  74.  
  75. # Percentage of current EXP you lose when dying.
  76. percent: 30
  77.  
  78. # Edit general plugin number formatting here.
  79. number-format:
  80. decimal-separator: .
  81.  
  82. # Allows to scale health up/down to a specific
  83. # amount so extra health does not fill up the screen.
  84. # Requires a SERVER reload when changed.
  85. health-scale:
  86. enabled: true
  87. scale: 20
  88.  
  89. # Players can swap their hotbar with the 9 inventory slots
  90. # right above it by pressing [swap items] while crouching.
  91. hotbar-swap: true
  92.  
  93. # Use this option if you're having issue with Anvil GUIs.
  94. # This replaces anvil inputs by chat inputs.
  95. use-chat-input: true
  96.  
  97. # Change this to the name of the color you want for
  98. # the different resource bar placeholders
  99. resource-bar-colors:
  100. mana-whole: 'BLUE'
  101. mana-half: 'AQUA'
  102. mana-empty: 'WHITE'
  103. stamina-whole: 'GREEN'
  104. stamina-half: 'DARK_GREEN'
  105. stamina-empty: 'WHITE'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement