This is a plugin for Minecraft Bukkit/Spigot/Paper servers. It adds indicators that show how much damage you dealt to an entity.
-
Download the newest release from the releases page
-
Put the downloaded jar in your plugins folder
-
Enjoy
You can find the config file at \plugins\DamageIndicator\config.yml. By default, it should look like this:
## Should the indicator be shown to everyone(false) or just the player who dealt the damage(true)
ShowToDamagerOnly: true
## The format for showing the damage
# Read about decimal formats to learn how to configure the indicator format.
# https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/text/DecimalFormat.html
# Hex colours are supported using the legacy format (e.g. &x&F&F&F&F&F&F to represent white), but may also be defined
# using a smaller version unique to the damage indicator plugin (e.g. &#FFFFFF to represent white). Note that the usage
# of 0's in the hex code would mess with the decimal formatting, hence they should be escaped using single quotes, such
# as this:
# IndicatorFormat: "'&#FFC300'-0.#&4❤"
# using Hex colours is optional. The legacy minecraft colour codes are still supported.
IndicatorFormat: "&7-0.#&4❤"
CriticalIndicatorFormat: "&c-0.#&4❤"
PoisonIndicatorFormat: "&7-0.#'e8a24'❤"
BurnIndicatorFormat: "&7-0.#'&#f59e42'❤"
## The decimal format's locale (BCP47)
# This determines the locale used for formatting. The formatter uses this e.g. when deciding between a dot ('0.0')
# or a comma ('0,0') for decimal numbers.
FormatLocale: "en-US"
## For how long an indicator should be shown. (Use seconds)
IndicatorTime: 1.5
/damageindicator reload
reloads the config. requires Damageindicator.admin
- Clone this repo
- open a terminal and type
gradlew build
- The jar file is at /build/libs/DamageIndicator.jar
This repo is licensed under the MIT LICENSE