Thread Tools Display Modes
07-27-15, 10:07 AM   #1
Tntdruid
Premium Member
 
Tntdruid's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 55
Replacement for: HotGrinder

Hello,

Any other addons there does that?


Link: http://wow.curseforge.com/addons/hotgrinder/


Works fine on none WoD herbs, just dont like the WoD ones
  Reply With Quote
07-27-15, 10:58 AM   #2
karmamuscle
A Cobalt Mageweaver
 
karmamuscle's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 205
Not exactly what you're looking for, but I always use this macro and just change the name as needed.
Code:
/cast Milling
/use [herb name]
Then it's just button mashing.
__________________
55 89 144 233 377 610 987 1597 2584 4181 6765
  Reply With Quote
07-27-15, 03:01 PM   #3
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
My mouse (Logitech G502) has a freescrolling mousewheel (toggleable), and before we got the mass milling options, I used this:

Lua Code:
  1. local Handler = CreateFrame('Frame')
  2. local MillButton = CreateFrame('Button', 'MillButton', nil, 'SecureActionButtonTemplate')
  3. MillButton:SetAttribute('type', 'macro')
  4. MillButton:SetAttribute('macrotext', [[
  5. /cast Milling
  6. /use Talador Orchid
  7. /use Gorgrond Flytrap
  8. /use Frostweed
  9. /use Fireweed
  10. /use Nagrand Arrowbloom
  11. /use Starflower
  12. ]])
  13.  
  14. local enabled = false
  15. SLASH_ScrollMilling1 = '/mill'
  16. SlashCmdList.ScrollMilling = function()
  17.     if(enabled) then
  18.         ClearOverrideBindings(Handler)
  19.     else
  20.         SetOverrideBindingClick(Handler, false, 'MOUSEWHEELDOWN', MillButton:GetName())
  21.     end
  22.  
  23.     enabled = not enabled
  24.     print('|cff33ff99ScrollMilling|r is', enabled and '|cff00ff00enabled|r' or '|cffff0000disabled|r')
  25. end

After activating it with /mill, you'd scroll down to mill very very quickly, with decent connection to the server it'd mill through the looting window, and with the freescrolling mousewheel you'd only have to scroll every 5 mills or so.
  Reply With Quote
07-28-15, 04:15 PM   #4
sezz
A Chromatic Dragonspawn
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 158
Never noticed that WoD herbs don't contain the "Millable" text in their tooltips (that's what breaks the addon), you could add Item ID checks.
  Reply With Quote
07-29-15, 01:34 AM   #5
Tntdruid
Premium Member
 
Tntdruid's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 55
Originally Posted by sezz View Post
Never noticed that WoD herbs don't contain the "Millable" text in their tooltips (that's what breaks the addon), you could add Item ID checks.
No idea how to do that, i'm still an lua noob
  Reply With Quote
07-31-15, 04:58 AM   #6
sezz
A Chromatic Dragonspawn
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 158
Originally Posted by Tntdruid View Post
No idea how to do that, i'm still an lua noob
Try this: http://cl.ly/c79r
  Reply With Quote
07-31-15, 06:58 AM   #7
Tntdruid
Premium Member
 
Tntdruid's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 55
Works, thanks so much
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Replacement for: HotGrinder

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off