Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-osborne committed Oct 16, 2022
1 parent 4838b42 commit 20cd21c
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ Originally converted from an esx script by WEEZOOKA - Re-written & Optimised
```lua
Config = {}

Config.MPH = true -- false for KMH / true for MPH
Config.useCameraSound = true -- Makes a camera shutter sound effect
Config.useFlashingScreen = true -- Flashes screen white for a brief moment
Config.useBlips = true -- Turns blips on/off
Config.alertPolice = true -- Whether to alert police above certain speed
Config.alertSpeed = 130 -- Alerts police when caught above this speed
Config.useBilling = true -- Bills player by fineAmount automatically if true - Only change if you know what you're doing
Config.showNotification = false -- Shows a notification when caught
Config.sendEmail = true -- Sends an email when caught, false shows a notification
Config.MPH = true -- bool: false for KMH / true for MPH
Config.useCameraSound = true -- bool: Makes a camera shutter sound effect
Config.useFlashingScreen = true -- bool: Flashes screen white for a brief moment
Config.useBlips = true -- bool: Turns blips on/off
Config.alertPolice = true -- bool: Whether to alert police above certain speed
Config.alertSpeed = 130 -- number: Alerts police when caught above this speed
Config.useBilling = true -- bool: Bills player by fineAmount automatically if true - Only change if you know what you're doing
Config.OnlyBillIfOwned = false -- bool: Only bill the player if they own the vehicle they are driving
Config.showNotification = false -- bool: Shows a notification when caught
Config.sendEmail = true -- bool: Sends an email when caught, false shows a notification

Config.ignoredJobs = {} -- Table of jobs that wll not get fined by the cameras when on duty
Config.Cameras = {} -- List of cameras
Config.ignoredJobs = { -- table: Table of jobs that wll not get fined by the cameras when on duty
Config.Cameras = {} -- table: List of cameras
```

0 comments on commit 20cd21c

Please sign in to comment.