Configuration
All Saboh Scripts use a config.lua file for customization.
General Structure
lua
Config = {}
-- Framework detection (auto-detected in most scripts)
Config.Framework = 'auto' -- 'esx', 'qbcore', or 'auto'
-- Language
Config.Locale = 'en'
-- Debug mode (disable in production)
Config.Debug = falseTips
- Always restart your server after changing config values
- Use
Config.Debug = trueduring setup to see helpful console output - Check each script's specific documentation page for all available options
Common Options
Notifications
Most scripts support multiple notification systems:
lua
Config.Notify = 'ox_lib' -- 'esx', 'qbcore', 'ox_lib', 'custom'Target System
lua
Config.Target = 'ox_target' -- 'ox_target', 'qb-target', 'none'Inventory
lua
Config.Inventory = 'ox_inventory' -- 'ox_inventory', 'qb-inventory', 'esx'