Configuration

Config.lua

Config = {}
--Priority Settings
Config.Debug = true
Config.Framework = "esx" -- esx / qb / oldesx / oldqb
Config.AutoSetupSQL = true -- true / false if true, the SQL table will be created automatically if it doesn't exist
Config.Locale = "en" -- en / fr / de / cz / sk

Config.Command = "carcreator"  -- Command to open the car creator menu

Config.Cars = {
    ["adder"] = "Adder", -- Format: ["modelname"] = "Display Name",
    ["banshee"] = "Banshee",
    ["bullet"] = "Bullet",
    ["cheetah"] = "Cheetah",
    ["entityxf"] = "Entity XF",
    ["infernus"] = "Infernus",
    ["osiris"] = "Osiris",
    ["penetrator"] = "Penetrator",
    ["reaper"] = "Reaper",
    ["sultanrs"] = "Sultan RS",
    ["t20"] = "T20",
    ["turismor"] = "Turismo R",
    ["vacca"] = "Vacca",
    ["zentorno"] = "Zentorno"
}

Config.GetPermissions = function()
    return  {
        "admin",
        "mod",
    }
end

Last updated