{\r
float n;\r
float tauntrand;\r
- float vol, vol_apply;\r
+ float vol_scale, vol_prey, vol_apply;\r
\r
if(sample == "")\r
return;\r
sample = strcat(argv(0), ".wav"); // randomization\r
\r
// modified volume, used for attenuated (non-radio) voices\r
- vol = VOL_BASEVOICE;\r
- if(self.stat_eaten && cvar("g_vore_soundocclusion")) // reduce sound volume for prey, to simulate stomach culling\r
- vol *= cvar("g_vore_soundocclusion");\r
+ vol_scale = vol_prey = 1;\r
if(cvar("g_healthsize") && cvar("g_healthsize_soundfactor")) // amplify or reduce sound volume based on the size of the player\r
- vol *= pow(self.scale, cvar("g_healthsize_soundfactor"));\r
+ vol_scale *= pow(self.scale, cvar("g_healthsize_soundfactor"));\r
+ if(self.stat_eaten && cvar("g_vore_soundocclusion")) // reduce sound volume for prey, to simulate stomach culling\r
+ vol_prey *= cvar("g_vore_soundocclusion");\r
vol = bound(0, vol, 1);\r
\r
switch(voicetype)\r
{\r
if(msg_entity.cvar_cl_voice_directional == 1)\r
{\r
- vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? vol : VOL_BASEVOICE;\r
+ vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? VOL_BASEVOICE * vol_scale * vol_prey : VOL_BASEVOICE * vol_scale;\r
soundto(MSG_ONE, self, chan, sample, vol_apply, ATTN_MIN);\r
}\r
else\r
{\r
if(msg_entity.cvar_cl_voice_directional == 1)\r
{\r
- vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? vol : VOL_BASEVOICE;\r
+ vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? VOL_BASEVOICE * vol_scale * vol_prey : VOL_BASEVOICE * vol_scale;\r
soundto(MSG_ONE, self, chan, sample, vol_apply, ATTN_MIN);\r
}\r
else\r
{\r
if(msg_entity.cvar_cl_voice_directional == 1)\r
{\r
- vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? vol : VOL_BASEVOICE;\r
+ vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? VOL_BASEVOICE * vol_scale * vol_prey : VOL_BASEVOICE * vol_scale;\r
soundto(MSG_ONE, self, chan, sample, vol_apply, ATTN_MIN);\r
}\r
else\r
{\r
if (msg_entity.cvar_cl_voice_directional >= 1)\r
{\r
- vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? vol : VOL_BASEVOICE;\r
+ vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? VOL_BASEVOICE * vol_scale * vol_prey : VOL_BASEVOICE * vol_scale;\r
soundto(MSG_ONE, self, chan, sample, vol_apply, bound(ATTN_MIN, msg_entity.cvar_cl_voice_directional_taunt_attenuation, ATTN_MAX));\r
}\r
else\r
{\r
if (msg_entity.cvar_cl_voice_directional >= 1)\r
{\r
- vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? vol : VOL_BASEVOICE;\r
+ vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? VOL_BASEVOICE * vol_scale * vol_prey : VOL_BASEVOICE * vol_scale;\r
soundto(MSG_ONE, self, chan, sample, vol_apply, bound(ATTN_MIN, msg_entity.cvar_cl_voice_directional_taunt_attenuation, ATTN_MAX));\r
}\r
else\r
case VOICETYPE_PLAYERSOUND:\r
FOR_EACH_REALCLIENT(msg_entity)\r
{\r
- vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? vol : VOL_BASEVOICE;\r
+ vol_apply = (self.predator != msg_entity.predator && self != msg_entity) ? VOL_BASEVOICE * vol_scale * vol_prey : VOL_BASEVOICE * vol_scale;\r
soundto(MSG_ONE, self, chan, sample, vol_apply, ATTN_NORM);\r
}\r
break;\r