//::///////////////////////////////////////////////
//:: FileName at_254
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/7/2005 3:59:47 PM
//:://////////////////////////////////////////////
void main()
{

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