new update
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
# JPets
|
||||||
|

|
||||||
|
|
||||||
|
A simple standalone pets resource for FiveM
|
||||||
|
|
||||||
|
**This is my first ever FiveM release.**
|
||||||
|
|
||||||
|
With JPets, players can spawn in a range of animals (where **you** can configure it) which can attack and follow. This was mostly made for vMenu servers that want to implement pets someway (but feel free to use it anywhere you want).
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
* Download and put the files in your server's resources folder and ensure it in server.cfg.
|
||||||
|
* Configure the config.lua to your liking.
|
||||||
|
* Now start your server and load up your game.
|
||||||
|
* Execute /createPet \<petname> -- This name is set in your config.lua
|
||||||
|
* Point at a ped to attack and press `E` (by default).
|
||||||
|
* Enjoy!
|
||||||
|
|
||||||
|
There are two commands that are supported with this, those being:
|
||||||
|
|
||||||
|
* createPet \<petname> -- Does what it says (pet name set in config.lua).
|
||||||
|
* tpPet -- TPs your pet (if active)
|
||||||
|
|
||||||
|
## Video Preview:
|
||||||
|
https://www.youtube.com/watch?v=-HOYg66dzZc
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
It is highly customizable with all of these options available straight away. I would like to actively expand this resource however and am open to any and all suggestions anyone may have!
|
||||||
|
|
||||||
|

