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

# Configuration

{% hint style="danger" %} <mark style="color:$danger;">**Important:**</mark> After making changes to the configuration, restart the resource using:

`ensure array_tracker`
{% endhint %}

## Config Files

{% tabs %}
{% tab title="config.lua" %}
{% code lineNumbers="true" expandable="true" %}

```lua
Array = {}

Array.Framework = "auto" -- auto, esx, qbcore or custom

Array.Settings = {
    Item = {
        enable = true, -- Should players be required to have an item to view the GPS Members?
        itemname = "tracker" -- item name
    },
    Tracker = {
        UpdateTime = 6000, -- Server update interval (recommended: 4000–8000)
        LiveSync = true, -- If set to true, players are tracked live via ped position.
        ClientUpdateTime = 500, -- Client refresh interval (recommended: 500-1500)
    },

    BlacklistJobs = { -- Jobs blocked by the tracker system
        "unemployed",
    },
}

Array.UseArrayCallerItem = {
    use = false, -- Are you using the `array_calleritem` Script from our shop and want the caller to have a different map icon than other faction members?
    starticontype = "whenitemused" -- whenitemused or whenfightstarts (Should the caller's icon change only when the caller item is triggered and the fight begins, or immediately when the caller uses the item?)
}

Array.Blips = {
    Settings = {
        Scale = 0.8, -- Size of the blip on the map
        Color = 21, -- https://docs.fivem.net/docs/game-references/hud-colors/
        ShortRange = true, -- Show blips on the minimap even if players are far away?
    },
    Types = {
        default = 1,
        dead = 84,
        plane = 423,
        car = 225,
        boat = 427,
        bike = 226,
        heli = 64
    }
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
