Download
(24Kb)
Download
Updated: 07-29-18 04:42 AM
Updated:07-29-18 04:42 AM
Created:04-22-13 06:29 PM
Downloads:9,720
Favorites:72
MD5:

GoFish  Popular! (More than 5000 hits)

Version: 8.0.0.0
by: Phanx, Akkorian

I am no longer developing or maintaining World of Warcraft addons. I haven't played in years, and don't have the time or interest to continue working on addons for a game I don't play anymore. If you are an addon author interested in continuing one of my addons, please see https://phanx.net/addons/. If you are an addon user, sorry, but there won't be any more fixes or updates from me.
GoFish lets you double-right-click to fish, and enhances sound effects while fishing.
Fishing mode is automatically enabled when you mouse over a fishing pool, while you have a fishing pole equipped, or can be toggled using a keybind or slash command. Fishing mode is disabled if you enter combat or unequip a fishing pole, or after 10 seconds of no fishing activity if it was enabled via mouseover.

While in fishing mode, double-right-clicking anywhere on the game world casts Fishing, auto-loot is enabled, auto-interact is disabled, the sound effect volume is raised, and other volumes are lowered. When exiting fishing mode, your normal settings are restored.

To toggle fishing mode manually, type "/gofish" or bind a key. To change options, type "/gofish options" or browse to the GoFish panel in the standard Interface Options window.
Feedback
Post a comment or open a ticket on GitHub. If you are reporting a bug, please include detailed instructions I can follow to reproduce the bug myself, whether or not it still happens when all other addons are disabled, and the exact text of the first related error message (if any) from Bugger/BugSack/Swatter.

Please note that GoFish does not support lures or other skill-enhancing items, and requests for such features will not be considered at this time.
Language Support
Compatible with all locales. The UI is translated into English, Deutsch, Español, 한국어, and 繁體中文.

To add or update translations for the UI in any language, enter them on CurseForge.

To add or update fish pool names for any language, please post a comment or send me a PM.
Credits
GoFish was inspired by Ammo's FishermansFriend. The click-casting code borrows heavily from Torhal's Archy. The translations for fish pool names were mostly copied from Kagaro's GatherMate2 and Wowhead.

Version 8.0.0.0 (2018 Jul 29)
  • Updated for WoW 8.0

Version 7.3.5.0 (2018 May 6)
  • Added compatibility with WoW 8.0 beta
  • Added Portuguese translations
  • Updated Simplified Chinese translations
  • Updated Traditional Chinese translations
Post A Reply Comment Options
Unread 10-16-14, 07:02 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 6.0.2.45
  • Updated for WoW 6.0
  • Fixed reversed on/off messages in some languages
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 06-01-14, 10:05 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 5.4.8.31
  • Fishing mode will no longer activate on mouseover while channeling Far Sight, Eye of Kilrogg, or similar effects
  • Fixed an error for users whose game clients fail at retrieving and/or caching item info
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 03-07-14, 05:10 PM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
Originally Posted by Phanx
Why are you deleting your cache so much?
To be honest, I'm not the one doing the deleting.

I think it's either a file permissions issue or the Battle.net App clears it after I log out of WoW (or both, or one thing causes the other, I don't know). I'm pretty sure the cache gets deleted or modified as SilverDragon pops up "NPC found in cache" alerts even though I don't delete it.
__________________
Twitter | GitHub
Report comment to moderator  
Reply With Quote
Unread 03-05-14, 05:11 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Well, I can factor out the IsEquippedItemType call to a function that first attempts to update the value of the FISHING_POLE constant if it's not set... that will prevent the error from occurring, but the "activate on equip" feature will still fail when your client fails to retreive the item data in a timely fashion.

Why are you deleting your cache so much?
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 03-03-14, 04:54 PM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
Using /dump GetItemInfo(6256) returns everything you'd want to know about the Fishing Pole. It hasn't yet returned "empty result" during my playtime sessions.

One thing I have noticed is that the error occurs on line 342 (currently at 30x this session) as well as 374 (111x), and that errors sometimes occur when looting or mousing-over things.

My Cache is deleted regularly and I have a feeling that might be what is causing it.

I play a 64-bit client on EU realms using Mac OS X 10.9.2.
__________________
Twitter | GitHub
Last edited by Ravendwyr : 03-03-14 at 04:58 PM.
Report comment to moderator  
Reply With Quote
Unread 02-28-14, 07:45 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
That's very weird, and seems to indicate that Fishing Pole is not a valid item for your game client. What happens if you type this:

/dump GetItemInfo(6256)

