Left 4 Dead 2

Left 4 Dead 2

[VScript] Yet Another CS Sniper Buff
Showing 1-8 of 8 entries
Update: 14 Feb @ 8:10am

-no longer stumbles specials from molotov throws

Update: 14 Feb @ 6:44am

-no longer applies effect when on mounted gun (thank you 4512369781)
-no longer stumbles survivors

Update: 13 Feb @ 12:46pm

no longer stumbles chargers or tanks

from:

if(victim.IsPlayer() && victim.GetZombieType() != 8 || victim.IsPlayer() && victim.GetZombieType() != 6)
{
victim.Stagger( origin )
}

to:

if(victim.IsPlayer() && victim.GetZombieType() == 8 || victim.IsPlayer() && victim.GetZombieType() == 6)
{
return
} else {
victim.Stagger( origin )
}

Update: 12 Feb @ 11:50am

i am bad at math

Update: 12 Feb @ 11:48am

stumble no longer does 1 damage

Update: 12 Feb @ 10:07am

True instakilling of commons
(went from dealing A LOT of damage to setting their health to 0)

Update: 12 Feb @ 9:57am

fixed game crashing when shooting a common

Update: 12 Feb @ 7:15am