Skip to content

Mini guides collection

NEZNAMY edited this page Apr 5, 2021 · 68 revisions

Content

Sum up all knowledge you gathered reading the wiki to get interesting results, most frequently asked ones listed here.

Displaying player health in %

If you're using vanilla belowname set

classic-vanilla-belowname:
  enabled: true
  number: "%math_{player_health}*5[precision:0]%"
  text: "&cHP"

If you're using unlimited nametag mode, run /tab group _OTHER_ belowname %math_{player_health}*5[precision:0]% &cHP.

For all of this to work, you need to install PlaceholderAPI. Then, run

/papi ecloud download math
/papi ecloud download player
/papi reload

Displaying player health as 0-10 instead of 0-20

Follow Displaying player health in %, but change placeholder to %math_{player_health}/2[precision:0]%.

Displaying death counter in tablist

yellow-number-in-tablist: "%deaths%"
Note: This is taken from server stats. You can modify / reset this for each player in <world>/stats/<player uuid>.json file.

Making nametags completely invisible

Add invisible-nametags: true into your config.yml.
Note: This still requires nametag handling feature enabled (change-nametag-prefix-suffix: true).
Note 2: Unlimited nametag mode must be disabled.

Taking prefixes/suffixes from permission plugin

Delete all groups and only keep this:

Groups:
  _OTHER_:
    tabprefix: "%vault-prefix%"
    tagprefix: "%vault-prefix%"    
    tabsuffix: "%vault-suffix%"    
    tagsuffix: "%vault-suffix%"

Note: If TAB is on bungeecord, use %vault_prefix% and %vault_suffix% with PlaceholderAPI support on bungeecord.

Showing player version in tablist

Run /tab group _OTHER_ tabsuffix &8[&3%player-version&8]

Clone this wiki locally