if u can assure me effects will apply to placeables, then it would be worth the time trying it. i havent had the time to test it out yet. Definitely wouldnt mind seeing your code.
Combining effects and that cool HP system u can make some godly monsters now '>
I would post it, but this silly forum will not let me copy paste from the toolset or from notepad.
Here are a few lines:
oTarget = GetObjectByTag("your_placeable");
SetPlotFlag(oTarget, FALSE);
eEffect = SupernaturalEffect(EffectDamageResistance(DAMAGE_TYPE_SLASHING, 15));
ApplyEffectToObject(DURATION_TYPE_PERMANENT, effect, oTarget);
This will work on placeables, for all damage types. EffectDamageImmunity will work as well.
Not all effects will work on placeables, but damage resistances and damage immunities do work.
Immunity to death does not work however, so the following spells would have to be modified to not work on placeables: wail of the banshee, destruction, and harm. Those are the only spells which will destroy a placeable.