forked from projectinfinitys/qb-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
101 lines (98 loc) · 1.96 KB
/
config.lua
File metadata and controls
101 lines (98 loc) · 1.96 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
Config = {}
Config.RestrictedChannels = {
[1] = {
police = true,
ambulance = true
},
[2] = {
police = true,
ambulance = true
},
[3] = {
police = true,
ambulance = true
},
[4] = {
police = true,
ambulance = true
},
[5] = {
police = true,
ambulance = true
},
[6] = {
police = true,
ambulance = true
},
[7] = {
mechanic = true
},
[8] = {
tunershop =true
},
[9] = {
reporter =true
},
[10] = {
judge =true
},
[11] = {
lawyer =true
},
[12] = {
reporter =true
},
[13] = {
tow =true
},
[14] = {
tlrp = true -- TLRP Official Developers
},
[15] = {
tunershop =true
},
[16] = {
burgershot =true
},
[17] = {
tequilala =true
},
[18] = {
bahamas =true
},
[19] = {
government =true
},
[20] = {
auction =true
},
[21] = {
uwucafe = true
},
[22] = {
cardealer =true
},
[23] = {
luxuryauto =true
},
[24] = {
gunshop =true
},
[25] = {
bandhilki =true
}
}
Config.MaxFrequency = 500
Config.messages = {
["not_on_radio"] = "You're not connected to a signal",
["on_radio"] = "You're already connected to this signal",
["joined_to_radio"] = "You're connected to: ",
["restricted_channel_error"] = "You can not connect to this signal!",
["invalid_radio"] = "This frequency is not available.",
["you_on_radio"] = "You're already connected to this channel",
["you_leave"] = "You left the channel.",
['volume_radio'] = 'New volume ',
['decrease_radio_volume'] = 'The radio is already set to maximum volume',
['increase_radio_volume'] = 'The radio is already set to the lowest volume',
['increase_decrease_radio_channel'] = 'New channel ',
}