From d87202b230408b5b098117bbee83f4bd5695bc44 Mon Sep 17 00:00:00 2001 From: Zeshan Aslam Date: Sun, 19 Mar 2017 23:17:20 -0400 Subject: [PATCH] Added config --- config.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 config.yml diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..1965f34 --- /dev/null +++ b/config.yml @@ -0,0 +1,51 @@ +# The message the player is sent. +# {name} shows the name of the mob or player. +# {health} shows current health of the mob or player. +# {maxhealth} shows the max health of the mob or player. +# {usestyle} will use the defined chars. + +Health Message: '&6&l{name}: &a&l{health} / {maxhealth}' + +# Strip Name. + +Strip Name: false + +# If enabled players with the permission 'ActionHealth.Health' will only see the action health message. + +Use Permissions: false + +# If set to false player will not see health messages from mobs. + +Show Mob: true + +# If set to false player will not see health messages from other players. + +Show Player: true + +# If set to true player will get the message in a delay to get 100% accurate health. Useful for plugins that add damage by reading item lore. +# This also uses more resources :( + +Delay Message: false + +# Style Health +Full Health Icon: "&4\u2764" +Half Health Icon: "&c\u2764" +Empty Health Icon: "&7\u2764" + +# Set names. Case sensitive! +Name Change: false +Name: +- Cow = Kuh + +# ActionHealth will be disabled for any world names added below. Case sensitive! +Disabled worlds: +- randomworld + +Disabled regions: +- testing_region + +# Disable ActionHealth in regions where PvP is denied. +Region PvP: true + +# When set to true and style health is enabled this will limit the health symbols to 10. +Limit Health: true \ No newline at end of file