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

# Configuration

## 1. main scripts

Here you must to change this config to work with your server, your Core Name.

```lua
Config['CoreSetting'] = {
    ["Core"] = "l2s-core", -- Your Core Name 
}
```

## 2. Events

you have one event in this config, its a client event.

```lua
Config['InvTrigger'] = 'inventory:client:ItemBox' -- Item Box Event
```

## 3. Webhook

we must add our discord webhook, If you don't know how to get a webhook, it's easy and we explain it in a few steps in the following video. Watch it carefully so you don't miss any step :

{% embed url="<https://www.youtube.com/watch?v=fKksxz2Gdnc>" %}

```lua
Config['Webhok'] = "" -- Discod log Webhook Link
```

## 4. Language

in l2s-spaying you can change the Language to any Language do you want.

```lua
Config['Language'] = {
    ["SearhBar"] = "Searching for the monitoring device...",
    ["InstalBar"] = "Monitoring device is installing...",
    ["ErrorIP"] = "Incorrect input ",
    ["TrackSuccess"] = "The person has been located on GPS",
    ["NoneNearYou"] = "There is no one near you",
    ["HaveOne"] = 'This person has a monitor',
    ["RemoveDone"] = 'The device has been removed successfully',
    ["PlayerIsOffline"] = 'This player is offline'
}
```

## 5. Track Setting Blips

In this short tutorial you will learn how to add and edit a blips, you can change the text and you need to change the numbers and the color of the blips , you need this website to know the blibs and colors :&#x20;

{% embed url="<https://docs.fivem.net/docs/game-references/blips/>" %}

```lua
Config['TrackSetting'] = {
    ["BlipsNumber"] = 458,
    ["BlipsScale"] =  1.2,
    ["BlipsColor"] = 1,
}
```

## 6. ProggersBar

Here you can change the time when you put and remove the monitor device.

```lua
Config['ProggersBar'] = {
    ["Remove_Time"] = 12000, 
    ["Insta_Time"] = 10000, 
}
```
