Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 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: true
  20.  
  21. # Shows the health with a text after the tag:
  22. # for example 'Steve - 18/20'
  23. text-mode: true
  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: &cHP
  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: false
  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: true
  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: true
  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} &7- &c{health}&7/&a{max}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement