Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
feat: LEO alert customisation
- Loading branch information
Showing
5 changed files
with
60 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| config.lua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| --- Configuration variables | ||
| --- @type table<string, any> | ||
| Config = { | ||
| --- Changes how players are identified to LEOs. Cannot be nilish | ||
| --- - `1` = Player ID (i.e. "Player 7") | ||
| --- - `2` = Seat position (i.e. "Driver", "Passenger", "Back left passenger", "Far back left passenger") | ||
| --- - `3` = Username (i.e. "Hagen Hyena", "1D-32 Backer P.") | ||
| --- @type number | ||
| PlayerIdentifierType = 1, | ||
|
|
||
|
|
||
| --- Distance which LEOs can detect seatbelt-less occupants within. | ||
| --- @type number | ||
| Distance = 20, | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters