Configuration

A fully documented config.lua for the MD Tint Meter script.

Config = {}

-- [[ FRAMEWORK SETTINGS ]]
-- Options: "Standalone", "QBCore"
Config.Framework = 'Standalone'

-- [[ ITEM AND JOB  SETTINGS ]]
-- Only applies if Config.Framework is set to "QBCore"
-- The item name required in the player's inventory to use the tint meter.
Config.ItemName = 'tint_meter'

-- A list of job names (as defined in your qb-core jobs.lua/config) that are allowed to use the tint meter.
-- If this list is empty, ANY player can use the meter (assuming they meet the item requirement).
-- Example Job Names: 'police', 'sheriff', 'mechanic', 'traffic_cop'
Config.RequiredJobs = {
    'police'
}

Last updated