//::///////////////////////////////////////////////
//:: FileName at_039
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/15/2005 6:06:21 PM
//:://////////////////////////////////////////////
void main()
{

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