diff --git a/lua/arc9/common/sh_common.lua b/lua/arc9/common/sh_common.lua index 4af29606..9fcdbcf0 100644 --- a/lua/arc9/common/sh_common.lua +++ b/lua/arc9/common/sh_common.lua @@ -30,47 +30,47 @@ ARC9.CosmeticCategories = { ["stickers"] = true, } ARC9.ShellSoundsTable = { - "arc9/casings/casing_556_1.wav", - "arc9/casings/casing_556_2.wav", - "arc9/casings/casing_556_3.wav", - "arc9/casings/casing_556_4.wav", - "arc9/casings/casing_308_1.wav", - "arc9/casings/casing_308_2.wav", - "arc9/casings/casing_308_3.wav", - "arc9/casings/casing_308_4.wav" + "arc9/casings/casing_556_1.ogg", + "arc9/casings/casing_556_2.ogg", + "arc9/casings/casing_556_3.ogg", + "arc9/casings/casing_556_4.ogg", + "arc9/casings/casing_308_1.ogg", + "arc9/casings/casing_308_2.ogg", + "arc9/casings/casing_308_3.ogg", + "arc9/casings/casing_308_4.ogg" } ARC9.PistolShellSoundsTable = { - "arc9/casings/casing_9mm_1.wav", - "arc9/casings/casing_9mm_2.wav", - "arc9/casings/casing_9mm_3.wav", - "arc9/casings/casing_9mm_4.wav", - "arc9/casings/casing_9mm_1.wav", - "arc9/casings/casing_9mm_2.wav", - "arc9/casings/casing_9mm_3.wav", - "arc9/casings/casing_9mm_4.wav" + "arc9/casings/casing_9mm_1.ogg", + "arc9/casings/casing_9mm_2.ogg", + "arc9/casings/casing_9mm_3.ogg", + "arc9/casings/casing_9mm_4.ogg", + "arc9/casings/casing_9mm_1.ogg", + "arc9/casings/casing_9mm_2.ogg", + "arc9/casings/casing_9mm_3.ogg", + "arc9/casings/casing_9mm_4.ogg" } ARC9.TinyShellSoundsTable = { - "arc9/casings/casing_22_1.wav", - "arc9/casings/casing_22_2.wav", - "arc9/casings/casing_22_3.wav", - "arc9/casings/casing_22_4.wav", - "arc9/casings/casing_22_1.wav", - "arc9/casings/casing_22_2.wav", - "arc9/casings/casing_22_3.wav", - "arc9/casings/casing_22_4.wav" + "arc9/casings/casing_22_1.ogg", + "arc9/casings/casing_22_2.ogg", + "arc9/casings/casing_22_3.ogg", + "arc9/casings/casing_22_4.ogg", + "arc9/casings/casing_22_1.ogg", + "arc9/casings/casing_22_2.ogg", + "arc9/casings/casing_22_3.ogg", + "arc9/casings/casing_22_4.ogg" } ARC9.ShotgunShellSoundsTable = { - "arc9/casings/casing_12ga_1.wav", - "arc9/casings/casing_12ga_2.wav", - "arc9/casings/casing_12ga_3.wav", - "arc9/casings/casing_12ga_4.wav", - "arc9/casings/casing_12ga_1.wav", - "arc9/casings/casing_12ga_2.wav", - "arc9/casings/casing_12ga_3.wav", - "arc9/casings/casing_12ga_4.wav" + "arc9/casings/casing_12ga_1.ogg", + "arc9/casings/casing_12ga_2.ogg", + "arc9/casings/casing_12ga_3.ogg", + "arc9/casings/casing_12ga_4.ogg", + "arc9/casings/casing_12ga_1.ogg", + "arc9/casings/casing_12ga_2.ogg", + "arc9/casings/casing_12ga_3.ogg", + "arc9/casings/casing_12ga_4.ogg" } ARC9.RicochetSounds = { diff --git a/lua/entities/arc9_att_base.lua b/lua/entities/arc9_att_base.lua index 530be43d..7864d44a 100644 --- a/lua/entities/arc9_att_base.lua +++ b/lua/entities/arc9_att_base.lua @@ -80,7 +80,7 @@ if SERVER then end util.Effect("arc9_opencrate", effectdata) - self:EmitSound("arc9/useatt.wav") + self:EmitSound("arc9/useatt.ogg") self:Remove() end end diff --git a/lua/weapons/arc9_base/sh_sights.lua b/lua/weapons/arc9_base/sh_sights.lua index 1ba9e5d3..450b45da 100644 --- a/lua/weapons/arc9_base/sh_sights.lua +++ b/lua/weapons/arc9_base/sh_sights.lua @@ -415,7 +415,7 @@ function SWEP:Scroll(amt) if old != sights.ScrollLevel then local soundtab1 = { name = "zoom", - sound = atttbl.ZoomSound or "arc9/useatt.wav", + sound = atttbl.ZoomSound or "arc9/useatt.ogg", pitch = math.Rand(95, 105), vol = 1, chan = CHAN_ITEM diff --git a/lua/weapons/arc9_base/shared.lua b/lua/weapons/arc9_base/shared.lua index 01cec542..ff5f7375 100644 --- a/lua/weapons/arc9_base/shared.lua +++ b/lua/weapons/arc9_base/shared.lua @@ -886,7 +886,7 @@ SWEP.DistantShootSound = nil SWEP.DryFireSound = "" SWEP.DryFireSingleAction = false -- Play dryfire sound only once -SWEP.FiremodeSound = "arc9/firemode.wav" +SWEP.FiremodeSound = "arc9/firemode.ogg" SWEP.ToggleAttSound = { "arc9/toggles/flashlight_laser_toggle_on_01.ogg", "arc9/toggles/flashlight_laser_toggle_on_02.ogg", @@ -896,22 +896,22 @@ SWEP.ToggleAttSound = { SWEP.EnterSightsSound = "" SWEP.ExitSightsSound = "" -SWEP.EnterBipodSound = "arc9/bipod_down.wav" -SWEP.ExitBipodSound = "arc9/bipod_up.wav" +SWEP.EnterBipodSound = "arc9/bipod_down.ogg" +SWEP.ExitBipodSound = "arc9/bipod_up.ogg" SWEP.EnterUBGLSound = "" SWEP.ExitUBGLSound = "" SWEP.MalfunctionSound = "" -SWEP.MeleeHitSound = "arc9/melee_hitbody.wav" -SWEP.MeleeHitWallSound = "arc9/melee_hitworld.wav" -SWEP.MeleeSwingSound = "arc9/melee_miss.wav" +SWEP.MeleeHitSound = "arc9/melee_hitbody.ogg" +SWEP.MeleeHitWallSound = "arc9/melee_hitworld.ogg" +SWEP.MeleeSwingSound = "arc9/melee_miss.ogg" SWEP.BackstabSound = "weapons/knife/knife_stab.wav" -SWEP.BreathInSound = "arc9/breath_inhale.wav" -SWEP.BreathOutSound = "arc9/breath_exhale.wav" -SWEP.BreathRunOutSound = "arc9/breath_runout.wav" +SWEP.BreathInSound = "arc9/breath_inhale.ogg" +SWEP.BreathOutSound = "arc9/breath_exhale.ogg" +SWEP.BreathRunOutSound = "arc9/breath_runout.ogg" SWEP.TriggerDownSound = "" SWEP.TriggerUpSound = "" diff --git a/sound/arc9/bipod_down.ogg b/sound/arc9/bipod_down.ogg new file mode 100644 index 00000000..cdc19525 Binary files /dev/null and b/sound/arc9/bipod_down.ogg differ diff --git a/sound/arc9/bipod_down.wav b/sound/arc9/bipod_down.wav deleted file mode 100644 index a3ed3edc..00000000 Binary files a/sound/arc9/bipod_down.wav and /dev/null differ diff --git a/sound/arc9/bipod_up.ogg b/sound/arc9/bipod_up.ogg new file mode 100644 index 00000000..16134a33 Binary files /dev/null and b/sound/arc9/bipod_up.ogg differ diff --git a/sound/arc9/bipod_up.wav b/sound/arc9/bipod_up.wav deleted file mode 100644 index fcedf673..00000000 Binary files a/sound/arc9/bipod_up.wav and /dev/null differ diff --git a/sound/arc9/breath_exhale.ogg b/sound/arc9/breath_exhale.ogg new file mode 100644 index 00000000..c159917b Binary files /dev/null and b/sound/arc9/breath_exhale.ogg differ diff --git a/sound/arc9/breath_exhale.wav b/sound/arc9/breath_exhale.wav deleted file mode 100644 index ab0226d1..00000000 Binary files a/sound/arc9/breath_exhale.wav and /dev/null differ diff --git a/sound/arc9/breath_inhale.ogg b/sound/arc9/breath_inhale.ogg new file mode 100644 index 00000000..1568b893 Binary files /dev/null and b/sound/arc9/breath_inhale.ogg differ diff --git a/sound/arc9/breath_inhale.wav b/sound/arc9/breath_inhale.wav deleted file mode 100644 index 0c36bb3c..00000000 Binary files a/sound/arc9/breath_inhale.wav and /dev/null differ diff --git a/sound/arc9/breath_runout.ogg b/sound/arc9/breath_runout.ogg new file mode 100644 index 00000000..760cb71e Binary files /dev/null and b/sound/arc9/breath_runout.ogg differ diff --git a/sound/arc9/breath_runout.wav b/sound/arc9/breath_runout.wav deleted file mode 100644 index 67acbf29..00000000 Binary files a/sound/arc9/breath_runout.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_12ga_1.ogg b/sound/arc9/casings/casing_12ga_1.ogg new file mode 100644 index 00000000..e034ad5d Binary files /dev/null and b/sound/arc9/casings/casing_12ga_1.ogg differ diff --git a/sound/arc9/casings/casing_12ga_1.wav b/sound/arc9/casings/casing_12ga_1.wav deleted file mode 100644 index e5c166fb..00000000 Binary files a/sound/arc9/casings/casing_12ga_1.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_12ga_2.ogg b/sound/arc9/casings/casing_12ga_2.ogg new file mode 100644 index 00000000..bc7f573b Binary files /dev/null and b/sound/arc9/casings/casing_12ga_2.ogg differ diff --git a/sound/arc9/casings/casing_12ga_2.wav b/sound/arc9/casings/casing_12ga_2.wav deleted file mode 100644 index 4f5e77ac..00000000 Binary files a/sound/arc9/casings/casing_12ga_2.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_12ga_3.ogg b/sound/arc9/casings/casing_12ga_3.ogg new file mode 100644 index 00000000..c78ff210 Binary files /dev/null and b/sound/arc9/casings/casing_12ga_3.ogg differ diff --git a/sound/arc9/casings/casing_12ga_3.wav b/sound/arc9/casings/casing_12ga_3.wav deleted file mode 100644 index 5717b57b..00000000 Binary files a/sound/arc9/casings/casing_12ga_3.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_12ga_4.ogg b/sound/arc9/casings/casing_12ga_4.ogg new file mode 100644 index 00000000..da50b6cd Binary files /dev/null and b/sound/arc9/casings/casing_12ga_4.ogg differ diff --git a/sound/arc9/casings/casing_12ga_4.wav b/sound/arc9/casings/casing_12ga_4.wav deleted file mode 100644 index de265bb5..00000000 Binary files a/sound/arc9/casings/casing_12ga_4.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_22_1.ogg b/sound/arc9/casings/casing_22_1.ogg new file mode 100644 index 00000000..b535fb7c Binary files /dev/null and b/sound/arc9/casings/casing_22_1.ogg differ diff --git a/sound/arc9/casings/casing_22_1.wav b/sound/arc9/casings/casing_22_1.wav deleted file mode 100644 index eafac5fe..00000000 Binary files a/sound/arc9/casings/casing_22_1.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_22_2.ogg b/sound/arc9/casings/casing_22_2.ogg new file mode 100644 index 00000000..37d97482 Binary files /dev/null and b/sound/arc9/casings/casing_22_2.ogg differ diff --git a/sound/arc9/casings/casing_22_2.wav b/sound/arc9/casings/casing_22_2.wav deleted file mode 100644 index b263f561..00000000 Binary files a/sound/arc9/casings/casing_22_2.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_22_3.ogg b/sound/arc9/casings/casing_22_3.ogg new file mode 100644 index 00000000..23ec947b Binary files /dev/null and b/sound/arc9/casings/casing_22_3.ogg differ diff --git a/sound/arc9/casings/casing_22_3.wav b/sound/arc9/casings/casing_22_3.wav deleted file mode 100644 index d466246f..00000000 Binary files a/sound/arc9/casings/casing_22_3.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_22_4.ogg b/sound/arc9/casings/casing_22_4.ogg new file mode 100644 index 00000000..2bbfd472 Binary files /dev/null and b/sound/arc9/casings/casing_22_4.ogg differ diff --git a/sound/arc9/casings/casing_22_4.wav b/sound/arc9/casings/casing_22_4.wav deleted file mode 100644 index d167e271..00000000 Binary files a/sound/arc9/casings/casing_22_4.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_308_1.ogg b/sound/arc9/casings/casing_308_1.ogg new file mode 100644 index 00000000..b4a6e142 Binary files /dev/null and b/sound/arc9/casings/casing_308_1.ogg differ diff --git a/sound/arc9/casings/casing_308_1.wav b/sound/arc9/casings/casing_308_1.wav deleted file mode 100644 index 3ed5e870..00000000 Binary files a/sound/arc9/casings/casing_308_1.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_308_2.ogg b/sound/arc9/casings/casing_308_2.ogg new file mode 100644 index 00000000..8fcc1384 Binary files /dev/null and b/sound/arc9/casings/casing_308_2.ogg differ diff --git a/sound/arc9/casings/casing_308_2.wav b/sound/arc9/casings/casing_308_2.wav deleted file mode 100644 index a1b3f3e5..00000000 Binary files a/sound/arc9/casings/casing_308_2.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_308_3.ogg b/sound/arc9/casings/casing_308_3.ogg new file mode 100644 index 00000000..179077fc Binary files /dev/null and b/sound/arc9/casings/casing_308_3.ogg differ diff --git a/sound/arc9/casings/casing_308_3.wav b/sound/arc9/casings/casing_308_3.wav deleted file mode 100644 index b17b5ee1..00000000 Binary files a/sound/arc9/casings/casing_308_3.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_308_4.ogg b/sound/arc9/casings/casing_308_4.ogg new file mode 100644 index 00000000..f907629c Binary files /dev/null and b/sound/arc9/casings/casing_308_4.ogg differ diff --git a/sound/arc9/casings/casing_308_4.wav b/sound/arc9/casings/casing_308_4.wav deleted file mode 100644 index a8f8186c..00000000 Binary files a/sound/arc9/casings/casing_308_4.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_556_1.ogg b/sound/arc9/casings/casing_556_1.ogg new file mode 100644 index 00000000..4ba29aa6 Binary files /dev/null and b/sound/arc9/casings/casing_556_1.ogg differ diff --git a/sound/arc9/casings/casing_556_1.wav b/sound/arc9/casings/casing_556_1.wav deleted file mode 100644 index f6ab2992..00000000 Binary files a/sound/arc9/casings/casing_556_1.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_556_2.ogg b/sound/arc9/casings/casing_556_2.ogg new file mode 100644 index 00000000..de4b0b21 Binary files /dev/null and b/sound/arc9/casings/casing_556_2.ogg differ diff --git a/sound/arc9/casings/casing_556_2.wav b/sound/arc9/casings/casing_556_2.wav deleted file mode 100644 index 5244bddd..00000000 Binary files a/sound/arc9/casings/casing_556_2.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_556_3.ogg b/sound/arc9/casings/casing_556_3.ogg new file mode 100644 index 00000000..d228f327 Binary files /dev/null and b/sound/arc9/casings/casing_556_3.ogg differ diff --git a/sound/arc9/casings/casing_556_3.wav b/sound/arc9/casings/casing_556_3.wav deleted file mode 100644 index 86c391d9..00000000 Binary files a/sound/arc9/casings/casing_556_3.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_556_4.ogg b/sound/arc9/casings/casing_556_4.ogg new file mode 100644 index 00000000..1e63f516 Binary files /dev/null and b/sound/arc9/casings/casing_556_4.ogg differ diff --git a/sound/arc9/casings/casing_556_4.wav b/sound/arc9/casings/casing_556_4.wav deleted file mode 100644 index 43be7ccb..00000000 Binary files a/sound/arc9/casings/casing_556_4.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_9mm_1.ogg b/sound/arc9/casings/casing_9mm_1.ogg new file mode 100644 index 00000000..cac4d0db Binary files /dev/null and b/sound/arc9/casings/casing_9mm_1.ogg differ diff --git a/sound/arc9/casings/casing_9mm_1.wav b/sound/arc9/casings/casing_9mm_1.wav deleted file mode 100644 index 4f27bcf1..00000000 Binary files a/sound/arc9/casings/casing_9mm_1.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_9mm_2.ogg b/sound/arc9/casings/casing_9mm_2.ogg new file mode 100644 index 00000000..acc97cb2 Binary files /dev/null and b/sound/arc9/casings/casing_9mm_2.ogg differ diff --git a/sound/arc9/casings/casing_9mm_2.wav b/sound/arc9/casings/casing_9mm_2.wav deleted file mode 100644 index bfe252cc..00000000 Binary files a/sound/arc9/casings/casing_9mm_2.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_9mm_3.ogg b/sound/arc9/casings/casing_9mm_3.ogg new file mode 100644 index 00000000..0a7ef7ba Binary files /dev/null and b/sound/arc9/casings/casing_9mm_3.ogg differ diff --git a/sound/arc9/casings/casing_9mm_3.wav b/sound/arc9/casings/casing_9mm_3.wav deleted file mode 100644 index 396b68e7..00000000 Binary files a/sound/arc9/casings/casing_9mm_3.wav and /dev/null differ diff --git a/sound/arc9/casings/casing_9mm_4.ogg b/sound/arc9/casings/casing_9mm_4.ogg new file mode 100644 index 00000000..a536ab17 Binary files /dev/null and b/sound/arc9/casings/casing_9mm_4.ogg differ diff --git a/sound/arc9/casings/casing_9mm_4.wav b/sound/arc9/casings/casing_9mm_4.wav deleted file mode 100644 index de3dcb13..00000000 Binary files a/sound/arc9/casings/casing_9mm_4.wav and /dev/null differ diff --git a/sound/arc9/close.ogg b/sound/arc9/close.ogg new file mode 100644 index 00000000..c2435331 Binary files /dev/null and b/sound/arc9/close.ogg differ diff --git a/sound/arc9/close.wav b/sound/arc9/close.wav deleted file mode 100644 index b912b77a..00000000 Binary files a/sound/arc9/close.wav and /dev/null differ diff --git a/sound/arc9/dragatt.ogg b/sound/arc9/dragatt.ogg new file mode 100644 index 00000000..56a8fc84 Binary files /dev/null and b/sound/arc9/dragatt.ogg differ diff --git a/sound/arc9/dragatt.wav b/sound/arc9/dragatt.wav deleted file mode 100644 index ce924eb4..00000000 Binary files a/sound/arc9/dragatt.wav and /dev/null differ diff --git a/sound/arc9/dryfire.ogg b/sound/arc9/dryfire.ogg new file mode 100644 index 00000000..28c75e3d Binary files /dev/null and b/sound/arc9/dryfire.ogg differ diff --git a/sound/arc9/dryfire.wav b/sound/arc9/dryfire.wav deleted file mode 100644 index 3671b5a0..00000000 Binary files a/sound/arc9/dryfire.wav and /dev/null differ diff --git a/sound/arc9/extra.ogg b/sound/arc9/extra.ogg new file mode 100644 index 00000000..efc0b054 Binary files /dev/null and b/sound/arc9/extra.ogg differ diff --git a/sound/arc9/extra.wav b/sound/arc9/extra.wav deleted file mode 100644 index 03a7228e..00000000 Binary files a/sound/arc9/extra.wav and /dev/null differ diff --git a/sound/arc9/extra2.ogg b/sound/arc9/extra2.ogg new file mode 100644 index 00000000..d5ae2416 Binary files /dev/null and b/sound/arc9/extra2.ogg differ diff --git a/sound/arc9/extra2.wav b/sound/arc9/extra2.wav deleted file mode 100644 index e7619b69..00000000 Binary files a/sound/arc9/extra2.wav and /dev/null differ diff --git a/sound/arc9/firemode.ogg b/sound/arc9/firemode.ogg new file mode 100644 index 00000000..455f7948 Binary files /dev/null and b/sound/arc9/firemode.ogg differ diff --git a/sound/arc9/firemode.wav b/sound/arc9/firemode.wav deleted file mode 100644 index a311beab..00000000 Binary files a/sound/arc9/firemode.wav and /dev/null differ diff --git a/sound/arc9/hover.ogg b/sound/arc9/hover.ogg new file mode 100644 index 00000000..a2ec7bcb Binary files /dev/null and b/sound/arc9/hover.ogg differ diff --git a/sound/arc9/hover.wav b/sound/arc9/hover.wav deleted file mode 100644 index d7aaaea2..00000000 Binary files a/sound/arc9/hover.wav and /dev/null differ diff --git a/sound/arc9/install.ogg b/sound/arc9/install.ogg new file mode 100644 index 00000000..a98e240a Binary files /dev/null and b/sound/arc9/install.ogg differ diff --git a/sound/arc9/install.wav b/sound/arc9/install.wav deleted file mode 100644 index 7b035258..00000000 Binary files a/sound/arc9/install.wav and /dev/null differ diff --git a/sound/arc9/malfunction.ogg b/sound/arc9/malfunction.ogg new file mode 100644 index 00000000..e3d48710 Binary files /dev/null and b/sound/arc9/malfunction.ogg differ diff --git a/sound/arc9/malfunction.wav b/sound/arc9/malfunction.wav deleted file mode 100644 index 3d0c80a1..00000000 Binary files a/sound/arc9/malfunction.wav and /dev/null differ diff --git a/sound/arc9/melee_hitbody.ogg b/sound/arc9/melee_hitbody.ogg new file mode 100644 index 00000000..454982ee Binary files /dev/null and b/sound/arc9/melee_hitbody.ogg differ diff --git a/sound/arc9/melee_hitbody.wav b/sound/arc9/melee_hitbody.wav deleted file mode 100644 index d7587c67..00000000 Binary files a/sound/arc9/melee_hitbody.wav and /dev/null differ diff --git a/sound/arc9/melee_hitworld.ogg b/sound/arc9/melee_hitworld.ogg new file mode 100644 index 00000000..66586eb6 Binary files /dev/null and b/sound/arc9/melee_hitworld.ogg differ diff --git a/sound/arc9/melee_hitworld.wav b/sound/arc9/melee_hitworld.wav deleted file mode 100644 index fed08fcd..00000000 Binary files a/sound/arc9/melee_hitworld.wav and /dev/null differ diff --git a/sound/arc9/melee_lift.ogg b/sound/arc9/melee_lift.ogg new file mode 100644 index 00000000..be54b987 Binary files /dev/null and b/sound/arc9/melee_lift.ogg differ diff --git a/sound/arc9/melee_lift.wav b/sound/arc9/melee_lift.wav deleted file mode 100644 index 563ee225..00000000 Binary files a/sound/arc9/melee_lift.wav and /dev/null differ diff --git a/sound/arc9/melee_miss.ogg b/sound/arc9/melee_miss.ogg new file mode 100644 index 00000000..12e26718 Binary files /dev/null and b/sound/arc9/melee_miss.ogg differ diff --git a/sound/arc9/melee_miss.wav b/sound/arc9/melee_miss.wav deleted file mode 100644 index 1c5832ac..00000000 Binary files a/sound/arc9/melee_miss.wav and /dev/null differ diff --git a/sound/arc9/open.ogg b/sound/arc9/open.ogg new file mode 100644 index 00000000..8602f511 Binary files /dev/null and b/sound/arc9/open.ogg differ diff --git a/sound/arc9/open.wav b/sound/arc9/open.wav deleted file mode 100644 index 75910c82..00000000 Binary files a/sound/arc9/open.wav and /dev/null differ diff --git a/sound/arc9/ricochet01.ogg b/sound/arc9/ricochet01.ogg new file mode 100644 index 00000000..12cc90ec Binary files /dev/null and b/sound/arc9/ricochet01.ogg differ diff --git a/sound/arc9/ricochet01.wav b/sound/arc9/ricochet01.wav deleted file mode 100644 index 01f280ff..00000000 Binary files a/sound/arc9/ricochet01.wav and /dev/null differ diff --git a/sound/arc9/ricochet02.ogg b/sound/arc9/ricochet02.ogg new file mode 100644 index 00000000..07b8c930 Binary files /dev/null and b/sound/arc9/ricochet02.ogg differ diff --git a/sound/arc9/ricochet02.wav b/sound/arc9/ricochet02.wav deleted file mode 100644 index b0edea78..00000000 Binary files a/sound/arc9/ricochet02.wav and /dev/null differ diff --git a/sound/arc9/ricochet03.ogg b/sound/arc9/ricochet03.ogg new file mode 100644 index 00000000..07448c03 Binary files /dev/null and b/sound/arc9/ricochet03.ogg differ diff --git a/sound/arc9/ricochet03.wav b/sound/arc9/ricochet03.wav deleted file mode 100644 index 3d23d574..00000000 Binary files a/sound/arc9/ricochet03.wav and /dev/null differ diff --git a/sound/arc9/ricochet04.ogg b/sound/arc9/ricochet04.ogg new file mode 100644 index 00000000..8af6a328 Binary files /dev/null and b/sound/arc9/ricochet04.ogg differ diff --git a/sound/arc9/ricochet04.wav b/sound/arc9/ricochet04.wav deleted file mode 100644 index 74aa8f1d..00000000 Binary files a/sound/arc9/ricochet04.wav and /dev/null differ diff --git a/sound/arc9/ricochet05.ogg b/sound/arc9/ricochet05.ogg new file mode 100644 index 00000000..c7d35987 Binary files /dev/null and b/sound/arc9/ricochet05.ogg differ diff --git a/sound/arc9/ricochet05.wav b/sound/arc9/ricochet05.wav deleted file mode 100644 index 64ae82a7..00000000 Binary files a/sound/arc9/ricochet05.wav and /dev/null differ diff --git a/sound/arc9/supp_break.ogg b/sound/arc9/supp_break.ogg new file mode 100644 index 00000000..d584d24e Binary files /dev/null and b/sound/arc9/supp_break.ogg differ diff --git a/sound/arc9/supp_break.wav b/sound/arc9/supp_break.wav deleted file mode 100644 index f6e27176..00000000 Binary files a/sound/arc9/supp_break.wav and /dev/null differ diff --git a/sound/arc9/ubgl_exit.ogg b/sound/arc9/ubgl_exit.ogg new file mode 100644 index 00000000..831e6343 Binary files /dev/null and b/sound/arc9/ubgl_exit.ogg differ diff --git a/sound/arc9/ubgl_exit.wav b/sound/arc9/ubgl_exit.wav deleted file mode 100644 index 5753946f..00000000 Binary files a/sound/arc9/ubgl_exit.wav and /dev/null differ diff --git a/sound/arc9/ubgl_select.ogg b/sound/arc9/ubgl_select.ogg new file mode 100644 index 00000000..4b37ef4f Binary files /dev/null and b/sound/arc9/ubgl_select.ogg differ diff --git a/sound/arc9/ubgl_select.wav b/sound/arc9/ubgl_select.wav deleted file mode 100644 index 3f045e4d..00000000 Binary files a/sound/arc9/ubgl_select.wav and /dev/null differ diff --git a/sound/arc9/uninstall.ogg b/sound/arc9/uninstall.ogg new file mode 100644 index 00000000..0285f1c1 Binary files /dev/null and b/sound/arc9/uninstall.ogg differ diff --git a/sound/arc9/uninstall.wav b/sound/arc9/uninstall.wav deleted file mode 100644 index 6d907739..00000000 Binary files a/sound/arc9/uninstall.wav and /dev/null differ diff --git a/sound/arc9/useatt.ogg b/sound/arc9/useatt.ogg new file mode 100644 index 00000000..de6d2f6b Binary files /dev/null and b/sound/arc9/useatt.ogg differ diff --git a/sound/arc9/useatt.wav b/sound/arc9/useatt.wav deleted file mode 100644 index 92017e56..00000000 Binary files a/sound/arc9/useatt.wav and /dev/null differ