Config File

Config = {}

Config.UI = {
    MenuCommand = "fpsmenu", -- Menu open command
    ThemeColor = "#e7434f", -- You can change this color to customize the UI theme
    Notify = false -- If you want to disable notify, set this to false
}

Config.NotifyExports = function(type, text)
    -- You can use your own notify function here
    -- TriggerEvent('QBCore:Notify', text, type, 5000)
end

Config.Translations = {
    preset_normal = {"Preset: Normal applied", "success"},
    preset_medium = {"Preset: Medium applied", "success"},
    preset_high = {"Preset: High applied", "success"},
    preset_ultra = {"Preset: Ultra applied", "success"},
    preset_reset = {"All presets have been reset", "primary"},
    optimization_default = {"Optimization: Default applied", "success"},
    optimization_boost = {"Optimization: Boost applied", "success"},
    optimization_reset = {"Optimization has been reset", "primary"},
}

Last updated