Configuration Reference

Complete configuration reference for Pursuit Scripts.

Framework Settings

-- Framework: 'auto', 'qbcore', 'qbox', 'esx'
Config.Framework = 'auto'

-- Inventory: 'auto', 'ox_inventory', 'qb-inventory'
Config.Inventory = 'auto'

-- Target: 'auto', 'ox_target', 'qb-target', 'none'
Config.Target = 'auto'

Economy Settings

Config.Economy = {
    PerTransactionCap = 5000,   -- Max $ per sale
    DailySellCap = 25000,       -- Max $ per day per player
    SaleCooldown = 3,           -- Seconds between sales
}

Premium Items

Config.PremiumItems = {
    ['goldbar'] = { 
        label = 'Gold Bar', 
        price = { min = 5000, max = 8000 }, 
        category = 'valuables' 
    },
}

Blacklist

Config.Blacklist = {
    'cash', 'money', 'id_card',
}

Config.BlacklistPatterns = {
    '^key_',      -- All keys
    '^quest_',    -- Quest items
}