|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5'
|
||||||
|
|
||||||
|
-- Leaked By: Leaking Hub | J. Snow | https://discord.gg/aXWXXst
|
||||||
|
|
||||||
|
files {
|
||||||
|
'vehicles.meta',
|
||||||
|
'carvariations.meta',
|
||||||
|
'carcols.meta',
|
||||||
|
}
|
||||||
|
|
||||||
|
data_file 'VEHICLE_METADATA_FILE' 'vehicles.meta'
|
||||||
|
data_file 'CARCOLS_FILE' 'carcols.meta'
|
||||||
|
data_file 'VEHICLE_VARIATION_FILE' 'carvariations.meta'
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
Config = {
|
||||||
|
--[GENERAL]
|
||||||
|
PetFollow = true, -- If true, the pet will follow the player, this is buggy at the moment.
|
||||||
|
CanAttack = true, -- If true, the pet will attack peds.
|
||||||
|
AttackKey = 51, -- The key to attack the ped (E (default) = 51), refer to https://docs.fivem.net/docs/game-references/controls/ for keys. Only the key index is supported.
|
||||||
|
MaxDistance = 100.0, -- The maximum distance the pet can attack from - the pet will not attack if the distance is greater than this.
|
||||||
|
|
||||||
|
--[MARKER]
|
||||||
|
Timeout = 45000, -- Time (in milliseconds) before the pet "fails attack" (if unsuccessful).
|
||||||
|
ColorR = 255, -- Red color of the entity marker. (0 - 255)
|
||||||
|
ColorG = 0, -- Green color of the entity marker. (0 - 255)
|
||||||
|
ColorB = 0, -- Blue color of the entity marker. (0 - 255)
|
||||||
|
Alpha = 100, -- Alpha color of the entity marker. (0 = invisible, 255 = fully visible)
|
||||||
|
}
|
||||||
|
|
||||||
|
Animals = {
|
||||||
|
panther = "a_c_panther",
|
||||||
|
mountainlion = "a_c_mtlion",
|
||||||
|
retriever = "a_c_retriever",
|
||||||
|
bulldog = "a_c_chop",
|
||||||
|
cat = "a_c_cat_01",
|
||||||
|
man = "a_m_m_mlcrisis_01",
|
||||||
|
|
||||||
|
--[[Pets that don't attack will just walk around for a couple of seconds.
|
||||||
|
Add more animals here using https://docs.fivem.net/docs/game-references/ped-models/#animals and the format providing (dictionary).
|
||||||
|
pigeon = "a_c_pigeon", --Avoid doing birds, they tend to fly away midway through anything and they can't attack.
|
||||||
|
Human peds can attack too, but it's not recommended for a "pet script", is it now?]]
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
version '1.0.0'
|
||||||
|
author 'Junction'
|
||||||
|
description 'FiveM script to attack other peds (with a pet).'
|
||||||
|
|
||||||
|
fx_version 'cerulean'
|
||||||
|
games { 'gta5' }
|
||||||
|
lua54 'on'
|
||||||
|
|
||||||
|
client_scripts {
|
||||||
|
'petclient.lua',
|
||||||
|
'config.lua'
|
||||||
|
}
|
||||||
@@ -0,0 +1,128 @@
|
|||||||
|
RegisterCommand('createPet', function(source, args, rawCommand)
|
||||||
|
DeleteEntity(animal)
|
||||||
|
|
||||||
|
r = Config.ColorR
|
||||||
|
g = Config.ColorG
|
||||||
|
b = Config.ColorB
|
||||||
|
a = Config.Alpha
|
||||||
|
|
||||||
|
if args[1] == nil then
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~Invalid animal, ask the server owner to add it to the config or for the list.")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
|
||||||
|
else --string.lower(args[1]) ~= --[[ is in list]] nil then
|
||||||
|
|
||||||
|
RequestModel(GetHashKey(Animals[string.lower(args[1])]))
|
||||||
|
|
||||||
|
while not HasModelLoaded(GetHashKey(Animals[string.lower(args[1])])) do
|
||||||
|
Citizen.Wait(0)
|
||||||
|
end
|
||||||
|
|
||||||
|
animal = CreatePed(2, GetHashKey(Animals[string.lower(args[1])]), GetEntityCoords(PlayerPedId()), 0.0, true, true)
|
||||||
|
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~g~Created successfully!")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
|
||||||
|
local __, group = AddRelationshipGroup(PlayerPedId())
|
||||||
|
SetPedRelationshipGroupHash(animal, group)
|
||||||
|
SetPedRelationshipGroupHash(PlayerPedId(), group)
|
||||||
|
SetEntityCanBeDamagedByRelationshipGroup(animal, false, group)
|
||||||
|
print(GetRelationshipBetweenPeds(animal, PlayerPedId()))
|
||||||
|
|
||||||
|
SetEntityHealth(animal, GetEntityMaxHealth(animal))
|
||||||
|
Citizen.Wait(5000)
|
||||||
|
if Config.PetFollow then
|
||||||
|
TaskGoToEntity(animal, PlayerPedId(), -1, 0.0, 10.0, 1073741824.0, 0)
|
||||||
|
end
|
||||||
|
|
||||||
|
local blip = AddBlipForEntity(animal)
|
||||||
|
SetBlipHiddenOnLegend(blip, true)
|
||||||
|
SetBlipSprite(blip, 273)
|
||||||
|
--TaskCombatPed(animal, ped, 0, 16)
|
||||||
|
while GetEntityHealth(animal) > 0 do
|
||||||
|
Citizen.Wait(0)
|
||||||
|
end
|
||||||
|
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("Your ~y~pet ~w~has died. If you think this was an error, please attempt to spawn again.")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
|
||||||
|
PlaySoundFrontend(-1, "CHECKPOINT", "CAR_CLUB_RACES_PURSUIT_SERIES_SOUNDS", false)
|
||||||
|
|
||||||
|
SetBlipSprite(blip, 274)
|
||||||
|
DeleteEntity(animal)
|
||||||
|
animal = nil
|
||||||
|
SetEntityHealth(animal, 1000)
|
||||||
|
--[[else
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~Invalid Animal, only ~y~panther, mountainion, retriever and bulldog~r~ are supported.")
|
||||||
|
DrawNotification(true, false)]]
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
RegisterCommand('tpPet', function(source, args, rawCommand)
|
||||||
|
if animal ~= nil then
|
||||||
|
SetEntityCoords(animal, GetEntityCoords(PlayerPedId()))
|
||||||
|
if Config.PetFollow then
|
||||||
|
TaskGoToEntity(animal, PlayerPedId(), -1, 0.0, 10.0, 1073741824.0, 0)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~You don't have an active pet.")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
Citizen.CreateThread(function()
|
||||||
|
firstrun = true
|
||||||
|
animal = nil
|
||||||
|
|
||||||
|
if Config.CanAttack then
|
||||||
|
while true do
|
||||||
|
local aimingatentity, entity = GetEntityPlayerIsFreeAimingAt(PlayerId(-1))
|
||||||
|
attacking = false
|
||||||
|
if animal ~= nil and not attacking and aimingatentity and IsEntityAPed(entity) and GetEntityHealth(entity) and GetEntityModel(animal) ~= GetEntityModel(entity) ~= 0 then
|
||||||
|
DrawMarker(0, GetEntityCoords(entity).x, GetEntityCoords(entity).y, GetEntityCoords(entity).z + 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, r, g, b, a, true, true, 2, false, false, false, false)
|
||||||
|
if IsControlPressed(1, 51) then
|
||||||
|
if entity == animal then
|
||||||
|
ClearPedTasks(animal)
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~Pet can't attack itself!")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
elseif GetEntityModel(animal) == GetEntityModel(entity) then -- Just incase of error.
|
||||||
|
ClearPedTasks(animal)
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~Pet can't attack same animal as itself!")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
elseif GetEntityHealth(entity) == 0 then
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~Pet can't attack dead peds!")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
else
|
||||||
|
attacking = true
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~r~~h~Attacking!")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
TaskCombatPed(animal, entity, 0, 16)
|
||||||
|
time = GetCloudTimeAsInt()
|
||||||
|
increase = 0
|
||||||
|
while GetEntityHealth(entity) > 0 and GetEntityHealth(animal) > 0 and increase < Config.Timeout do
|
||||||
|
Citizen.Wait(0)
|
||||||
|
increase = GetCloudTimeAsInt() - time
|
||||||
|
end
|
||||||
|
SetNotificationTextEntry("STRING")
|
||||||
|
AddTextComponentString("~g~Attack over! Remaining health for ped is ~y~" .. GetEntityHealth(entity) .. "~g~! Pet's health is ~y~" .. GetEntityHealth(animal) .. "~g~!")
|
||||||
|
DrawNotification(true, false)
|
||||||
|
attacking = false
|
||||||
|
if Config.PetFollow then
|
||||||
|
TaskGoToEntity(animal, PlayerPedId(), -1, 0.0, 10.0, 1073741824.0, 0)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
Citizen.Wait(0)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
@@ -0,0 +1,252 @@
|
|||||||
|
# Table with Soundbank SoundSet and AudioString
|
||||||
|
|
||||||
|
|SoundBank|SoundSet|AudioString|
|
||||||
|
|-------------|-------------|--------------------------|
|
||||||
|
|New/Modern Sirens of the Los Santos Police Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lspd_new|oiss_ssa_vehaud_lspd_new_soundset|oiss_ssa_vehaud_lspd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_lspd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lspd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lspd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lspd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lspd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Los Santos Police Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lspd_old|oiss_ssa_vehaud_lspd_old_soundset|oiss_ssa_vehaud_lspd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_lspd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lspd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lspd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lspd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lspd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Los Santos Sheriff Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lssd_new|oiss_ssa_vehaud_lssd_new_soundset|oiss_ssa_vehaud_lssd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_lssd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lssd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lssd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lssd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lssd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Los Santos Sheriff Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lssd_old|oiss_ssa_vehaud_lssd_old_soundset|oiss_ssa_vehaud_lssd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_lssd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lssd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lssd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lssd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lssd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Blaine County Sheriff Office|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_bcso_new|oiss_ssa_vehaud_bcso_new_soundset|oiss_ssa_vehaud_bcso_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_bcso_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_bcso_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_bcso_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_bcso_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_bcso_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Blaine County Sheriff Office|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_bcso_old|oiss_ssa_vehaud_bcso_old_soundset|oiss_ssa_vehaud_bcso_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_bcso_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_bcso_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_bcso_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_bcso_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_bcso_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the San Andreas Highway Patrol|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sahp_new|oiss_ssa_vehaud_sahp_new_soundset|oiss_ssa_vehaud_sahp_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_sahp_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sahp_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sahp_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sahp_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sahp_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the San Andreas Highway Patrol|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sahp_old|oiss_ssa_vehaud_sahp_old_soundset|oiss_ssa_vehaud_sahp_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_sahp_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sahp_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sahp_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sahp_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sahp_old_siren_edward|
|
||||||
|
|Motorcycle Sirens of the San Andreas Highway Patrol|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sahp_bike|oiss_ssa_vehaud_sahp_bike_soundset|oiss_ssa_vehaud_sahp_bike_horn|
|
||||||
|
|||oiss_ssa_vehaud_sahp_bike_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sahp_bike_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sahp_bike_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sahp_bike_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sahp_bike_siren_edward|
|
||||||
|
|New/Modern Sirens of the National Office of Security Enforcement |||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_noose_new|oiss_ssa_vehaud_noose_new_soundset|oiss_ssa_vehaud_noose_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_noose_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_noose_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_noose_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_noose_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_noose_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the National Office of Security Enforcement |||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_noose_old|oiss_ssa_vehaud_noose_old_soundset|oiss_ssa_vehaud_noose_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_noose_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_noose_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_noose_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_noose_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_noose_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Federal Investigation Bureau|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_fib_new|oiss_ssa_vehaud_fib_new_soundset|oiss_ssa_vehaud_fib_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_fib_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_fib_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_fib_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_fib_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_fib_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Federal Investigation Bureau|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_fib_old|oiss_ssa_vehaud_fib_old_soundset|oiss_ssa_vehaud_fib_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_fib_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_fib_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_fib_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_fib_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_fib_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Rockford Hills Police Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_rhpd_new|oiss_ssa_vehaud_rhpd_new_soundset|oiss_ssa_vehaud_rhpd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Rockford Hills Police Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_rhpd_old|oiss_ssa_vehaud_rhpd_old_soundset|oiss_ssa_vehaud_rhpd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_rhpd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Del Perro Police Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_dppd_new|oiss_ssa_vehaud_dppd_new_soundset|oiss_ssa_vehaud_dppd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_dppd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_dppd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_dppd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_dppd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_dppd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Del Perro Police Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_dppd_old|oiss_ssa_vehaud_dppd_old_soundset|oiss_ssa_vehaud_dppd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_dppd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_dppd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_dppd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_dppd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_dppd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Los Santos International Airport Police|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lsia_new|oiss_ssa_vehaud_lsia_new_soundset|oiss_ssa_vehaud_lsia_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_lsia_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lsia_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lsia_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lsia_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lsia_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Los Santos International Airport Police|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lsia_old|oiss_ssa_vehaud_lsia_old_soundset|oiss_ssa_vehaud_lsia_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_lsia_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lsia_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lsia_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lsia_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lsia_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Los Santos Port Police|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lspp_new|oiss_ssa_vehaud_lspp_new_soundset|oiss_ssa_vehaud_lspp_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_lspp_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lspp_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lspp_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lspp_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lspp_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Los Santos Port Police|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lspp_old|oiss_ssa_vehaud_lspp_old_soundset|oiss_ssa_vehaud_lspp_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_lspp_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lspp_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lspp_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lspp_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lspp_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Los Santos Fire Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lsfd_new|oiss_ssa_vehaud_lsfd_new_soundset|oiss_ssa_vehaud_lsfd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Los Santos Fire Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lsfd_old|oiss_ssa_vehaud_lsfd_old_soundset|oiss_ssa_vehaud_lsfd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lsfd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Los Santos County Fire Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lscofd_new|oiss_ssa_vehaud_lscofd_new_soundset|oiss_ssa_vehaud_lscofd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Los Santos County Fire Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_lscofd_old|oiss_ssa_vehaud_lscofd_old_soundset|oiss_ssa_vehaud_lscofd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_lscofd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the Blaine County Fire Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_bcfd_new|oiss_ssa_vehaud_bcfd_new_soundset|oiss_ssa_vehaud_bcfd_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the Blaine County Fire Department|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_bcfd_old|oiss_ssa_vehaud_bcfd_old_soundset|oiss_ssa_vehaud_bcfd_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_bcfd_old_siren_edward|
|
||||||
|
|New/Modern Sirens of SanFire|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sanfire_new|oiss_ssa_vehaud_sanfire_new_soundset|oiss_ssa_vehaud_sanfire_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of SanFire|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sanfire_old|oiss_ssa_vehaud_sanfire_old_soundset|oiss_ssa_vehaud_sanfire_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sanfire_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the San Andreas Medical Services|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sams_new|oiss_ssa_vehaud_sams_new_soundset|oiss_ssa_vehaud_sams_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_sams_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sams_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sams_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sams_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sams_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the San Andreas Medical Services|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_sams_old|oiss_ssa_vehaud_sams_old_soundset|oiss_ssa_vehaud_sams_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_sams_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_sams_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_sams_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_sams_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_sams_old_siren_edward|
|
||||||
|
|New/Modern Sirens of the United States Forest Services|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_usfs_new|oiss_ssa_vehaud_usfs_new_soundset|oiss_ssa_vehaud_usfs_new_horn|
|
||||||
|
|||oiss_ssa_vehaud_usfs_new_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_usfs_new_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_usfs_new_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_usfs_new_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_usfs_new_siren_edward|
|
||||||
|
|Old/Vintage Sirens of the United States Forest Services|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_usfs_old|oiss_ssa_vehaud_usfs_old_soundset|oiss_ssa_vehaud_usfs_old_horn|
|
||||||
|
|||oiss_ssa_vehaud_usfs_old_siren_adam|
|
||||||
|
|||oiss_ssa_vehaud_usfs_old_siren_boy|
|
||||||
|
|||oiss_ssa_vehaud_usfs_old_siren_charles|
|
||||||
|
|||oiss_ssa_vehaud_usfs_old_siren_david|
|
||||||
|
|||oiss_ssa_vehaud_usfs_old_siren_edward|
|
||||||
|
|Miscellaneous Siren and Vehicle Sounds|||
|
||||||
|
|dlc_serversideaudio/oiss_ssa_vehaud_etc|oiss_ssa_vehaud_etc_soundset|oiss_ssa_vehaud_etc_adam|
|
||||||
|
|||oiss_ssa_vehaud_etc_boy|
|
||||||
|
|||oiss_ssa_vehaud_etc_charles|
|
||||||
|
|||oiss_ssa_vehaud_etc_david|
|
||||||
|
|||oiss_ssa_vehaud_etc_edward|
|
||||||
|
|||oiss_ssa_vehaud_etc_frank|
|
||||||
|
|||oiss_ssa_vehaud_etc_george|
|
||||||
|
|||oiss_ssa_vehaud_etc_henry|
|
||||||
|
|||oiss_ssa_vehaud_etc_ida|
|
||||||
|
|||oiss_ssa_vehaud_etc_john|
|
||||||
|
|||oiss_ssa_vehaud_etc_king|
|
||||||
|
|||oiss_ssa_vehaud_etc_lincoln|
|
||||||
|
|||oiss_ssa_vehaud_etc_mary|
|
||||||
|
|||oiss_ssa_vehaud_etc_nancy|
|
||||||
|
|||oiss_ssa_vehaud_etc_ocean|
|
||||||
|
|||oiss_ssa_vehaud_etc_paul|
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
# Server Sided Sounds and Sirens
|
||||||
|
|
||||||
|
We wanted custom sirens, many custom sirens.
|
||||||
|
|
||||||
|
How many? 214. Why? Nobody knows.
|
||||||
|
|
||||||
|
|
||||||
|
But after we finally managed it to do it. Here you go.
|
||||||
|
|
||||||
|
## Pros
|
||||||
|
214 Sirens
|
||||||
|
|
||||||
|
It's free
|
||||||
|
|
||||||
|
## Cons
|
||||||
|
You have to use our names (in the files), due to the fact that we were to lazy to change the name for the release.
|
||||||
|
|
||||||
|
# Usage
|
||||||
|
|
||||||
|
Just use and change the audio files (wav.) in the .AWC files in the `dlc_serversideaudio` Folder using OpenIV or other AWC editing tools. The awc files shouldn't be larger than 16MB. Which we honestly never tested ... So you might experience some fivem restrictions we aren't aware of. (But at least 4MB are totally okay, well tested by us.)
|
||||||
|
|
||||||
|
Here is a Table with the Soundbank Soundsets and Audiostrings used in this resource: https://github.com/fk-1997/Server-Sided-Sounds-and-Sirens/blob/main/IDTABLE.md#table-with-soundbank-soundset-and-audiostring
|
||||||
|
|
||||||
|
## Luxart Vehicle Control
|
||||||
|
|
||||||
|
There is a great wiki over on their github: https://docs.luxartengineering.com/v3/resource-installation/server-sided-siren-integration
|
||||||
|
|
||||||
|
## ELS-Plus
|
||||||
|
|
||||||
|
These are the current ELS-Plus settings:
|
||||||
|
|
||||||
|
`SoundBank="dlc_serversideaudio/oiss_ssa_vehaud_bcso_new"` or other Soundbanks
|
||||||
|
|
||||||
|
`SoundSet="oiss_ssa_vehaud_bcso_new_soundset"` or other SoundSets
|
||||||
|
|
||||||
|
`AudioString="oiss_ssa_vehaud_bcso_new_horn"` or other AudioStrings
|
||||||
|
|
||||||
|
## FiveM Scripts
|
||||||
|
|
||||||
|
Use this native
|
||||||
|
|
||||||
|
https://docs.fivem.net/natives/?_0x2F844A8B08D76685
|
||||||
|
|
||||||
|
p0 = `"DLC_SERVERSIDEAUDIO\\OISS_SSA_VEHAUD_BCSO_NEW"` or other Soundbanks
|
||||||
|
|
||||||
|
p1 = `false`
|
||||||
|
|
||||||
|
And call the sounds using this native:
|
||||||
|
|
||||||
|
https://docs.fivem.net/natives/?_0xE65F427EB70AB1ED
|
||||||
|
|
||||||
|
soundId = `-1`
|
||||||
|
|
||||||
|
audioName = `"OISS_SSA_VEHAUD_BCSO_NEW_HORN"`
|
||||||
|
|
||||||
|
entity = your entity || Most likely `GetVehiclePedIsUsing(PlayerPedId())`
|
||||||
|
|
||||||
|
audioRef `"DLC_SERVERSIDEAUDIO\\OISS_SSA_VEHAUD_BCSO_NEW"`
|
||||||
|
|
||||||
|
isNetwork = `0`
|
||||||
|
|
||||||
|
p5 = `0`
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
To test server sided sirens without configuring another resouce check out: https://github.com/TrevorBarns/Server-Side-Audio-Tester
|
||||||
|
|
||||||
|
# Thanks ❤️
|
||||||
|
|
||||||
|
Thanks to our server staff, mk7a and the guys on the CodeWalker Discord for the work, support and overall kindness!
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_new\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_new\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_new\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_new\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_new\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_new\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_old\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_old\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_old\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_old\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_old\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcfd_old\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_new\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_new\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_new\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_new\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_new\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_new\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_old\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_old\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_old\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_old\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_old\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_bcso_old\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_new\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_new\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_new\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_new\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_new\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_new\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_old\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_old\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_old\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_old\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_old\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_dppd_old\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,264 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_frank
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_frank.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_george
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_george.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_henry
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_henry.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_ida
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_ida.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_john
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_john.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_king
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_king.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_lincoln
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_lincoln.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_mary
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_mary.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_nancy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_nancy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_ocean
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_ocean.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_paul
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_etc\oiss_ssa_vehaud_paul.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_new\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_new\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_new\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_new\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_new\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_new\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_old\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_old\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_old\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_old\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_old\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_fib_old\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_new\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_new\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_new\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_new\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_new\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_new\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_old\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_old\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_old\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_old\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_old\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lscofd_old\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+104
@@ -0,0 +1,104 @@
|
|||||||
|
Version 1 11
|
||||||
|
{
|
||||||
|
IsStream False
|
||||||
|
DescriptorsInOrder False
|
||||||
|
Entries
|
||||||
|
{
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_adam
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lsfd_new\oiss_ssa_vehaud_siren_adam.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_boy
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lsfd_new\oiss_ssa_vehaud_siren_boy.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_charles
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lsfd_new\oiss_ssa_vehaud_siren_charles.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_david
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lsfd_new\oiss_ssa_vehaud_siren_david.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_siren_edward
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lsfd_new\oiss_ssa_vehaud_siren_edward.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
WaveTrack oiss_ssa_vehaud_horn
|
||||||
|
{
|
||||||
|
Compression PCM
|
||||||
|
Headroom -200
|
||||||
|
LoopPoint 0
|
||||||
|
LoopBegin 0
|
||||||
|
LoopEnd 0
|
||||||
|
PlayBegin 0
|
||||||
|
PlayEnd 0
|
||||||
|
Wave oiss_ssa_vehaud_lsfd_new\oiss_ssa_vehaud_horn.wav
|
||||||
|
AnimClip null
|
||||||
|
Events null
|
||||||
|
UNKNOWN_23097A2B null
|
||||||
|
UNKNOWN_E787895A null
|
||||||
|
UNKNOWN_252C20D9 null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user