Configuration

Holograms

All holograms can be edited via in-game commands.

For more control you can edit the holograms.yml file.

Requirements

Example hologram with number requirement.

show:
  requirements: 
    test: # This can be named any way you want
      type: value # There are currently 3 types: value, permission, text
      operation: '>='
      first: '%vault_eco_balance%'
      second: '1000.0'
  location:
    ==: org.bukkit.Location
    world: world
    x: 268.4633145013018
    y: 77.78269178904614
    z: -89.69380098878904
    pitch: 33.74977
    yaw: 116.07733
  range: 10
  lines:
  - Example line
  - '{hpe-statistic_mine_block-1-user} - {hpe-statistic_mine_block-1-value}'
  - '{TENTHS}'
  - TENTHS
  - '{CURRENTDATA} {FAST}'

Value requirement:

Requires the next values:

type: value
operation: '>=' # > , >= , < , <= , != , ==
first: '%vault_eco_balance%' # any value you can type your own value here,
# if using placeholders just make sure its number one
second: '1000.0' # any value you can type your own value here,
# if using placeholders just make sure its number one

Text requirement

type: text
operation: '==' # == , != , contains , !contains
first: '%vault_rank%' # any type of text (placeholder or your own)
second: 'admin' # any type of text (placeholder or your own)

Permission requirement

type: permission
permission: can.you.see.me # any permission you want.

Requirements will always compare first value with second example first >= second

Last updated