[T2 Request] Weaponhit sound for base

Monger

Veteran X
I really like the weapon hit sound that "Classic" gives you when you damage an enemy player. Is there any way to apply that same sound and effect to "Base"?
 
CoJack said:
i personally can't stand it. htf u get rid of it?

open your clientprefs.cs

Have a look for:
Code:
$pref::Classic::playerHitSound = 1;
$pref::Classic::playerHitWav = "~wfx/weapons/cg_hard4.wav";
$pref::Classic::vehicleHitSound = 1;
$pref::Classic::vehicleHitWav = "~wfx/weapons/mine_switch.wav";
change it to
Code:
$pref::Classic::playerHitSound = 0;
$pref::Classic::playerHitWav = "~wfx/weapons/cg_hard4.wav";
$pref::Classic::vehicleHitSound = 1;
$pref::Classic::vehicleHitWav = "~wfx/weapons/mine_switch.wav";
You can do it for the vehicle stuff too if you really want.
 
Back
Top