Basic Configuration

Configuration of the basic script functions

Tablet command

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

Config.TabletCommand = "tablet"--Tablet open command or just set it to false

Key binds

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

Config.Keybinds = {
    placeBag = 73,--Keybind to place the bag on the ground
}

Blips

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

Config.Blips = {
    job_manager = {
        sprite = 374,--Blip icon id
        color = 11,--Blip color id
        scale = 1.0,--Blip scale
        label = "Gruppe 6 headquarters",--Blip label
        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,
        }
    },

    Deliver = {
        sprite = 374,--Blip icon id
        color = 11,--Blip color id
        scale = 1.0,--Blip scale
        label = "Deliver 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 = 374,--Blip icon id
        color = 11,--Blip color id
        scale = 1.0,--Blip scale
        label = "Pick up 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,
        }
    }
}

Last updated