Customize

Customize = {
    Framework = "QBCore", -- QBCore | ESX | NewESX | OldQBCore (Write the framework you used as in the example)
    Mysql = "oxmysql", -- oxmysql | ghmattimysql | mysql-async (Write the sql script you use as in the example)
    UIColor = "#58F1F3", -- Default ui color (just enter the color in hex!)
    VariableUIColor = true, -- ui color determines whether all ui will change color when color is set

    RepairPrice = 250,
    CustomFunction = function(Vehicle, Porps)
        --activated after the vehicle modification has been changed
    end,

    JobErrorNotify = function()
        print("you don't have this job")
    end,

    OpenCustoms = function()
        DisplayRadar(false) 
        --exports['uz_TrygonHud']:SetHudVisibility(false)
    end,

    CloseCustoms = function()
        DisplayRadar(true)
        --exports['uz_TrygonHud']:SetHudVisibility(true)
    end,

    Lang = {
        HeaderName = 'UZ',
        HeaderStore = 'CUSTOMS',
        Subtitle = 'designs your dream car',
        Max = 'MAX',
        Livery = 'Livery',
        RGBSelect = 'RGB SELECT',
        Buy = 'BUY',
        Lvl = 'lvl',
        Exit = 'Exit',
        Mechanic = 'Mechanic',
        ESC = 'ESC',
    },
}

Last updated