HeadShotsOnly
Posted: Thu Jul 15, 2010 3:38 pm
O.k. I am making a mod and I would like to make one team have head shots only. I found this code under damnage systems/colt
and I have been told the defGroups refer to the body sections (40=head, 41=body, 42=legs) and I would like to verify this and also what should I change to make the weapon only damage the head and not effect the rest of the body. thanks
Code: Select all
rem * *************************************************
rem * Infantry target
rem * *************************************************
MaterialManager.attGroup 214
MaterialManager.defGroup 40
MaterialManager.damageMod 5
MaterialManager.setEffectTemplate e_blood01
MaterialManager.attGroup 214
MaterialManager.defGroup 41
MaterialManager.damageMod 0
MaterialManager.setEffectTemplate e_blood01
MaterialManager.attGroup 214
MaterialManager.defGroup 42
MaterialManager.damageMod 0
MaterialManager.setEffectTemplate e_blood01