//Script Name: gc_add_ench_bon ////////////////////////////////////////// //Created By: Genisys (Guile) //Created On: 8/30/08 ///////////////////////////////////////// /* This script goes in the ActionTaken Event of a Conversation line, it will add an item property the user selected to the item, if it's actually in the slot they chose. */ //////////////////////////////////////// #include "x2_inc_itemprop" //Main Script void main() { object oPC = GetPCSpeaker(); int nSlot = GetLocalInt(oPC, "CRAFT_SLOT"); object oCraft = GetItemInSlot(nSlot ,oPC); //Let's make sure the items is actually on them! 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)