This is not new at all, has been around long since before bc.
Working as of patch 1.08.
Pics: (note the date, this was long after the first time I did it) http://eggsampler.com/wow/images/felinvasion/
Accept the quest+use items:
Code:
/use Felhound Tracker Kit
/use Fel Orb
/run if GetGossipAvailableQuests()then SelectGossipAvailableQuest(1)AcceptQuest()else CloseGossip()end SelectQuestLogEntry(2)SetAbandonQuest()AbandonQuest()
Delete the books:
Code:
/run for i=0,5 do for j=1,GetContainerNumSlots(i)do if(GetContainerItemLink(i,j)or''):find("Fel Tracker Owner's Manual")then PickupContainerItem(i,j)DeleteCursorItem()end end end