ham_radio/config.lua

32 lines
727 B
Lua
Raw Normal View History

2019-12-08 16:17:28 +01:00
ham_radio.settings = {
2019-12-08 18:07:18 +01:00
-- color of RDS messages
rds_color = '#607d8b',
-- interval between RDS messages (seconds)
rds_interval = 10,
2019-12-08 16:17:28 +01:00
-- receiver hud position
hud_pos = { x = 0.5, y = 0.8 },
2019-12-08 20:43:32 +01:00
-- hud message color
hud_color = {
active = "0xFCAD00",
inactive = "0x999999"
},
2019-12-08 16:17:28 +01:00
-- radio frequency range
frequency = {
min = 0,
max = 9999999
},
-- range where only one transmitter is permitted
locked_frequency = {
min = 100000,
max = 9999999
},
-- sub-range of locked frequency range
beacon_frequency = {
min = 1000000,
max = 9999999
},
-- digiline config
digiline_channel = "ham_radio",
2019-12-08 18:07:18 +01:00
digiline_rds_channel = "ham_radio_rds",
2019-12-08 16:17:28 +01:00
}