View Single Post
Sades160
Junior Member
Join Date: Feb 2023
Old 03-09-2023 , 19:59   Re: [L4D] boomer deaf ears
Reply With Quote #4

Quote:
Originally Posted by Bacardi View Post
It actually can make.
Sending fake client command (or client command)
Code:
dsp_player 134 // 0 reset back normal

Here is three deaf effect, in different range.
PHP Code:
        int effect;

        if( 
flDistance 100 )
        {
            
effect 134;
        }
        else if( 
flDistance 500 )
        {
            
effect 135;
        }
        else if( 
flDistance 1000 )
        {
            
effect 136;
        }
        else 
        {
            
// too far for us to get an effect
            
return;
        } 
There is various sound effect in file
...scripts/dsp_presets.txt
btw do you know how to make a boomer vomit spawn a horde by itself in l4d1?
Sades160 is offline