forked from acscripts/ac_radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
31 lines (23 loc) · 883 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---------------------------------------------------------------------------------------------
-- More detailed description of each config option can be found in 'docs/config.md' file.
---------------------------------------------------------------------------------------------
ac = {
-- Language for notifications and UI
locale = 'en',
-- Whether to check for newer resource version and notify in server console.
versionCheck = true,
-- Whether to use custom notification function.
useCustomNotify = false,
-- Whether to use command for opening the radio UI.
useCommand = true,
-- Default keybind for the '/radio' command.
commandKey = '',
-- Number of available frequencies.
maximumFrequencies = 1000,
-- How much the frequency value can change per step.
frequencyStep = 0.01,
-- Channel frequency restrictions.
restrictedChannels = {
[1] = 'police'
}
}