> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_housing/configuration/blips.md).

# Blips

Edit `rcore_housing/configs/config.blips.lua` to control which map blips appear and how they look.

## 🪧 For Sale / For Rent

```lua
Config.Blips[PROPERTY_STATES.FOR_SALE] = {
    enabled          = false,
    onlyShowIfListed = true,
    sprite           = 350,
    color            = 2,
    scale            = 0.6,
    display          = 4,
    shortRange       = false,
    name             = 'Property For Sale',
}
```

| Option                       | Description                                                             |
| ---------------------------- | ----------------------------------------------------------------------- |
| `enabled`                    | Master toggle for this blip group.                                      |
| `onlyShowIfListed`           | Show the blip only when the property has an active marketplace listing. |
| `sprite` / `color` / `scale` | Standard FiveM blip styling.                                            |
| `display`                    | `2` = map only, `4` = map + minimap.                                    |
| `shortRange`                 | When `true`, the blip is only visible up close.                         |

For-rent blips share the same shape but default to color `5` (yellow).

## 🏠 Owner / Tenant

```lua
Config.Blips.OWNER  = { sprite = 40, color = 2,  scale = 0.8, display = 4, name = 'My Property' }
Config.Blips.TENANT = { sprite = 40, color = 26, scale = 0.8, display = 4, name = 'My Rental'  }
```

These blips are placed at properties the local player owns or rents.

## 🏢 Building

```lua
Config.Blips.BUILDING = {
    enabled    = true,
    sprite     = 475,
    color      = 4,
    scale      = 0.7,
    display    = 4,
    shortRange = true,
    name       = 'Apartment Building',
}
```

`BUILDING` blips mark apartment complexes. They are always visible by default but short-range only.
