Page 1 of 1

Milling Macro for Shendo

Posted: 26 Feb 2015, 15:40
by Houtoku
Milling macro to burn through herbs, only caveat is that your stacks have to be in increments of 5 or it won't progress to the next herb type.

Code: Select all

/cast Milling
/use Gorgrond Flytrap
/use Talador Orchid
/use Nagrand Arrowbloom
/use Starflower
/use Fireweed
/use Frostweed

Re: Milling Macro for Shendo

Posted: 26 Feb 2015, 20:48
by Thalendir
A bit more advanced version. Create 2 new macros with the following code.

Run this before the start of a milling session:

Code: Select all

/run function FnH() for i=0,4 do for j=1,GetContainerNumSlots(i) do local t={GetItemInfo(GetContainerItemLink(i,j) or 0)} if t[7]=="Herb" and select(2,GetContainerItemInfo(i,j))>=5 then return i.." "..j,t[1] end end end end


Then use this as your milling button:

Code: Select all

/run local f,l,n=AuM or CreateFrame("Button","AuM",nil,"SecureActionButtonTemplate") f:SetAttribute("type","macro") l,n=FnH() if l then f:SetAttribute("macrotext","/cast Milling\n/use "..l) SetMacroItem("Macro Name",n) end
/click AuM


(change "Macro Name" to the name of the macro)

It will skip over stacks less than 5, it will also mill herbs from past expansions and it will change the macro's icon to the current herb you're milling and how many of that herb you have left.

I found this gem on the official wow forums about a year ago and I've never looked back.

Re: Milling Macro for Shendo

Posted: 26 Feb 2015, 21:15
by Conjuden
You're doing god's work thalendir.

Re: Milling Macro for Shendo

Posted: 27 Feb 2015, 08:54
by Avahnel
I like the Panda addon...it has a mass mill button. It also makes it easy to make glyphs and chants.