//Script Name: gc_add_dmg_bonus ////////////////////////////////////////// //Created By: Genisys (Guile) //Created On: 8/30/08 ///////////////////////////////////////// /* This script goes in the ActionTaken Event of a Conversation line, it will Add AC to the item we are looking at which an item the PC possessoses has in it.. */ //////////////////////////////////////// #include "x2_inc_itemprop" //Main Script void main() { object oPC = GetPCSpeaker(); int nSlot = GetLocalInt(oPC, "CRAFT_SLOT"); object oCraft = GetItemInSlot(nSlot ,oPC); //Find out how much we are suppose to put on the item.. int nBonus = GetLocalInt(oPC, "CRAFT_DMG_BONUS"); int nType = GetLocalInt(oPC, "CRAFT_DAMAGE_TYPE"); int nIPType = GetLocalInt(oPC, "DI_TYPE"); if (!GetIsObjectValid(oCraft)) { FloatingTextStringOnCreature("Your not wearing the item!!", oPC, FALSE); //SetLocalInt(oPC, "CRAFT_FAILED", 1); return; } int nCost = GetLocalInt(oPC, "CRAFT_PAYMENT"); effect eEffect; if(GetGold(oPC)