Files
Elite-Gaming-FiveM-Backup/resources/scully_lawenforcement/data/departments.lua
T
2025-08-22 10:27:48 -07:00

52 lines
1.4 KiB
Lua

return {
['lspd'] = {
label = 'Los Santos Police Department',
allowOtherDepartments = true,
blip = {
enable = true,
sprite = 60,
color = 38,
scale = 0.8,
custom = function(blip)
-- If you want to customize the blips further you can do that here.
end
},
dutyBlip = {
sprite = 1,
color = 57,
scale = 0.8,
showCone = true,
custom = function(blip)
-- If you want to customize the blips further you can do that here.
end
},
locations = {
vec3(440.46, -975.71, 30.68)
}
},
['bcso'] = {
label = 'Blaine County Sheriff\'s Office',
allowOtherDepartments = true,
blip = {
enable = true,
sprite = 60,
color = 31,
scale = 0.8,
custom = function(blip)
-- If you want to customize the blips further you can do that here.
end
},
dutyBlip = {
sprite = 1,
color = 57,
scale = 0.8,
showCone = true,
custom = function(blip)
-- If you want to customize the blips further you can do that here.
end
},
locations = {
vec3(1834.00, 3678.01, 34.18)
}
},
}