//::///////////////////////////////////////////////
//:: FileName at_261
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/8/2005 3:14:47 PM
//:://////////////////////////////////////////////
void main()
{

	// Remove items from the player's inventory
	object oItemToTake;
	oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "ScrollofMindHealing");
	if(GetIsObjectValid(oItemToTake) != 0)
		DestroyObject(oItemToTake);
}