Basic Configuration

Basic configuration options for the peuren_burglary resource

API Keys

This file can be located in peuren_burglary\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
}

Looting minigame images

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

This is the path of your item images. If the inventory you're using doesn't use images you can create a new folder inside any resource and place the images in there. Just be sure to add the image files to the files in fxmanifest.lua of the resource.

Config.UIImageSource = "ox_inventory/web/images"--Path of your inventory item images, examples:
    --QBCore: qb-inventory/html/images
    --Ox: ox_inventory/web/images

Dispatch

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

Config.Dispatch = {
    enabled = true, --Send alert to police
    dispatch_code = '10-90', -- Dispatch code added to the message.
    message = 'Burglary 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_burglary\shared\sh_main.lua.

Kicking

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

Hacking

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

Lockpicking

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

Alarm

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

House Blip

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

Last updated