Epsilon Inventory - Configuration

All settings for the inventory system are configured in the config.lua file.

General Settings

config.lua
Config = {}

Config.Framework = 'esx'
Config.Language = 'tr'

Config.MaxSlots = 50           -- Maximum slot count
Config.MaxWeight = 120000      -- Maximum weight (grams)
Config.HotbarSlots = 5         -- Hotbar slot count

Feature Settings

config.lua
Config.EnableCrafting = true    -- Crafting system
Config.EnableHotbar = true     -- Hotbar system
Config.EnableDrop = true       -- Drop on ground
Config.DropDespawnTime = 300   -- Dropped item despawn time (seconds)

Config.WeaponAttachments = true   -- Weapon attachment system
Config.WeaponDurability = true    -- Weapon durability system

Settings Table

SettingTypeDefaultDescription
Config.MaxSlotsnumber50Player inventory slot limit
Config.MaxWeightnumber120000Maximum weight (grams)
Config.HotbarSlotsnumber5Hotbar slot count
Config.EnableCraftingbooleantrueCrafting on/off
Config.EnableDropbooleantrueDrop on ground on/off
Config.DropDespawnTimenumber300Dropped item despawn time

Shop Settings

config.lua
Config.Shops = {
    ['market_1'] = {
        label = '24/7 Market',
        coords = vector3(25.7, -1347.3, 29.5),
        items = {
            { name = 'bread',  price = 5,  label = 'Ekmek' },
            { name = 'water',  price = 3,  label = 'Su' },
            { name = 'burger', price = 10, label = 'Hamburger' },
        }
    },
    ['market_2'] = {
        label = 'LTD Benzinlik',
        coords = vector3(-47.4, -1758.8, 29.4),
        items = {
            { name = 'bread',  price = 6,  label = 'Ekmek' },
            { name = 'water',  price = 4,  label = 'Su' },
        }
    }
}