Config
Config = {}
Config.Debug = false
Config.UseZone = true
Config.Key = 'f9'
Config.Locale = GetConvar('esx:locale', 'fr')
Config.Zones = {
['police'] = {
Pos = {
vector3(463.02, -1014.93, 27.76),
},
OnlyJob = true,
SizeZone = vec3(2, 2, 2),
textUI = function()
lib.showTextUI('[E] - Garage', {
position = "top-center",
icon = 'car',
style = {
borderRadius = 0,
backgroundColor = '#48BB78',
color = 'white'
}
})
end,
Cars = {
"police",
"police2"
},
onSelect = function()
action('openMenu')
end
},
['fbi'] = {
Pos = {
vector3(430.58, -1014.21, 28.53),
},
OnlyJob = true,
SizeZone = vec3(2, 2, 2),
textUI = function()
lib.showTextUI('[E] - Garage', {
position = "top-center",
icon = 'car',
style = {
borderRadius = 0,
backgroundColor = '#48BB78',
color = 'white'
}
})
end,
Cars = {
"police",
"police2"
},
onSelect = function()
action('openMenu')
end
},
}
Last updated