View Single Post
Beatles
Senior Member
Join Date: Feb 2014
Old 07-08-2019 , 01:42   Re: [L4D&L4D2] Remove Survivor Glow
Reply With Quote #7

Quote:
Originally Posted by Lux View Post
I think this is what that gamemode toggles in l4d2 to disable glows,
PHP Code:
m_bSurvivorGlowEnabled (offset 16384) (type integer) (bits 1) (Unsigned
i'v not tested but just a guess from a name.


For l4d1 only thing i can think of is using sendproxy perplayer entprop version i don't remember which github fork it is on, to set everyone to see everyone else on different teams or
If infected are going to be disabled for CS gamemode
PHP Code:
SetEntPropFloat(clientProp_Send"m_itTimer"9999999.01); 
doing that everytime they respawn, altho this does blur the screen abit out of ideas for l4d1 sorry.
I have used the "m_bSurvivorGlowEnabled" but it has not worked for me, maybe I'm doing it wrong, but I just did a test.

PHP Code:
public void OnPluginStart() 

    
RegAdminCmd("sm_glow"ToggleSurvivorGlowADMFLAG_ROOT"Toggles the survivor glow"); 


public 
Action ToggleSurvivorGlow(int clientint args

    for (new 
1<= MAXPLAYERSi++)
    {
        
SetEntProp(iProp_Send"m_bSurvivorGlowEnabled"0);
        
SetEntProp(iProp_Send"m_glowColorOverride"0);
    }

So I need more help, hopefully someone can help me with this removal of the glow.
Beatles is offline