Macro for bandage ?

Forum Avatar
#0 - May 7, 2007, 12:23 p.m.
Blizzard Post
Hi. I wounderd if anyone Knows about a macro that makes you create Heavy Netherweave Bandage so i dont have to go in on the menu all the time. I find it simper with one marcro to create and the icon to use : ) Apriciate if ppl could post some ideas.
#7 - May 7, 2007, 3 p.m.
Blizzard Post
Q u o t e:
Crafting isnt protected so you can do it with scripting;

/cast First Aid
/run local i=1 while GetTradeSkillInfo(i) do if GetTradeSkillInfo(i) =="{Name of thing you want to craft}" then DoTradeSkill(i,{quanity you want to craft}) break end i=i+1 end

replace {Name of thing you want to craft} and {quanity you want to craft} with whatever.

Edit: you can add "/run CloseTradeSkill()" to the end to close the window again, but if you want to craft more than 1, closing the window immediately will prevent subsequent crafts working

Nice one :)