Config

```lua
Config = {}


-- // Keys --
Config.RemovePlacedProp = 38 -- [E] // Key to open the interaction menu to delete the radar that is already placed
Config.PlaceProp = 18 -- [ENTER / SPACEBAR] // Key to definitively place the prop on the ground  
-- // Texts --
Config.ResourceName = 'es_extended'   -- // If you are using ESX then "es_extended", if you are using QBCORE then "qb-core"
Config.Framework = "ESX" -- // What framework are you using "ESX" or "QBCORE" or "OTHER" ?
Config.GetSharedObjects = "esx:getSharedObject" -- // Place here you SharedObjects
Config.SetJob = "esx:setJob"  -- // If you are using ESX then "esx:setJob", if you are using QBCORE then "QBCore:Client:OnJobUpdate"
Config.PropRadar = "prop_tv_cam_02" -- // Put here the prop that you want
Config.CancelRadar = "cancelr" -- // Command to cancel the radar being placed
Config.OpenUi = "radar" -- // Command to open Menu 
Config.SpeedType = "Kmh" -- // Choose the type of speedometer you want > "Mph" or "Kmh" 
Config.Notify = "rvl_notify" -- // You can change has you like > "rvl_notify" or "other" and edit on client/config_cl.lua
Config.PoliceJob = {"police", "sheriff"} -- // Put here your police job to get permission to interact with the radar! (many you want)
-- // Options -- 
Config.Blips = true -- // If you want blips on the map just put "true" if you don't want to show the location of the radars put "false"
Config.Text3D = true -- // If you want to leave the 3d text near the prop showing that it is a police radar, put "true" if you don't want anything, put "false"
-- // Value -- 
Config.FinePrice = 150 -- // Price of the speed bill

-- // In this list you can put cars that will not be warned by the radar
Config.BypassRadar = {
    "police",
    "policeb",
    "ambulance"
}
-- // Here you can translate existing notifications in the script to your liking!
Config.Messages = {
    ['blip_name'] = 'Radar ',
    ['cancel_radar'] = 'Radar has been canceled',
    ['prop_place1'] = 'You are placing a prop, use ARROWS to move the radar and press ENTER when you are done',
    ['prop_place2'] = 'You can cancel by typing /cancelr',
    ['prop_already_area'] = 'A prop is already on that area!',
    ['prop_text3d'] = '~b~Police Radar',
    ['no_acess'] = "You don't have acess",
}

Config.NotifyTypes = {
    ['error'] = 'error',
    ['inform'] = 'inform',
    ['success'] = 'success',
    
}





```

Last updated