Basic Configuration

Configuration of the basic script functions

API Keys

This file can be located in peuren_chopshop\shared\sh_apikeys.lua.

ApiKeys = {
    Enabled = true, -- Send logs to the given Discord Webhook
    JobLogs = "", --Your Discord Webhook for newly created jobs
    LootLogs = "", --Your Discord Webhook for acquired loot from the burglaries
}

Dispatch

This file can be located in peuren_chopshop\shared\sh_main.lua.

Config.Dispatch = {
    enabled = true, --Send alert to police
    dispatch_code = '10-90', -- Dispatch code added to the message.
    message = 'Grand theft auto in progress', -- Dispatch message.
    color = 2, -- Blip Color, more info: https://docs.fivem.net/docs/game-references/blips/#blip-colors
    sprite = 500, -- Blip Sprite, more info: https://docs.fivem.net/docs/game-references/blips/#blips
    scale = 1.0, -- Blip Scale
    time = 300, -- Blip Seconds Visible in seconds.
    delay = 5, -- Dispatch delay after first interaction in seconds.
}

Police Jobs

This file can be located in peuren_chopshop\shared\sh_main.lua.

Hacking

This file can be located in peuren_chopshop\shared\sh_main.lua.

Disassemble

This file can be located in peuren_chopshop\shared\sh_main.lua.

Blips

This file can be located in peuren_chopshop\shared\sh_main.lua.

Last updated