WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   AddOn Search/Requests (https://www.wowinterface.com/forums/forumdisplay.php?f=6)
-   -   Replacement for: HotGrinder (https://www.wowinterface.com/forums/showthread.php?t=52547)

Tntdruid 07-27-15 10:07 AM

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 :)

karmamuscle 07-27-15 10:58 AM

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.

p3lim 07-27-15 03:01 PM

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.

sezz 07-28-15 04:15 PM

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.

Tntdruid 07-29-15 01:34 AM

Quote:

Originally Posted by sezz (Post 310013)
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 :)

sezz 07-31-15 04:58 AM

Quote:

Originally Posted by Tntdruid (Post 310015)
No idea how to do that, i'm still an lua noob :)

Try this: http://cl.ly/c79r

Tntdruid 07-31-15 06:58 AM

Works, thanks so much :)


All times are GMT -6. The time now is 04:14 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI