forked from Simnation/Main
32 lines
662 B
Lua
32 lines
662 B
Lua
Config = {};
|
|
|
|
Config.IdCardSettings = {
|
|
closeKey = 'Backspace',
|
|
autoClose = {
|
|
status = false, -- or true
|
|
time = 3000
|
|
}
|
|
};
|
|
|
|
Config.Licenses = {
|
|
['id_card'] = {
|
|
header = 'Identity',
|
|
background = '#ebf7fd',
|
|
prop = 'prop_franklin_dl'
|
|
},
|
|
['driver_license'] = {
|
|
header = 'Driver License',
|
|
background = '#febbbb',
|
|
prop = 'prop_franklin_dl',
|
|
},
|
|
['weaponlicense'] = {
|
|
header = 'Weapon License',
|
|
background = '#c7ffe5',
|
|
prop = 'prop_franklin_dl',
|
|
},
|
|
['lawyerpass'] = {
|
|
header = 'Lawyer Pass',
|
|
background = '#f9c491',
|
|
prop = 'prop_cs_r_business_card'
|
|
},
|
|
}
|