63 lines
2.8 KiB
Lua
63 lines
2.8 KiB
Lua
Scully = {
|
|
KVPHandle = 'G8YVvvcvfccxD', -- Change this to something unique such as your server name.
|
|
RadioColour = 'default', -- Options are default, blue, brown, cherry, coral, cyan, green, mint, orange, pink, purple, red, white and yellow
|
|
AllowColours = true, -- Disable if you don't want people to be able to change their radio colour in-game
|
|
ColourCommand = 'rcolor', -- Set to '' if you don't want to allow changing with a command, command is /rcolour 1-11
|
|
EnableList = true, -- Set to false to disable the player list
|
|
HideListCommand = 'rlist', -- Set to '' if you don't want to allow hiding the list with a command, command is /rlist
|
|
ShowSelf = true, -- Enable if you want your own name to be shown on the radio list
|
|
EnableEditing = true, -- Disable if you don't want to allow players to change their names and callsigns on the radio, keep in mind if this is enabled they need to manually change the name back unless you update the KVPHandle above.
|
|
MicClicks = true, -- Disable if you don't want mic clicks
|
|
RadioAnims = true, -- Disable if you don't want to use radio animations for holding the radio
|
|
UseItem = false, -- Enable if you want to use the radio as an item, will only work for QBCore and ESX
|
|
UseItemColours = false, -- Enable if you want to use different items for each colour, this will disable the command also
|
|
UseKeybind = 'u', -- Set to '' if you don't want to use the radio as a keybind, can be changed here for first use only or in your fivem keybind settings
|
|
UseCustomChannelNames = false, -- Enable if you want custom channel names to be displayed on the radio
|
|
ChannelNames = { -- Channel names have a limit of 7 characters or they won't display
|
|
[10] = 'Eg 1',
|
|
[10.01] = 'Eg 2'
|
|
},
|
|
WhitelistedAccess = { -- What channels should be whitelisted and what jobs should have access to them?
|
|
[1] = {
|
|
police = true,
|
|
ems = true
|
|
},
|
|
[2] = {
|
|
police = true,
|
|
ems = true
|
|
}
|
|
},
|
|
AcePerms = { -- Ignore if using QBCore, ESX or Scully Core
|
|
'police',
|
|
'ems'
|
|
},
|
|
RadioColours = {
|
|
'default',
|
|
'blue',
|
|
'brown',
|
|
'cherry',
|
|
'coral',
|
|
'cyan',
|
|
'green',
|
|
'mint',
|
|
'orange',
|
|
'pink',
|
|
'purple',
|
|
'red',
|
|
'yellow',
|
|
'white'
|
|
},
|
|
Language = {
|
|
Frequency = 'Frequency:',
|
|
Channel = 'Channel:',
|
|
None = 'None',
|
|
NotAllowedJoin = '~r~You aren\'t allowed to join this frequency!',
|
|
ChangedTo = '~g~Your radio has been changed to',
|
|
NoRadio = '~r~You don\'t have a radio!',
|
|
Command = 'radio',
|
|
CommandLabel = 'Open Radio',
|
|
UpdatedYour = '~g~You updated your',
|
|
To = 'to',
|
|
You = '(You)'
|
|
}
|
|
} |