// *** Thunderstrike ability grainting to worn melee weapon, by Tarashon *** #include "prc_x2_itemprop" void main() { object oPC; oPC = GetItemActivator(); object oItem; oItem = GetItemPossessedBy(oPC, "stoneofacid2"); if (GetIsObjectValid(oItem)) DestroyObject(oItem); object oTarget; oTarget = GetItemActivator(); //Visual effects can't be applied to waypoints, so if it is a WP //the VFX will be applied to the WP's location instead int nInt; nInt = GetObjectType(oTarget); if (nInt != OBJECT_TYPE_WAYPOINT) ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION), oTarget); else ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION), GetLocation(oTarget)); oTarget = oPC; oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oTarget); itemproperty ipAdd; // *** ipAdd = ItemPropertyDamageBonus(IP_CONST_DAMAGETYPE_ACID, IP_CONST_DAMAGEBONUS_2d8); IPSafeAddItemProperty(oItem, ipAdd); // *** SetPlotFlag(oItem, TRUE); }