//:://///////////////////////////////////////////// //:: FileName at_210 //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 9/2/2005 12:23:07 AM //::////////////////////////////////////////////// void main() { // Remove some gold from the player TakeGoldFromCreature(5000, GetPCSpeaker(), TRUE); // Remove items from the player's inventory object oItemToTake; oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "MithrilOre"); if(GetIsObjectValid(oItemToTake) != 0) DestroyObject(oItemToTake); }