# Holograms

{% hint style="info" %}
To use holograms you need [DecentHolograms](https://www.spigotmc.org/resources/decentholograms-1-8-1-21-8-papi-support-no-dependencies.96927/) installed.
{% endhint %}

## Single-Line Hologram

```yaml
hologram:
  line: This is a hologram line
  update: 0
  offset: { x: 0, y: 0, z: 0 }
```

## Multi-Line Hologram

```yaml
hologram:
  lines:
    - This is the first line
    - and this is the second line
  update: 0
  offset: { x: 0, y: 0, z: 0 }
```

## Animated Hologram

```yaml
hologram:
  frames:
    - H
    - He
    - Hel
    - Hell
    - Hello
    - Hello!
    - Hello!!
    - Hello!!
  update: 3
  offset: { x: 0, y: 0, z: 0 }
```

## Item Hologram

```yaml
hologram:
  item: diamond
  offset: { x: 0, y: 0, z: 0 }
```

## Block Hologram

```yaml
hologram:
  block: grass_block
  offset: { x: 0, y: 0, z: 0 }
```

## Multi Hologram

A multi hologram is composed of multiple holograms (single-line, multi-line, animated, etc...) Use the `offset x y z` to prevent overlapping and create visually appealing interfaces.

```yaml
hologram:
  # Hologram 1
  - line: '&f&lSingle-Line'
    offset.y: 1.25

  # Hologram 2
  - frames:
      - '&a<animated!>'
      - '&f<animated!>'
    update: 8
    offset.y: 1

  # Hologram 3
  - item: diamond
    offset.y: 0.5
```

{% hint style="info" %}
A hologram line height is **0.25 blocks**
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pigaut.gitbook.io/orestack/holograms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
