> For the complete documentation index, see [llms.txt](https://wiki.virtusdevelops.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.virtusdevelops.eu/simpleholograms/configuration.md).

# 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.

```yaml
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:

```yaml
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

```yaml
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

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

{% hint style="warning" %}
Requirements will always compare first value with second example\
first >= second
{% endhint %}
