//:://///////////////////////////////////////////// //:: FileName takeancientmap //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 10/1/2002 1:11:04 AM //::////////////////////////////////////////////// void main() { // Remove items from the player's inventory object oItemToTake; oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "AncientScroll"); if(GetIsObjectValid(oItemToTake) != 0) ActionPauseConversation(); ActionTakeItem(oItemToTake, GetPCSpeaker()); ActionResumeConversation(); }