Basic Configuration

Configuration of the basic script functions

Key binds

This file can be located in peuren_deliveries/shared/sh_main.lua.

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

Blips

This file can be located in peuren_deliveries/shared/sh_main.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,
        }
    }
}

Last updated