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

# Basic Configuration

Configuration of the basic script functions

## Key binds

This file can be located in  *peuren\_deliveries/shared/sh\_main.lua.*

```lua
Config.Keybinds = {
    placePackage = 73,
    takeMail = 303,
    returnMail = 303,
}
```

## Blips

This file can be located in  *peuren\_deliveries/shared/sh\_main.lua.*

```lua
Config.Blips = {
    deliver = {
        sprite = 280,--Blip icon id
        color = 21,--Blip color id
        scale = 1.0,--Blip scale
        label = "Package delivery location",--Blip label
        route = true,
        radius = {
            enabled = false,--If radius is enabled, players will have to find the car in that radius, otherwise it will add a blip directly on the car
            sprite = 9,--Radius id
            color = 18,--Radius color id
            offsets = math.random(-170.0, 170.0),--Radius offset,
            radius = 250--Radius size,
        }
    },
    pickup = {
        sprite = 568,--Blip icon id
        color = 21,--Blip color id
        scale = 1.0,--Blip scale
        label = "Package pickup location",--Blip label
        route = true,
        radius = {
            enabled = false,--If radius is enabled, players will have to find the location in a radius, otherwise it will add a blip directly on the pos
            sprite = 9,--Radius id
            color = 1,--Radius color id
            offsets = math.random(-170.0, 170.0),--Radius offset,
            radius = 250--Radius size,
        }
    }
}
```