If it prints "empty result" just run it again; this is normal, but also strange, since the addon intentionally calls it twice -- once when it loads and then again once all addons have loaded (at PLAYER_LOGIN) -- before it does anything, in case it's not already cached. However, what seems to be happening for you is that your game client is just never receiving the item info.

If you get "empty result" the second time too, then there is something wrong with your game client, and there's probably nothing I can do about it in the addon other than print a big warning and not try to do anything that requires identifying a fishing pole. Try exiting the game and deleting your entire Cache folder.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Last edited by Phanx : 02-28-14 at 07:45 PM.
Report comment to moderator  
Reply With Quote
Unread 02-28-14, 05:13 PM  
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 139
File comments: 156
Uploads: 13
I get this error every time I log in:
Code:
21x GoFish\Addon.lua:374: Usage: IsEquippedItemType("type")
[C]: in function `IsEquippedItemType'
GoFish\Addon.lua:374: in function `?'
GoFish\Addon.lua:177: in function <GoFish\Addon.lua:177>

Locals:
self = GoFish {
 PLAYER_LOGOUT = <function> defined @GoFish\Addon.lua:309
 ToggleFishingMode = <function> defined @GoFish\Addon.lua:269
 PLAYER_LOGIN = <function> defined @GoFish\Addon.lua:279
 DisableFishingMode = <function> defined @GoFish\Addon.lua:254
 SetupClickHook = <function> defined @GoFish\Addon.lua:203
 UNIT_INVENTORY_CHANGED = <function> defined @GoFish\Addon.lua:373
 UNIT_SPELLCAST_CHANNEL_STOP = <function> defined @GoFish\Addon.lua:359
 PLAYER_REGEN_ENABLED = <function> defined @GoFish\Addon.lua:330
 UNIT_SPELLCAST_CHANNEL_START = <function> defined @GoFish\Addon.lua:349
 EnableFishingMode = <function> defined @GoFish\Addon.lua:232
 0 = <userdata>
 PLAYER_REGEN_DISABLED = <function> defined @GoFish\Addon.lua:316
}
unit = "player"
FISHING_POLE = nil
hasPole = nil
isFishing = nil
Help!
__________________
Twitter | GitHub
Report comment to moderator  
Reply With Quote
Unread 12-17-13, 05:12 PM  
sezz
A Chromatic Dragonspawn
AddOn Author - Click to view AddOns

Forum posts: 158
File comments: 13
Uploads: 1
Awesome, finally a fishing addon for people who only want the double-right-click fishing.

Thanks Phanx!
Report comment to moderator  
Reply With Quote
Unread 11-30-13, 12:06 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 5.4.1.27
  • Fixed a possible error at startup if the mouse happened to be over a fish pool
  • Updated German translations from ckaotik on CurseForge
  • Updated for WoW 5.4
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 07-17-13, 03:06 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 5.3.0.22
  • Fixed deDE/zhTW localization conflict

Thanks for the report.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 07-12-13, 12:48 PM  
ckaotik
A Fallenroot Satyr
 
ckaotik's Avatar
AddOn Author - Click to view AddOns

Forum posts: 29
File comments: 168
Uploads: 5
Config UI Bug

Hi phanx,

the UI bugs on my deDE client. It doesn't show any texts as you can see in the tooltip. I'm using version 5.3.0.21 and at some point in the past it did work properly. Also, it seems most of the locale strings are now localized on Curse

Edit: Just figured out why! Locale-zhTW.lua checks for deDE (copy paste, anyone? )

__________________
It all starts to make a creepy kind of sense. Avatar
Last edited by ckaotik : 07-12-13 at 12:56 PM.
Report comment to moderator  
Reply With Quote
Unread 07-08-13, 07:41 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Version 5.3.0.21
  • Updated for WoW 5.3
  • Fixed disabling option to enhance sounds
  • Added remaining "fish of the day" special pools
  • Added zhTW translations from BNSSNB
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 06-11-13, 06:07 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Fixed in the next release, which probably won't appear until the weekend.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 06-11-13, 03:26 PM  
Ault
A Kobold Labourer

Forum posts: 1
File comments: 37
Uploads: 0
Sound effects

I love this addon for the double right click, but I don't like the sound changes, and clearing the checkbox doesn't turn it off...
Report comment to moderator  
Reply With Quote
Unread 06-01-13, 09:42 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
I definitely can't reproduce that. The checkbox options all default to on. I toggled one off and reloaded the UI, and it was still off. I then toggled them all off and reloaded the UI, and they were still off. Make sure you have the latest version. If you do, check BugSack for error messages, try without other addons, etc. all the usual troubleshooting steps, and report back.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Last edited by Phanx : 06-01-13 at 09:42 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: