forked from DerRode/saltyradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
25 lines (22 loc) · 834 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
Config = {}
Config.enableCmd = false -- /radio command should be active or not (if not you have to carry the item "radio") true / false
Config.RestrictedChannels = {
[110] = {
['police'] = true
},
[112] = {
['ambulance'] = true
},
[113] = {
['police'] = true,
['ambulance'] = true
},
}
Config.messages = {
['not_on_radio'] = 'Du bist aktuell mit keinem Funkkanal verbunden.',
['on_radio'] = 'Funkverbindung aktiv: <b>%s</b>',
['joined_to_radio'] = 'Du bist dem Funkkanal <b>%s</b>.00 MHz beigetreten.',
['restricted_channel_error'] = 'Du kannst dem verschlüsselten Funkkanal <b>%s</b>.00 MHz nicht beitreten!',
['you_on_radio'] = 'Du bist bereits im <b>%s</b>.00 MHz Funkkanal.',
['you_leave'] = 'Du hast die Verbindung von Funkkanal <b>%s</b>.00 MHz getrennt.'
}