diff --git a/source/server/ai/zombie_core.qc b/source/server/ai/zombie_core.qc index 819dff7..4981ca1 100644 --- a/source/server/ai/zombie_core.qc +++ b/source/server/ai/zombie_core.qc @@ -465,12 +465,12 @@ void() zombie_footstep if(self.laststep == 1) { self.laststep = 0; - sound(self, 5, "sounds/zombie/s0.wav", 1, ATTN_NORM); + sound(self, 5, "sounds/zombie/s0.wav", 0.6, ATTN_NORM); } else { self.laststep = 1; - sound(self, 5, "sounds/zombie/s1.wav", 1, ATTN_NORM); + sound(self, 5, "sounds/zombie/s1.wav", 0.6, ATTN_NORM); } } diff --git a/source/server/player.qc b/source/server/player.qc index f9e3fad..51fbef2 100644 --- a/source/server/player.qc +++ b/source/server/player.qc @@ -171,7 +171,6 @@ void() PlayerJump = } self.flags = self.flags - (self.flags & FL_JUMPRELEASED); - sound(self, CHAN_VOICE, "sounds/player/jump.wav", 1, 1.75); if (self.button2) self.button2 = 0; @@ -361,8 +360,7 @@ void() PlayerPostThink = //landsound if((self.oldvelocity_z < -10) && (self.flags & FL_ONGROUND)) { - if(self.oldvelocity_z < -270) - sound(self, CHAN_BODY, "sounds/player/land.wav", 1, 1.75); + sound(self, CHAN_BODY, "sounds/player/land.wav", 0.6, 1.75); self.lastsound_time = time - 0.15; } @@ -379,15 +377,15 @@ void() PlayerPostThink = local float ran = random(); if(ran > 0.8) - sound(self, CHAN_BODY, "sounds/player/footstep1.wav", 0.8, 2.5); + sound(self, CHAN_BODY, "sounds/player/footstep1.wav", 0.6, 2.5); else if(ran > 0.6) - sound(self, CHAN_BODY, "sounds/player/footstep2.wav", 0.8, 2.5); + sound(self, CHAN_BODY, "sounds/player/footstep2.wav", 0.6, 2.5); else if(ran > 0.4) - sound(self, CHAN_BODY, "sounds/player/footstep3.wav", 0.8, 2.5); + sound(self, CHAN_BODY, "sounds/player/footstep3.wav", 0.6, 2.5); else if(ran > 0.2) - sound(self, CHAN_BODY, "sounds/player/footstep4.wav", 0.8, 2.5); + sound(self, CHAN_BODY, "sounds/player/footstep4.wav", 0.6, 2.5); else - sound(self, CHAN_BODY, "sounds/player/footstep5.wav", 0.8, 2.5); + sound(self, CHAN_BODY, "sounds/player/footstep5.wav", 0.6, 2.5); self.lastsound_time = time; } } diff --git a/source/server/weapons/weapon_core.qc b/source/server/weapons/weapon_core.qc index 97be4ab..a410dd3 100644 --- a/source/server/weapons/weapon_core.qc +++ b/source/server/weapons/weapon_core.qc @@ -1590,6 +1590,8 @@ void() dolphin_dive = //naievil self.dive = 1; W_SprintStop(); + sound(self, CHAN_VOICE, "sounds/player/jump.wav", 1, 1); + self.oldz = self.origin_z; self.new_ofs_z = self.view_ofs_z - 42; self.stance = 0;