What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Any addons to Auto Mill herbs?

projektt

Active Member
Joined
Sep 21, 2010
Messages
1,424
Is there any possible way to auto mill herbs? Milling 5000 herbs takes way to long.
 
There's a plugin called "Allrounder" for HB2

or GB1's "crafting" button once logged in
 
Last edited:
Don't use GB1 anymore, but there used to be a crafting button in it. You put your macro for mill/prospect on bar 2 (can't remember button #), and start it, come back in 20 mins and done. I used it for prospecting, thought I saw macro's for milling as well.
 
simple search on forums yielded...


EDIT: looking for my old script to upload.

Found it. download and install autoit, open up the scite editor and paste

Code:
$win_title = "World of Warcraft" 
WinActivate($win_title, "") 
WinSetOnTop($win_title, "", 0) 
Sleep(1000) 

HotKeySet("{F1}", "EndScript") 


$i = 0 
$win_title = "World of Warcraft"
While $i <= 10 
ControlSend ( "World of Warcraft", "", "", "=")
Sleep(2300)
WEnd

Func EndScript() 
$exit = MsgBox(4, "Ender", "Exit the Bot?") 
If $exit = 6 Then 
Exit 
EndIf 
EndFunc

place your mill macro on "=" on your actionbar
 
Last edited:
Back
Top