> For the complete documentation index, see [llms.txt](https://docs.sickscripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sickscripts.com/shared-framework/sickholograms/config.md).

# Config

```lua
Config.ProximityCheckInterval = 500  -- ms when none visible
Config.ScreenUpdateInterval   = 33   -- ms (~30fps) while visible

Config.DefaultColor = { r = 145, g = 255, b = 176 }
Config.DefaultGlow  = 18
Config.DefaultScale = 1.0
Config.DefaultAnim  = "float" -- float | bounce | spin | none

Config.Holograms = {
  {
    id = "safezone_gate", -- id (string, unique)
    coords = vec3(312.42, -1356.88, 32.50), -- coords (vec3)
    radius = 15.0, -- radius (number, meters)
    text = "🛡️ SAFE ZONE — No PvP",  -- text (string; supports emojis + \n)
    color = { r = 120, g = 255, b = 180 }, -- color ({r,g,b}) optional
    glow = 20, -- glow (px) optional
    scale = 1.8, -- scale (1.0 = default) optional
    animation = "float", -- animation (float|bounce|spin|none) optional
  },
}
```

## Trader (With Prompt)

```lua
{
  id = "trader_1",
  coords = vec3(24.75, -1345.67, 29.50),
  radius = 12.0,
  text = "🛒 General Trader\nPress [E] to interact",
  animation = "bounce",
}
```

## Faction Marker (themed)

```lua
{
  id = "faction_rot",
  coords = vec3(1850.45, 3692.31, 34.27),
  radius = 18.0,
  text = "☣️ Children of the Rot\n\"The Flesh Decays, The Soul Ascends.\"",
  color = { r = 180, g = 255, b = 140 },
  glow = 22,
  scale = 1.0,
  animation = "spin",
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.sickscripts.com/shared-framework/sickholograms/config.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.
