> For the complete documentation index, see [llms.txt](https://docs.fuksus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fuksus.com/players-marketplace/configuration/general-config.md).

# General config

General config - `config.lua`

```lua
Config = {}

Config.ESX = exports["es_extended"]:getSharedObject() -- ESX exports

Config.ox_inventory = exports.ox_inventory -- Ox inventory exports

Config.oxTarget = false -- If you are using ox target then set this to true, otherwise set it to false

Config.interactionKey = 38 -- Default interaction key = 38 ("E")

Config.accountType = 'bank' -- Set which account will be used for transactions (Default 'bank')

Config.blacklistedItems = { -- Blacklisted items that cannot be sold in the market
    'money',
    'black_money'
}

Config.Types = { -- Item categories
    weapon = 'Weapon',
    item = 'Item',
    other = 'Other'
}

Config.ped = 'mp_m_shopkeep_01'

Config.Locale = {
    ['item'] = 'Item',
    ['weapon'] = 'Weapon',
    ['other'] = 'Other',
}

Config.locations = {
    vec4(-511.478, -240.077, 35.848, 121.287),
    vec4(-446.503, -912.237, 29.393, 136.857),
    vec4(221.820, -1376.198, 30.529, 145.584),
    vec4(243.046158, -1396.654908, 30.509888, 93.543304)
}


-- OX TARGET SETTINGS ALSO YOU CAN CUSTOMIZE IT IN THE CLIENT/BLIPS.LUA --

Config.targetSize = vec3(0.5, 0.5, 2.0) -- Size of the target
Config.showTarget = false -- Show the target
Config.targetRotation = 0 -- Rotation of the target
```
