When I made bullet casings into Bundles and have collision physics, I discovered that they would destroy most aircraft from the collision with them. So this means I can kill a littlebird just by sitting next to it and letting my ejected shell casings hit it. This was unacceptable and I had to find a fix. So I searched the command database and finally found the answer! This also solves the problem with my guided stinger killing tanks on direct collision in one shot. So I fixed two things with one piece of code!
Here it is:
Code: Select all
ObjectTemplate.damageMod 1
So for example. You made a guided Missile like a SA-3 missile or hellfire missile. if you want to change how much damage it does to a vehicle from crashing into it, do this:
Code: Select all
ObjectTemplate.active SA-3GuidedRocket
ObjectTemplate.damageMod 2

As it turns out, the guided SA-3 missile already has this setting...hmm...Why the hell did I not notice that?

It was set to 0.1
Also note that for all objects, when this command is left unspecified (aka not used), the default value is 1.

This command isn't used in the vanilla files. But I did spot it in the DesertCombat files. (the SA-3 Guided missile as mentioned above)
It looks like EA planned to use this on the WesserFall, but for some reason never actually decided to use the command. Thus it was left to DC coders to discover it and so happilly never told anyone about it. Cause I didn't know about this command untill today.
