Files
Elite-Gaming-FiveM/resources/[ERS]/night_ers/config/sound-config.lua
T
2025-08-21 07:59:16 -07:00

411 lines
29 KiB
Lua

Config = Config or {}
--====================== VOICE OVER & SOUND SETTINGS ======================--
local SoundFileLanguagePrefix = Config.SoundLanguage -- This setting is to be set in config.lua. Do not change here.
--====================== GAME INTUITION SOUNDS ======================--
-- Main recognition sound for player/NPC events (This one is native GTA and sounds quite good to recognize something is happening!)
Config.Sounds = {
AcceptCalloutSoundLibrary = "Crates_Blipped",
AcceptCalloutSoundName = "GTAO_Magnate_Boss_Modes_Soundset",
}
--====================== GENERIC SOUNDS ======================--
-- Sounds & Effects
Config.VoiceOverEnabled = true -- Enable or disable voice-over for your character events (NUI/sounds/[yourLanguage]/*.ogg).
Config.DispatchVoiceOverEnabled = true -- Enable or disable voice-over for dispatch events (NUI/sounds/[yourLanguage]/*.ogg).
Config.RadioBleepSoundFile = {FileName = "radio_chirp", SoundVolume = 0.25}
Config.InteractionBtnClickSoundFiles = {
['interactionbutton'] = {
Enabled = true, -- Enable / disable sound on button press & interaction (action type) click
FileName = "confirm_click", -- (NUI/sounds/generic-sounds/*.ogg)
SoundVolume = 0.5,
},
}
--===================== LANGUAGE BASED DISPATCH SOUNDS ======================--
-- Notice about custom sound files: NUI/sounds/en/*.ogg holds sounds for the english language. So NUI/sounds/us/*.ogg holds sounds for the american language.
-- If you desire to edit sound files, adjust the existing ones or add new ones, make sure to follow the format of sound file names and configure them as the examples below.
Config.CalloutOfferedSoundFiles = { -- You will need to add custom soundfiles and transcribe them yourself if you desire to change these, this is not litterally a TTS system.
[1] = {FileName = SoundFileLanguagePrefix .. "_callout_offered", SoundVolume = 0.3, TTS = '"A new emergency call came in, are any units available to respond?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_callout_offered_1", SoundVolume = 0.3, TTS = '"Do we have any units available to respond to an emergency?"'},
[3] = {FileName = SoundFileLanguagePrefix .. "_callout_offered_2", SoundVolume = 0.3, TTS = '"We have received another emergency call. Are there any units free to handle it?"'},
}
Config.CalloutExpiredSoundFiles = { -- You will need to add custom soundfiles and transcribe them yourself if you desire to change these, this is not litterally a TTS system.
[1] = {FileName = SoundFileLanguagePrefix .. "_callout_expired", SoundVolume = 0.3, TTS = '"Other units were able to resolve the last emergency call."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_callout_expired_1", SoundVolume = 0.3, TTS = '"Other responders managed to deal with the previous emergency call."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_callout_expired_2", SoundVolume = 0.3, TTS = '"The last emergency situation has been resolved by other units."'},
}
Config.CalloutAcceptedSoundFiles = { -- You will need to add custom soundfiles and transcribe them yourself if you desire to change these, this is not litterally a TTS system.
[1] = {FileName = SoundFileLanguagePrefix .. "_callout_accepted", SoundVolume = 0.3, TTS = '"I have attached you to the latest emergency call. Please make your way."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_callout_accepted_1", SoundVolume = 0.3, TTS = '"You have been assigned to the most recent emergency call. Proceed to the location."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_callout_accepted_2", SoundVolume = 0.3, TTS = '"You have been tasked with responding to the latest emergency call. Make your way to the scene."'},
}
Config.CalloutEndedSoundFiles = { -- You will need to add custom soundfiles and transcribe them yourself if you desire to change these, this is not litterally a TTS system.
[1] = {FileName = SoundFileLanguagePrefix .. "_callout_ended", SoundVolume = 0.3, TTS = '"Your unit was detached from the last callout."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_callout_ended_1", SoundVolume = 0.3, TTS = '"Your unit has been disengaged from the previous callout."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_callout_ended_2", SoundVolume = 0.3, TTS = '"Your unit has been released from its duty in the previous callout."'},
}
--====================== LANGUAGE BASED GEAR SOUNDS ======================--
Config.GearSoundFiles = {
Enabled = true,
Files = { -- Only adjust FileName, SoundVolume and/or TTS if you desire to. (NUI/sounds/*/*.ogg)
Police = {
[1] = {FileName = SoundFileLanguagePrefix .. "_police_gear_1", SoundVolume = 0.5, TTS = '"Here is your gear. Have a good shift!"'},
},
Ambulance = {
[1] = {FileName = SoundFileLanguagePrefix .. "_ambulance_gear_1", SoundVolume = 0.5, TTS = '"Here is your gear. Have a good shift!"'},
},
Fire = {
[1] = {FileName = SoundFileLanguagePrefix .. "_fire_gear_1", SoundVolume = 0.5, TTS = '"Here is your gear. Have a good shift!"'},
},
Tow = {
[1] = {FileName = SoundFileLanguagePrefix .. "_tow_gear_1", SoundVolume = 0.5, TTS = '"Here is your gear. Have a good shift!"'},
}
}
}
--====================== LANGUAGE BASED IMPOUND SOUNDS ======================--
Config.ImpoundSoundFiles = {
Enabled = true,
Files = { -- Only adjust FileName, SoundVolume and/or TTS if you desire to. (NUI/sounds/*/*.ogg)
[1] = {FileName = SoundFileLanguagePrefix .. "_impound_task_m", SoundVolume = 0.3, TTS = '"To impound your vehicle, drive to the impound location that I marked for you."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_impound_done_m", SoundVolume = 0.3, TTS = '"Please get out of the vehicle and step away."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_impound_class_m", SoundVolume = 0.3, TTS = '"That vehicle is not allowed here..."'},
}
}
--====================== LANGUAGE BASED PED INTERACTION SOUNDS ======================--
Config.PedInteractionSoundFiles = { -- Only adjust FileName, SoundVolume and/or TTS if you desire to. (NUI/sounds/*/*.ogg)
['greet'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_hello", SoundVolume = 0.3, TTS = '"Hello, how are you today?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_hello_1", SoundVolume = 0.3, TTS = '"Good day. Lets have a chat..."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_hello_2", SoundVolume = 0.3, TTS = '"Hello there..."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_hello_f", SoundVolume = 0.3, TTS = '"Hello, how are you today?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_hello_1_f", SoundVolume = 0.3, TTS = '"Good day. Lets have a chat..."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_hello_2_f", SoundVolume = 0.3, TTS = '"Hello there..."'},
},
},
['id'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_id", SoundVolume = 0.3, TTS = '"Can I have your ID please?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_id_1", SoundVolume = 0.3, TTS = '"Please show me your identification card."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_id_2", SoundVolume = 0.3, TTS = '"Provide your identification card."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_id_f", SoundVolume = 0.3, TTS = '"Can I have your ID please?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_id_1_f", SoundVolume = 0.3, TTS = '"Please show me your identification card."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_id_2_f", SoundVolume = 0.3, TTS = '"Provide your identification card."'},
},
},
['breathalyze'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_breathalyze", SoundVolume = 0.3, TTS = '"I would like to take a sample of breath. Blow into the device please."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_breathalyze_1", SoundVolume = 0.3, TTS = '"Please blow into the device."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_breathalyze_2", SoundVolume = 0.3, TTS = '"Blow here, please."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_breathalyze_f", SoundVolume = 0.3, TTS = '"I would like to take a sample of breath. Blow into the device please."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_breathalyze_1_f", SoundVolume = 0.3, TTS = '"Please blow into the device."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_breathalyze_2_f", SoundVolume = 0.3, TTS = '"Blow here, please."'},
},
},
['drugtest'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_drugtest", SoundVolume = 0.3, TTS = '"Please open your mouth for a mouth swab drug test."'},
-- [2] = {FileName = "en_drugtest_1", SoundVolume = 0.3, TTS = '"Open your mouth for a swab test, please."'},
-- [3] = {FileName = "en_drugtest_2", SoundVolume = 0.3, TTS = '"Mouth open for swab test, please."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_drugtest_f", SoundVolume = 0.3, TTS = '"Please open your mouth for a mouth swab drug test."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_drugtest_1_f", SoundVolume = 0.3, TTS = '"Open your mouth for a swab test, please."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_drugtest_2_f", SoundVolume = 0.3, TTS = '"Mouth open for swab test, please."'},
},
},
['warn'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_warn", SoundVolume = 0.3, TTS = '"Consider this a warning."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_warn_1", SoundVolume = 0.3, TTS = '"You are being warned."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_warn_2", SoundVolume = 0.3, TTS = '"Consider this a warning."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_warn_f", SoundVolume = 0.3, TTS = '"Consider this a warning."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_warn_1_f", SoundVolume = 0.3, TTS = '"You are being warned."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_warn_2_f", SoundVolume = 0.3, TTS = '"Consider this a warning."'},
},
},
['fine'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_fine", SoundVolume = 0.3, TTS = '"You are being fined."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_fine_1", SoundVolume = 0.3, TTS = '"Here is your citation."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_fine_2", SoundVolume = 0.3, TTS = '"This is your ticket."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_fine_f", SoundVolume = 0.3, TTS = '"You are being fined."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_fine_1_f", SoundVolume = 0.3, TTS = '"Here is your citation."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_fine_2_f", SoundVolume = 0.3, TTS = '"This is your ticket."'},
},
},
['getout'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_getout", SoundVolume = 0.3, TTS = '"Please get out of the vehicle."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_getout_f", SoundVolume = 0.3, TTS = '"Please get out of the vehicle."'},
},
},
['follow'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_follow", SoundVolume = 0.3, TTS = '"Could you follow me please?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_follow_1", SoundVolume = 0.3, TTS = '"Please follow me."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_follow_2", SoundVolume = 0.3, TTS = '"Follow me."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_follow_f", SoundVolume = 0.3, TTS = '"Could you follow me please?"'},
[2] = {FileName = SoundFileLanguagePrefix .. "_follow_1_f", SoundVolume = 0.3, TTS = '"Please follow me."'},
[3] = {FileName = SoundFileLanguagePrefix .. "_follow_2_f", SoundVolume = 0.3, TTS = '"Follow me."'},
},
},
['wait'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_wait", SoundVolume = 0.3, TTS = '"Wait here please."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_wait_1", SoundVolume = 0.3, TTS = '"Could you please wait here?"'},
[3] = {FileName = SoundFileLanguagePrefix .. "_wait_2", SoundVolume = 0.3, TTS = '"Wait here."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_wait_f", SoundVolume = 0.3, TTS = '"Wait here please."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_wait_1_f", SoundVolume = 0.3, TTS = '"Could you please wait here?"'},
[3] = {FileName = SoundFileLanguagePrefix .. "_wait_2_f", SoundVolume = 0.3, TTS = '"Wait here."'},
},
},
['handsup'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_handsup", SoundVolume = 0.3, TTS = '"Put your hands up and stay where you are."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_handsup_1", SoundVolume = 0.3, TTS = '"Put your hands in the air!"'},
[3] = {FileName = SoundFileLanguagePrefix .. "_handsup_2", SoundVolume = 0.3, TTS = '"Hands up."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_handsup_f", SoundVolume = 0.3, TTS = '"Put your hands up and stay where you are."'},
[2] = {FileName = SoundFileLanguagePrefix .. "_handsup_1_f", SoundVolume = 0.3, TTS = '"Put your hands in the air!"'},
[3] = {FileName = SoundFileLanguagePrefix .. "_handsup_2_f", SoundVolume = 0.3, TTS = '"Hands up."'},
},
},
['search'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_search", SoundVolume = 0.3, TTS = '"I am going to Perform a search on you. Are there any items which can potentially cause harm or are prohibited that you would like to declare before I proceed?"'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_search_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_search_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_search_f", SoundVolume = 0.3, TTS = '"I am going to Perform a search on you. Are there any items which can potentially cause harm or are prohibited that you would like to declare before I proceed?"'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_search_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_search_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
},
['cuff'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_cuffs", SoundVolume = 0.3, TTS = '"Turn around so I can work on these cuffs."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_cuff_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_cuff_2", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_cuffs_f", SoundVolume = 0.3, TTS = '"Turn around so I can work on these cuffs."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_cuff_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_cuff_2", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
},
['putinvehicle'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_putinvehicle", SoundVolume = 0.3, TTS = '"Step into the back of the vehicle."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_putinvehicle_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_putinvehicle_2", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_putinvehicle_f", SoundVolume = 0.3, TTS = '"Step into the back of the vehicle."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_putinvehicle_f_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_putinvehicle_f_2", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
},
['end'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_end", SoundVolume = 0.3, TTS = '"You may go now."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_end_1", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_end_2", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_end_f", SoundVolume = 0.3, TTS = '"You may go now."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_end_1_f", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_end_2_f", SoundVolume = 0.3, TTS = '"Make your audio file and write the subtitle here."'},
},
},
}
--====================== LANGUAGE BASED BACKUP SPEECH SOUNDS ======================--
Config.NPCBackupRequestSoundFiles = {
['police'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_police", SoundVolume = 0.3, TTS = '"I require prisoner transport. Please send over a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_police_1", SoundVolume = 0.3, TTS = '"I require prisoner transport. Please send over a unit."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_police_2", SoundVolume = 0.3, TTS = '"I require prisoner transport. Please send over a unit."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_police_f", SoundVolume = 0.3, TTS = '"I require prisoner transport. Please send over a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_police_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_police_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['ambulance'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_ambulance", SoundVolume = 0.3, TTS = '"I require an ambulance at my location. Please send over a unit ASAP."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_ambulance_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_ambulance_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_ambulance_f", SoundVolume = 0.3, TTS = '"I require an ambulance at my location. Please send over a unit ASAP."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_ambulance_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_ambulance_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['taxi'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_taxi", SoundVolume = 0.3, TTS = '"Could you please dispatch a taxi to my location?"'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_taxi_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_taxi_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_taxi_f", SoundVolume = 0.3, TTS = '"Could you please dispatch a taxi to my location?"'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_taxi_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_taxi_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['tow'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_tow", SoundVolume = 0.3, TTS = '"I am in need of vehicle transportation. Please send over a tow truck."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_tow_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_tow_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_tow_f", SoundVolume = 0.3, TTS = '"I am in need of vehicle transportation. Please send over a tow truck."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_tow_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_tow_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['animalrescue'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_animalrescue", SoundVolume = 0.3, TTS = '"I require animal rescue services at my location. Please dispatch a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_animalrescue_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_animalrescue_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_animalrescue_f", SoundVolume = 0.3, TTS = '"I require animal rescue services at my location. Please dispatch a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_animalrescue_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_animalrescue_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['roadservice'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_roadservice", SoundVolume = 0.3, TTS = '"I require road cleanup services at my location. Please dispatch a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_roadservice_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_roadservice_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_roadservice_f", SoundVolume = 0.3, TTS = '"I require road cleanup services at my location. Please dispatch a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_roadservice_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_roadservice_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['coroner'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_coroner", SoundVolume = 0.3, TTS = '"I require a coroner at my location. Please dispatch a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_coroner_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_coroner_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_coroner_f", SoundVolume = 0.3, TTS = '"I require a coroner at my location. Please dispatch a unit."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_coroner_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_coroner_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['mechanic'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_mechanic", SoundVolume = 0.3, TTS = '"I require a mechanic at my location. Please dispatch a mechanic ASAP."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_mechanic_1", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_mechanic_2", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_mechanic_f", SoundVolume = 0.3, TTS = '"I require a mechanic at my location. Please dispatch a mechanic ASAP."'},
-- [2] = {FileName = SoundFileLanguagePrefix .. "_backup_mechanic_1_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
-- [3] = {FileName = SoundFileLanguagePrefix .. "_backup_mechanic_2_f", SoundVolume = 0.3, TTS = '"I need backup, stand by."'},
},
},
['fire'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_fire", SoundVolume = 0.3, TTS = '"I require firefighters at my location. Please dispatch a fire unit ASAP."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_backup_fire_f", SoundVolume = 0.3, TTS = '"I require firefighters at my location. Please dispatch a fire unit ASAP."'},
},
},
}
--====================== LANGUAGE BASED PURSUIT BACKUP SPEECH SOUNDS ======================--
Config.PursuitBackupSoundFiles = {
['light'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_light", SoundVolume = 0.3, TTS = '"I require backup at my location. Send over a motorbike unit."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_light_f", SoundVolume = 0.3, TTS = '"I require backup at my location. Send over a motorbike unit."'},
},
},
['medium'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_medium", SoundVolume = 0.3, TTS = '"I require assistance at my location. Send over a patrol unit."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_medium_f", SoundVolume = 0.3, TTS = '"I require assistance at my location. Send over a patrol unit."'},
},
},
['heavy'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_heavy", SoundVolume = 0.3, TTS = '"I require immediate assistance at my location. Send a firearms unit!"'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_heavy_f", SoundVolume = 0.3, TTS = '"I require immediate assistance at my location. Send a firearms unit!"'},
},
},
['air'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_air", SoundVolume = 0.3, TTS = '"I require eyes in the sky at my location. Please dispatch a helicopter unit."'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_air_f", SoundVolume = 0.3, TTS = '"I require eyes in the sky at my location. Please dispatch a helicopter unit."'},
},
},
['army'] = {
Male = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_army", SoundVolume = 0.3, TTS = '"I require the army at my position. Send them over, quickly!"'},
},
Female = {
[1] = {FileName = SoundFileLanguagePrefix .. "_pursuit_backup_army_f", SoundVolume = 0.3, TTS = '"I require the army at my position. Send them over, quickly!"'},
},
},
}