Advertisement
Mishaps

MMOCore Config

Feb 20th, 2020
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. # Auto-Save feature automatically saves
  2. # playerdata (class, level, etc.) and
  3. # guild data (guild names, members, etc.)
  4. # at a set interval.
  5. auto-save:
  6. enabled: true
  7. # In seconds (1800 = 30 minutes)
  8. interval: 1800
  9.  
  10. # The list of all conditions which must be met for the
  11. # BLOCK REGEN and BLOCK RESTRICTIONS to apply.
  12. # Set to 'custom-mine-conditions: []' for no condition.
  13. custom-mine-conditions:
  14. - 'world{name="world1,world2,world_nether,world_the_end"}'
  15. - 'region{name="region1,region2,__global__"}'
  16.  
  17. # Offset is the distance traveled on X and Y coordinates
  18. # Height is the Y velocity coordinate. Lootsplosions
  19. # only trigger with MythicMobs monsters.
  20. # Requires a SERVER reload when changed.
  21. lootsplosion:
  22. enabled: true
  23. mmoitems-color: true
  24. offset: .2
  25. height: .6
  26.  
  27. # Settings for the default action bar
  28. action-bar:
  29. # Whether or not to use the default action bar. (This doesn't change any other action bars provided by MMOCore.)
  30. enabled: true
  31. # The decimal format for stats (not including stat formats in stats.yml)
  32. decimal: "0.#"
  33. # The amount of ticks before updating the info
  34. ticks-to-update: 5
  35. # How to display the data.
  36. format: "&c❤ {health}/{max_health} &f| &9⭐ {mana}/{max_mana} &f| &7⛨ {armor}"
  37.  
  38. party:
  39.  
  40. # Edit party buffs here. You may
  41. # add as many stats as you want.
  42. buff:
  43. health-regeneration: 3%
  44. additional-experience: 5%
  45.  
  46. # Prefix you need to put in the chat
  47. # to talk in the party chat.
  48. chat-prefix: '@'
  49.  
  50. # Enable this open to override vanilla EXP and display
  51. # level progress on the vanilla experience bar.
  52. # Requires a SERVER reload when changed.
  53. override-vanilla-exp: true
  54.  
  55. # Requires a SERVER reload when changed.
  56. death-exp-loss:
  57. enabled: false
  58.  
  59. # Percentage of current EXP you lose when dying.
  60. percent: 30
  61.  
  62. # Edit general plugin number formatting here.
  63. number-format:
  64. decimal-separator: .
  65.  
  66. # Allows to scale health up/down to a specific
  67. # amount so extra health does not fill up the screen.
  68. # Requires a SERVER reload when changed.
  69. health-scale:
  70. enabled: true
  71. scale: 20
  72.  
  73. # Disable player health regen due to saturation and eating
  74. # to control health regen via MMOCore resource regen.
  75. # Requires a SERVER reload when changed.
  76. disable-vanilla-regen: false
  77.  
  78. # Allows to toggle exp hologram from gaining experiences
  79. game-indicators:
  80. exp:
  81. enabled: false
  82.  
  83. # Players can swap their hotbar with the 9 inventory slots
  84. # right above it by pressing [swap items] while crouching.
  85. hotbar-swap: true
  86.  
  87. # Use this option if you're having issue with Anvil GUIs.
  88. # This replaces anvil inputs by chat inputs.
  89. use-chat-input: true
  90.  
  91. # Prevents mobs spawned from spawners from giving XP points.
  92. prevent-spawner-xp: true
  93.  
  94. #Timer for combat log to expire (in seconds)
  95. combat-log:
  96. timer: 10
  97.  
  98. # Change this to the name of the color you want for
  99. # the different resource bar placeholders
  100. resource-bar-colors:
  101. mana-whole: 'BLUE'
  102. mana-half: 'AQUA'
  103. mana-empty: 'WHITE'
  104. stamina-whole: 'GREEN'
  105. stamina-half: 'DARK_GREEN'
  106. stamina-empty: 'WHITE'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement