Title says it all really,
Guild achievement where you have to do so many quests, i found a way you can just keep handing in a quest over and over again, every saterday in orgrimmar there is a fishing tournament goblin, ( just outside the AH ) you can keep handing in the quest he gives and it goes towards your achi, i suppose you could get ten of you and keep doing this, just thought i would share it
(posted in exploits as i guess this is not intended to happen)
Macro's to speed up the process ( thanks to The Maffyx )
/run SelectGossipAvailableQuest(1);CompleteQuest();GetQuestReward() ( accept the Q faster )
And This next one delete all the fliers in your bags that he gives out. So fill up your bags and hit the macro and it will clear them out.
/run for bag = 0,4,1 do for slot = 1, 32, 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Fishing Tournament!") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end