⚙️ General Settings
⚙️ Configure the core settings of the Wizard Mileage System to fit your server’s language, UI, and gameplay preferences.
🚀 Core Settings:
Language: Set the UI language by specifying the locale code.
Config.Language = 'en'
This determines which language file from the locales folder is used.
If you want to change the whole script's language, you have to check this ox_lib docs
Debug Mode: Enable or disable debug messages in the server console.
Config.Debug = true
Useful for troubleshooting and development.
🚀 Other Settings:
Inventory Items: Require players to have specific inventory items for vehicle maintenance.
Config.InventoryItems = true
Menu: Select the menu system used for the mileage UI. Options:
"ox"
or"qb"
.Config.Menu = 'ox'
Example configuration:
Config.Language = 'en' -- UI language (see locales folder)
Config.Debug = true -- Enable debug messages in console
Config.InventoryItems = true -- Require inventory items for maintenance
Config.Menu = 'ox' -- "ox" or "qb"
Last updated