//:://///////////////////////////////////////////// //:: FileName for_kardtake2 //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 12/23/2003 8:32:48 PM //::////////////////////////////////////////////// void main() { // Remove some gold from the player TakeGoldFromCreature(5000, GetPCSpeaker(), TRUE); // Remove items from the player's inventory object oItemToTake; oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "AncientScythe"); if(GetIsObjectValid(oItemToTake) != 0) DestroyObject(oItemToTake); }