Tried multiple ways I’ve found around online and nothing seems to work. I’m questioning whether it’s possible nowadays.
I want to have a macro that lets me essentially hit Curse of Tongues on my warlock while in combat (and with a caster), but that lets me do Fishing with the same button click when I find some water I want to dip in. Would just be nice to get rid of both the “Your cast didn’t land in fishable water” and “You have no target.” error messages.
Just trying to consolidate what buttons I can, so any help would be appreciated.
For some reason around patch 8.2.0 when calling UIErrorsFrame:Clear() in the same macro indeed doesn’t clear it. You can use a timer to workaround it, but then it would still appear for a split second
I’d advise using an addon now to filter only certain error messages if you don’t want to hide the whole thing https://www.curseforge.com/wow/addons/error-monster
I tried the C_Timer… workaround and found that I liked it less because on my pc the text still showed up but would disappear very quickly creating an almost “flash” effect that I found more distracting. Other people experienced no such problems though. YMMV
Thanks for the link. I ended up just getting Error Monster. It got rid of the error messages but now when I click my macro it still does the “foom” error sound effect. Anything I can do to fix that by chance?
the /console Sound_EnableErrorSpeech 0 turns off error sounds before casting/using etc.
the /run C_Timer.After(0, function() SetCVar(“Sound_EnableErrorSpeech”, 1) UIErrorsFrame:Clear() end) turns the sound back (and clears the error frame but that’s optional).
I’m aware of that, but many fishing poles provide +fishing skill and one even enables water walking, reduced aggro, very fast underwater movement. Some people still use them
#showtooltip Curse of Tongues
/console Sound_EnableErrorSpeech 0
/cast Fishing
/cast Curse of Tongues
/run C_Timer.After(0, function() SetCVar("Sound_EnableErrorSpeech", 1) end)
Still getting the “Fwoom” sadly, hehe.
That is true. I’m playing an exp locked 45 warlock atm though, don’t really have access to the good ones just yet. Right now I’m just trying to find a convenient way to consolidate some keybinds and make fishing an easy single click when I fly by a pool or something. Even at 45 my warlock abilities are filling my bars to the point where they’re tough to handle.