Velocity Radar
The Velocity Radar system provides a dynamic speed monitoring tool for your server, allowing you to enforce speed limits, issue fines, and send alerts to police or MDT systems. Below is a simplified explanation of its configuration.
Key Parameters
General Settings
enabled
: Turns the Velocity Radar on or off.activateFXFlash
: Enables flashing visual effects when a speed violation occurs.account
: Defines the account from which fines are deducted (money
,bank
, etc.).amount
: Sets the default fine for exceeding speed limits.useMph
: Switches speed units between km/h and mph.
Zones
Each radar zone has a label, coordinates, speed limits, and penalties:
label
: Name of the radar zone.coords
: Radar's location on the map.velocityRanges
: Defines speed limits and corresponding fines.width
: Radius of the radar zone.beforeEnterInZoneAlert
: Enables warnings before entering a radar zone.autoBill
: Automatically charges fines to violators.notifyInfractor
: Notifies the offender of the fine.sendAlertToPolice
: Sends alerts to police for violations.sendHistoryToMDT
: Logs violations to the MDT system.
Example Zone Configuration
A single radar zone setup might look like this:
[1] = {
label = "Zone 1",
velocityRanges = {
{ limitFrom = 105, price = 8500 },
{ limitFrom = 200, price = 11000 }
},
coords = vector3(365.81, 134.43, 103.09),
width = 30,
beforeEnterInZoneAlert = true,
beforeEnterInZoneAlertMargin = 40,
autoBill = true,
notifyInfractor = true,
sendAlertToPolice = true,
sendHistoryToMDT = true,
blip = {
enabled = true,
color = 3,
sprite = 184,
scale = 0.8,
text = "Velocity Radar"
}
}
Last updated