Trying to change damage modifier in Garry's Mod with lua, because sk_npc_head doesn't work. Here's the code I'm trying to use in Hammer Editor:
function FScaleNPCDamage( npc, hitgroup, dmginfo ) if ( hitgroup == HITGROUP_HEAD ) then dmginfo:ScaleDamage( 60 ) end end