Migration Guides
In some cases, the auto-updater requires manual steps from one version to the next.
Last updated
In some cases, the auto-updater requires manual steps from one version to the next.
Last updated
Version 2.11.0 Migrates the earpiece configuration from the config.lua
to earpieces.json
. Therefore, this property is no longer needed in your config.lua
file.
Open the new earpieces.json
file to confirm your configuration has been migrated (after resource start).
Open your existing config.lua
Remove the Config.chatterExclusions
property.
Version 2.10.0 introduces new configuration values to customize the default user keybinds and the emergency call prefix.
Note: This new default key mapping will only apply to new users who have not joined the server and had their keybind set yet.
Open your existing config.lua
Paste in the two, new default config options:
Config.emergencyCallCommand = '999' -- Command suffix to start or stop an emergency call (i.e. '911' == /radio 911)
-- Default radio keybinds (these can be changed in GTA settings) --
Config.keybinds = {
['toggle'] = '',
['ptt'] = '\\',
['power'] = '',
['panic'] = '',
['nextChannel'] = '',
['prevChannel'] = '',
['talkAnim'] = ''
}
This is is also available from the auto-updater's config.CHANGEME.lua
Version 2.8.1 introduces a new configuration value to customize the default user keybind to toggle mobile repeaters.
Note: This new default key mapping will only apply to new users who have not joined the server and had their keybind set yet.
Open your existing config.lua
Paste in the new default config option (Config.mobileRepeaterKeybind
)
This is also available from the auto-updater's config.CHANGEME.lua
-- Mobile repeater keybinds
Config.mobileRepeaterKeybind = {
mapperType = 'keyboard', -- See: https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/
map = 'g', -- See: https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/
label = 'Toggle Radio Repeater'
}
Your config.lua
show now look like the following:
Version 2.7.0 introduces a new configuration value for EUP earpiece detection (to prevent people from hearing nearby chatter).
Open your existing config.lua
Paste in the new default config option:
This is also available from the auto-updater's config.CHANGEME.lua
-- Radio Chatter Exclusion Settings --
Config.chatterExclusions = {
{
componentId = 2, -- Ears
drawableId = 1, -- Number in vMenu MP Ped Component list
texture = 0 -- Texture ID in vMenu MP Ped Component list
},
{
componentId = 2, -- Ears
drawableId = 2, -- Number in vMenu MP Ped Component list
texture = 0 -- Texture ID in vMenu MP Ped Component list
},
{
componentId = 2, -- Ears
drawableId = 2, -- Number in vMenu MP Ped Component list
texture = 0 -- Texture ID in vMenu MP Ped Component list
},
{
componentId = 2, -- Ears
drawableId = 42, -- Number in vMenu MP Ped Component list
texture = 0 -- Texture ID in vMenu MP Ped Component list
},
}
Your config.lua
should now appear like the following after adding in the Config.chatterExclusions
property:
Version 2.6.0 introduces new configuration values.
Open your existing config.lua
Ensure the following lines are set:
Config.chatter = true
Config.acePermsForRadioUsers = false
Config.talkSync = true
Your config.lua
should now look like the following:
Version 2.3.0 introduces a new configuration value.
Open your existing config.lua
Ensure the following lines are set:
Config.radioUrl = 'https://sonoranradio.com'
Config.apiUrl = 'https://api.sonoranradio.com/'
Your config.lua
file should now look like the following:
Version 2.3.0 introduces a new in-game repeater configuration menu. This allows an easier way to add, edit, or remove in-game repeaters.
Communities will need to grant the new command.radiomenu
permission.
Communities can remove the old spawn and remove command permissions:
command.spawnradiotower
command.spawnradiorack
command.spawnradiocellrepeater
command.removeradiorepeater
See a complete example of our updated ACE permission structure.
Version 2.2.0 introduces multiple new in-game tower options. This includes a new towers.DEFAULT.json
file that is required.
Delete the existing towers.json
file in your sonoranradio
resource.
Rename the new towers.DEFAULT.json
file to towers.json
in your sonoranradio
resource and save.
Version 2.2.0 adds a new API key configuration for upcoming features.
Add the following to line to your config.lua
file, below the Config.comId
line:
Config.apiKey = 'YOUR API KEY'
Replace YOUR API KEY
with the community API key from the Administration
panel.