Server-Sided-Sounds-and-Sirens-main
只需要把打包的音频库存入dlc_serversideaudio然后转到LVC配置
[LVC]
SETTINGS.lua
插件基本配置设定--------------------COMMUNITY ID 社区Id-------------------
community_id = 'JaysonLiu'
-- Sets a prefix for saved values at the user end, without this people who play on multiple LVC server could face conflicts. **Once set DO NOT CHANGE. It will result in loss of data for end users.**
-- I recommend something short (4-6 characters) for example a community abbreviation. SPACES ARE NOT ALLOWED.
------------------MENU KEYBINDING 选项菜单------------------
open_menu_key = 'O'
-- Sets default key for RegisterKeyMapping. Examples: 'l','F5', etc. DEFAULT: 'O', users may set one in their GTA V > Settings > Hotkeys > FiveM settings.
-- More info: https://cookbook.fivem.net/2020/01/06/using-the-new-console-key-bindings/
-- List of Keys: https://pastebin.com/u9ewvWWZ
---------------LOCKOUT FUNCTIONALITY 锁定控制器---------------
lockout_default_hotkey = ''
-- Sets default key for RegisterKeyMapping. Examples: 'l','F5', etc. DEFAULT: NONE, users may set one in their GTA V > Settings > Hotkeys > FiveM settings.
-- More info: https://cookbook.fivem.net/2020/01/06/using-the-new-console-key-bindings/
-- List of Keys: https://pastebin.com/u9ewvWWZ
locked_press_count = 5
-- Initial press count for reminder e.g. if this is 5 and reminder_rate is 10 then, after 5 key presses it will remind you the first time, after that every 10 key presses.
reminder_rate = 10
-- How often, in luxart key presses, to remind you that your siren controller is locked.
-----------------HUD FUNCTIONALITY HUD功能-----------------
hud_first_default = true
-- First state of HUD, otherwise it uses the players KVP setting (previous state).
---------------MAIN SIREN SETTINGS 主警报控制配置-----------------
main_siren_settings_masterswitch = true
-- Enables users to rename siren tones, change siren options. (Cycle / Button)
park_kill_masterswitch = false
-- Enables park kill functionality. Setting this to false will not allow users to change from default behaviour this.
park_kill_default = false
-- Default setting for park kill mode. (default: true)
airhorn_interrupt_masterswitch = false
-- Enables ability to toggle air horn interrupt. Setting this to false will not allow users to change from default behaviour this.
airhorn_interrupt_default = false
-- Default setting of the airhorn interrupt for the main siren. (default: true)
reset_to_standby_masterswitch = true
-- Enables ability to toggle reset to standby. Setting this to false will not allow users to change from default behaviour this.
reset_to_standby_default = true
-- Default setting for Reset-To-Standby functionality. (default: true)
--------------CUSTOM MANU/HORN/SIREN 自定义配置---------------
custom_manual_tones_master_switch = true
-- Enables manual tone settings menu items to change which tone is played for the primary and secondary manual tones.
custom_aux_tones_master_switch = true
-- Enables auxiliary tone settings menu item so players can change which tone is played when AUX siren (Up-Arrow) is enabled.
main_siren_set_register_keys_set_defaults = true
-- Enables RegisterKeyMapping for all main_allowed_tones and sets the default keys to numrow 1-0.
--------------TURN SIGNALS / HAZARDS 转向灯控制配置---------------
hazard_key = 202
left_signal_key = 84
right_signal_key = 83
hazard_hold_duration = 750
-- Time in milliseconds backspace must be pressed to turn on / off hazard lights.
----------------SOUND EFFECT VOLUMES 声音控制---------------
button_sfx_scheme_choices = { 'SSP2000', 'SSP3000', 'Cencom', 'ST300' }
--Customize which button SFX schemes are available. An item here must match exactly the folder name located in `lvc\UI\sounds`, recommend NOT using spaces instead use a dash (e.g. Cencom-Gold)
default_sfx_scheme_name = 'SSP2000'
default_on_volume = 0.5
default_off_volume = 0.7
default_upgrade_volume = 0.5
default_downgrade_volume = 0.7
default_hazards_volume = 0.09
default_lock_volume = 0.25
default_lock_reminder_volume = 0.2
default_reminder_volume = 0.09
------------------PLUG-IN SUPPORT------------------
plugins_installed = true
SIRENS.lua
重要配置——载入你所需要的音频库
RequestScriptAudioBank函数
- 第一个参数为需要加载的音频库路径
- 'DLC_SERVERSIDEAUDIO\\OISS_SSA_VEHAUD_LSPD_NEW'
- 第二个参数为音频库加载方式
- true, 表示同步加载(同步加载会导致当前线程阻塞,等待同步加载完成)
- false, 表示异步加载(异步避免阻塞,提升本地性能开销)
GTAV和FiveM一般音频文件格式为音频打包文件 ".awc" 该文件包含多个音频 ".wav" 文件
-- WM-ServerSiren Support 请求脚本音频库
RequestScriptAudioBank('DLC_SERVERSIDEAUDIO\\OISS_SSA_VEHAUD_LSPD_NEW', false) -- LSPD
SIRENS = {
--[[1]] { Name = 'Airhorn', String = 'SIRENS_AIRHORN', Ref = 0 },
--[[2]] { Name = 'Wail', String = 'VEHICLES_HORNS_SIREN_1', Ref = 0 },
--[[3]] { Name = 'Yelp', String = 'VEHICLES_HORNS_SIREN_2', Ref = 0 },
--[[4]] { Name = 'Priority', String = 'VEHICLES_HORNS_POLICE_WARNING', Ref = 0 },
--[[5]] { Name = 'CustomA', String = 'RESIDENT_VEHICLES_SIREN_WAIL_01', Ref = 0 },
--[[6]] { Name = 'CustomB', String = 'RESIDENT_VEHICLES_SIREN_WAIL_02', Ref = 0 },
--[[7]] { Name = 'CustomA', String = 'RESIDENT_VEHICLES_SIREN_WAIL_03', Ref = 0 },
--[[8]] { Name = 'CustomA', String = 'RESIDENT_VEHICLES_SIREN_QUICK_01', Ref = 0 },
--[[9]] { Name = 'CustomA', String = 'RESIDENT_VEHICLES_SIREN_QUICK_02', Ref = 0 },
--[[10]] { Name = 'CustomA', String = 'RESIDENT_VEHICLES_SIREN_QUICK_03', Ref = 0 },
--[[11]] { Name = 'CustomA', String = 'VEHICLES_HORNS_AMBULANCE_WARNING', Ref = 0 },
--[[12]] { Name = 'FireHorn', String = 'VEHICLES_HORNS_FIRETRUCK_WARNING', Ref = 0 },
--[[13]] { Name = 'Fire Yelp', String = 'RESIDENT_VEHICLES_SIREN_FIRETRUCK_WAIL_01', Ref = 0 },
--[[14]] { Name = 'Fire Yelp', String = 'RESIDENT_VEHICLES_SIREN_FIRETRUCK_QUICK_01', Ref = 0 },
-- 自定义的现实音频素材 --
-- LSPD
--[[15]] { Name = '295-HORN', String = 'OISS_SSA_VEHAUD_LSPD_NEW_HORN', Ref = 'OISS_SSA_VEHAUD_LSPD_NEW_SOUNDSET'},
--[[16]] { Name = '295-WAIL', String = 'OISS_SSA_VEHAUD_LSPD_NEW_SIREN_ADAM', Ref = 'OISS_SSA_VEHAUD_LSPD_NEW_SOUNDSET'},
--[[17]] { Name = '295-YELP', String = 'OISS_SSA_VEHAUD_LSPD_NEW_SIREN_BOY', Ref = 'OISS_SSA_VEHAUD_LSPD_NEW_SOUNDSET'},
--[[18]] { Name = '295-PIERCER', String = 'OISS_SSA_VEHAUD_LSPD_NEW_SIREN_CHARLES', Ref = 'OISS_SSA_VEHAUD_LSPD_NEW_SOUNDSET'},
--[[19]] { Name = '295-SWEEP', String = 'OISS_SSA_VEHAUD_LSPD_NEW_SIREN_DAVID', Ref = 'OISS_SSA_VEHAUD_LSPD_NEW_SOUNDSET'},
--[[20]] { Name = '295-HETRO', String = 'OISS_SSA_VEHAUD_LSPD_NEW_SIREN_EDWARD', Ref = 'OISS_SSA_VEHAUD_LSPD_NEW_SOUNDSET', Option = 3},
}
车辆音效配置
['车辆模型名称'] = { 音效号码, 音效号码, 音效号码,音效号码, 音效号码 },SIREN_ASSIGNMENTS = {
--['<gameName>'] = {tones},
-- [LAPD 15~20] [LASD 21~26] [TMD(联邦) 27~32] [SAHP(CHP) 33~38] [FBI 39~44] [LAFD(消防) 45~48] [(消防) 49~50]
['DEFAULT'] = { 15, 16, 17, 18, 25, 26 }, -- 默认数据
['FIRETRUK'] = { 45, 46, 47, 48, 49, 50 }, -- 原版消防车
['ambulance'] = { 39, 40, 41, 42, 25, 26 }, -- 原版救护车
-- LSPD/LSSD
['23legacy20fpiu'] = { 15, 16, 17, 18, 25, 26 },
['23legacy21suv'] = { 15, 16, 17, 18, 25, 26 },
['23legacy16fpiu'] = { 15, 16, 17, 18, 25, 26 },
['23legacy18sedan'] = { 15, 16, 17, 18, 25, 26 },
-- LSSD原版
['sheriff18charger'] = { 15, 22, 23, 24, 25, 26 },
['sheriff20fpiu'] = { 15, 22, 23, 24, 25, 26 },
-- 急救车模板
['16fpiupov'] = { 33, 28, 29, 30, 31, 32 },
['18tahoepru'] = { 33, 28, 29, 30, 31, 32 },
['durangopru'] = { 33, 28, 29, 30, 31, 32 },
['20fpiupov'] = { 33, 28, 29, 30, 31, 32 },
-- 大型救护车模板
['f450ambo'] = { 39, 40, 41, 42, 25, 26 }, -- 救护车
-- FIRE 消防
['fdsilverado'] = { 33, 28, 29, 30, 31, 32 },
['Squadcc'] = { 33, 28, 29, 30, 31, 32 },
['Squad1'] = { 33, 28, 29, 30, 31, 32 },
-- SAHP(CHP模板
['hp1'] = { 33, 16, 17, 18, 25, 26 },
['hp2'] = { 33, 16, 17, 18, 25, 26 },
['hp3'] = { 33, 16, 17, 18, 25, 26 },
['hp4'] = { 33, 16, 17, 18, 25, 26 },
['hp5'] = { 33, 16, 17, 18, 25, 26 },
['hp6'] = { 33, 16, 17, 18, 25, 26 },
['hp7'] = { 33, 16, 17, 18, 25, 26 },
['hp8'] = { 33, 16, 17, 18, 25, 26 },
['hp9'] = { 33, 16, 17, 18, 25, 26 },
}
|