Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 KB | None | 0 0
  1. player-bars:
  2.  
  3. # Enable or disable player health bars.
  4. # It will disable even the health under the tag.
  5. enable: true
  6.  
  7.  
  8. 'after-name':
  9.  
  10. # Enable or disable the bars only after or before the
  11. # player's tag. Doesn't disable the health under.
  12. enable: true
  13.  
  14. # The style of the health bar, if text-mode is not set to true.
  15. # You can choose between 6 different styles (1,2,3,4,5,6).
  16. display-style: 1
  17.  
  18. # Always show health bars on players.
  19. always-shown: false
  20.  
  21. # Shows the health with a text after the tag:
  22. # for example 'Steve - 18/20'
  23. text-mode: false
  24.  
  25. # The time after the bar after the tag will hide.
  26. hide-delay-seconds: 5
  27.  
  28. # You can choose to use your own made bars,
  29. # it will override the previous setting 'text-mode'.
  30. use-custom-file: false
  31.  
  32.  
  33. 'below-name':
  34.  
  35. # Enable or disable the health under the name.
  36. # It will be displayed on all player.
  37. enable: true
  38.  
  39. # The text that will be displayed under the tag, after the health value.
  40. # The position cannot be changed (minecraft limitations).
  41. # If you want to use spaces before the text or weird symbols,
  42. # surround the text with single quotes ( '<3' ).
  43. # <3 will be replaced by ❤.
  44. # You can use formatting codes.
  45. text: &c<3
  46.  
  47. # Set to true if you want the plugin to make a proportion,
  48. # so the maximum health will be the same for all the players.
  49. # If disabled, the normal health of a player appears as 20.
  50. use-proportion: true
  51.  
  52. # If you set this to 100, you can view the health as percentage.
  53. # If a player has half health, it will display 5.
  54. proportional-to: 10
  55.  
  56.  
  57.  
  58. # Enable disabling some worlds for mob bars.
  59. world-disabling: false
  60.  
  61. # A list of disabled worlds for mob bars.
  62. disabled-worlds: world_nether,world_the_end
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69. 'mob-bars':
  70.  
  71. # Choose to enable or disable mob health bar.
  72. enable: true
  73.  
  74. # The style for the bar. You can choose between 3 style (1,2,3).
  75. display-style: 1
  76.  
  77. # Always show health bars on all the valid mobs.
  78. always-shown: false
  79.  
  80. # Use text instead of bar.
  81. text-mode: true
  82.  
  83. # Use your custom text, you will need to set 'text-mode: true'
  84. custom-text-enable: false
  85.  
  86. # The custom text: you can use these placeholder:
  87. # {name} = the name of the mob hit.
  88. # {health} = the current health.
  89. # {max} = the maximum health.
  90. # <3 = a hearth symbol (❤)
  91. # &4 / &n / &k ... = all the formatting codes.
  92. #
  93. # For example this will be displayed as 'Creeper - 16/20'
  94. custom-text: '{name} - &a{health}/{max}'
  95.  
  96. # The time after the bar will hide.
  97. hide-delay-seconds: 5
  98.  
  99. # If enabled, health bars on mobs will be shown only if
  100. # the player looks directly at him.
  101. show-only-if-looking: false
  102.  
  103. # Enable disabling some worlds for mob bars.
  104. world-disabling: false
  105.  
  106. # A list of disabled worlds for mob bars.
  107. disabled-worlds: world_nether,world_the_end
  108.  
  109. # You can choose to use your own made bars, it will override the previous settings.
  110. use-custom-file: false
  111.  
  112. # Enable or disable the mob type filter.
  113. type-disabling: false
  114.  
  115. # If type disabling is enabled, these mobs won't show the health.
  116. # The names are the same in locale.yml
  117. disabled-types: creeper,zombie,skeleton,iron_golem
  118.  
  119.  
  120. # If you have the plugin EpicBoss, enable this to display the correct health on bosses.
  121. hooks:
  122. epicboss: false
  123.  
  124.  
  125.  
  126.  
  127.  
  128. # Disable this if you have other plugins that changes the tab names.
  129. # Otherwise, the health bars will be show here.
  130. fix-tab-names: true
  131.  
  132. # Fix for all the deaths, prevents the health bars
  133. # to be displayed in the messages.
  134. # Disable if you have other plugins to handle them.
  135. fix-death-messages: true
  136.  
  137. # Receive update notification at server start-up.
  138. # If you disable this, you can still use /hbr update command.
  139. update-notification: true
  140.  
  141. # If you have the plugin EpicBoss, enable this to display the correct health on bosses.
  142. hook-epicboss: false
  143.  
  144. # If you enable this, give the correct permissions to players
  145. # to see the health bar on other players.
  146. # It will send a fake empty scoreboard to players without permissions, use this carefully.
  147. use-player-bar-permissions: false
  148.  
  149. # This is a temporary fix for other plugin like MobArena overriding player health bars when in the arena. Enable this to fix, HealthBar will try to take over other scoreboards from other plugins.
  150. override-other-scoreboard: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement