config.lua

Editable config file - escrow/market/config.lua

You can set the items that will appear in the UI Market here in this file.

MarketItem Class

A table representing a item with the following properties.

  • label: string

  • itemName: string

  • image?: string If the value is left blank, itemName.png will be checked for the image.

  • price: number

  • job: string

escrow/market/config.lua
---[[
--- All accepted values are specified in `shared/types/__market.lua`.
---]]

---@type MarketItem[]
return {
    { itemName = 'weapon_crowbar',     label = 'Crowbar',           price = 5000, job = 'Bag Snatch', },
    { itemName = 'lockpick',           label = 'Lockpick',          price = 5000, job = 'Car Theft', },
    { itemName = 'weapon_digiscanner', label = 'Digiscanner',       price = 5000, job = 'Chop Shop', },
    { itemName = 'powdered_milk',      label = 'Powdered Milk',     price = 500,  job = 'Cocaine Job', },
    { itemName = 'money_sheet',        label = 'Money Sheet',       price = 50,   job = 'Counterfeit Money', },
    { itemName = 'anchor',             label = 'Anchor',            price = 500,  job = 'Diving', },
    { itemName = 'plant_spray',        label = 'Plant Spray',       price = 500,  job = 'Weed Job', },
    { itemName = 'ammonia',            label = 'Ammonia',           price = 500,  job = 'Meth Job', },
    { itemName = 'sacid',              label = 'Sacid',             price = 500,  job = 'Meth Job', },
    { itemName = 'atm_hack_device',    label = 'Atm Hack Device',   price = 5000, job = 'Fraud', },
    { itemName = 'blank_card',         label = 'Blank Credit Card', price = 500,  job = 'Fraud', },
    { itemName = 'moonshine_pack',     label = 'Moonshine',         price = 1000, job = 'Moonshine', },
}

Last updated