Download
(2MB)
Download
Updated: 01-31-24 12:35 AM
Pictures
File Info
Compatibility:
Seeds of Renewal (10.2.5)
Updated:01-31-24 12:35 AM
Created:unknown
Downloads:82,921
Favorites:440
MD5:

Fishing Ace!  Popular! (More than 5000 hits)

Version: v0.9.12
by: Sutorix [More]

Fishing Ace! is all the core goodness of Fishing Buddy distilled down into it's simplest form.

If you equip a fishing pole, you will get double-right-click casting. Optionally, Fishing Ace will turn on Auto Loot and it will set the audio values to maximize the sound of the bobber.

It's a standard Ace2 addon -- /fishingace or /fa for help.

Note: The word "Ace!" in the name of the addon has nothing to do with the fact that it uses Ace2 in its construction (although, it *does*, in fact, use Ace2). I just like the name and I think it's cool. If you don't like it, feel free to continue using Fishing Buddy! for all of its not-yet-implemented in Ace2 functionality (not that it uses any of the "Buddy!" system in its construction either);

Fishing Ace! -Ace3-
v0.9.12 (2024-01-31)
Full Changelog Previous Releases
  • Merge pull request #9 from bob-schumaker/retail-update
    Retail update
  • Update TOC and version.
  • Include all of the args in the post click update.
Archived Files (12)
File Name
Version
Size
Author
Date
v0.9.11
1MB
Sutorix
09-16-23 03:34 PM
v0.9.10
1MB
Sutorix
05-20-23 10:30 AM
v0.9.9
1MB
Sutorix
05-08-23 11:14 PM
v0.9.8
1MB
Sutorix
02-26-23 11:29 AM
v0.9.7
1MB
Sutorix
12-26-22 04:57 PM
v0.9.6
1MB
Sutorix
12-04-22 01:25 PM
v0.9.5
1MB
Sutorix
11-25-22 12:19 PM
v0.9.4
1MB
Sutorix
11-24-22 02:23 PM
v0.9.3
1MB
Sutorix
11-24-22 01:21 PM
v0.9.2
1MB
Sutorix
11-01-22 04:04 PM
v0.9.1
1MB
Sutorix
09-11-22 02:03 PM
v0.9
1MB
Sutorix
09-11-22 01:17 PM


Post A Reply Comment Options
Unread 04-27-09, 04:06 PM  
romracer
A Murloc Raider
 
romracer's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 49
Uploads: 1
Many thanks to Cambria for reworking the IsFishingPole() function to use item IDs. Here's a pre-patched version based on r81 on WoWAce with Cambria's change as well as my fix for "auto best" fishing lure:

http://server1.underpants-gnomes.biz...FishingAce.zip

If you previously downloaded my version, you might want to clear your browser cache just to be sure you get the most recent copy (file dates should be Apr 27th).
Report comment to moderator  
Reply With Quote
Unread 04-24-09, 09:02 AM  
kwslavens
A Kobold Labourer

Forum posts: 0
File comments: 8
Uploads: 0
Thanks Cambria, that worked perfectly for me!
Report comment to moderator  
Reply With Quote
Unread 04-23-09, 12:27 PM  
Cambria
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
I simply love FishingAce!
But since my recently acquired Jeweled Fishing Pole didn't work with FishingAce, I started to investigate..
The new fishing poles don't seem work with FishingAce because it checks the icon name of the equipped mainhand item. Blizzard started using new icons for fishing poles, so it doesn't recognize the new fishing poles introduced in 3.1 (I haven't tried the Mastercraft Kalu'ak Fishing Pole).
In order to solve this problem, I took a different approach to the fishing pole recognition.

First of all, I added a new table including the ItemIDs of every fishing pole in the game.
You could add this before the FISHINGLURE table
Code:
local FISHINGPOLES = {45992,45991,45858,44050,25978,19970,19022,12225,6367,6366,6365,6256}
The main changes are in the IsFishingPole() function.
Just swap this with the old function.
Code:
local function IsFishingPole()
	-- Get the main hand item id
	local slot = GetInventorySlotInfo("MainHandSlot")
	local link = GetInventoryItemLink("player", slot)
	local _, id, _ = SplitLink(link)
	-- Check for fishing pole
	for i,val in ipairs(FISHINGPOLES) do
		if (string.find(id,val)~=(nil)) then
			return true
		end
	end
	return false
end
Instead of comparing the Icons, it compares the ItemIDs.
This way FishingAce can easily be edited for any new fishing poles Blizzard might implement, since you would only have to add the item ID to the FISHINGPOLES table.
The amount of lines of code is actually the same. There might be a more elegant solution, but it suited my needs.
I hope this helps all those lucky enough to acquire one of those fancy new fishing poles.
Just leave a comment, if I have missed anything.

Edit: I implemented and tested this in version r81 available at WoWAce.
Last edited by Cambria : 04-23-09 at 02:46 PM.
Report comment to moderator  
Reply With Quote
Unread 04-18-09, 04:30 AM  
MouzArt
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 8
Uploads: 1
If you have a Bone Fishing Pole, you have to edit the lua.

You'll have to replace

Code:
if ( itemTexture and string.find(itemTexture, "INV_Fishingpole") ) then
with

Code:
if ( itemTexture and string.find(itemTexture, "achievement_profession_fishing_journeymanfisher") ) then
Got the Texture Name trough

Code:
/script message(ActionButton1Icon:GetTexture())
Last edited by MouzArt : 04-18-09 at 04:52 AM.
Report comment to moderator  
Reply With Quote
Unread 04-16-09, 04:45 PM  
romracer
A Murloc Raider
 
romracer's Avatar
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 49
Uploads: 1
Fishing Ace has worked in WoW 3.0 for a long time. It still works in 3.1 as well. However, the version that works was never posted to WoWI. I've asked the author to submit a more recent version here and to Curse, so maybe we'll see one soon.

I've also submitted a patch to him to make the "equip best lure" feature actually use the best lure you have based on +skill and duration, as well as added in a new lure released in 3.1 (the Glow Worm).

In the meantime, here's a link to the working version that includes my patch:

http://server1.underpants-gnomes.biz...FishingAce.zip


If you either don't trust my link or don't want my patch and would rather have the official version, you can find a 3.0/3.1 working version here:

http://www.wowace.com/projects/fishi...files/213-r80/


You will need to download and install Ace2 separately regardless of which download you choose. The Ace2 libraries are required by Fishing Ace but are not included in the zip.
Report comment to moderator  
Reply With Quote
Unread 02-22-09, 08:40 PM  
GRiM
An Aku'mai Servant
 
GRiM's Avatar

Forum posts: 29
File comments: 46
Uploads: 0
I too had to remove FishingAce.

I would however really appreciate an update as I rather enjoy all the functionality.
__________________
Too busy playing WoW to make a proper sig...
Report comment to moderator  
Reply With Quote
Unread 02-19-09, 12:13 AM  
injunuity
A Murloc Raider

Forum posts: 7
File comments: 1
Uploads: 0
auto any fishing still not working

tried seeing what (if any fixes where out there) still no go. gives a list of errors, too annoyed to list em, since i removed it.
best of luck getting this going. or at least post any coding fixes that can be copied into the addon files.
Report comment to moderator  
Reply With Quote
Unread 02-12-09, 11:44 PM  
Nataliah
A Kobold Labourer

Forum posts: 1
File comments: 3
Uploads: 0
is there any spesific reason why mem usage from fishing ace is 450kb? on info it says 75kb tho... slightly annoying trying to keep minimal memory usage and still have the double right click option which is the only option i'm using..
__________________
PEANUT BUTTER JELLY TIME!
Report comment to moderator  
Reply With Quote
Unread 11-12-08, 07:14 AM  
Grilor
Premium Member
 
Grilor's Avatar
Premium Member

Forum posts: 9
File comments: 107
Uploads: 0
auto lure still not working

auto lure don't work i cant get it to put on a lure.. i have np doing it my self just posting that there is a problem
__________________

--------------------------------------------------------------------------
Report comment to moderator  
Reply With Quote
Unread 11-11-08, 11:03 AM  
mrdummy
A Deviate Faerie Dragon

Forum posts: 14
File comments: 31
Uploads: 0
Getting error when move item from Bagnon box to Auctioneer window.
That is just very stupid error. Why? It reacts already on dragging items!
Must i put normal weapons on before dragging items?

Error occured in: Global
Count: 1
Message: ..\AddOns\FishingAce\FishingAce.lua line 313:
attempt to call global 'GetAutoLootDefault' (a nil value)
Debug:
(tail call): ?
...ace\AddOns\IceHUD\libs\AceEvent-2.0\AceEvent-2.0.lua:299: TriggerEvent()
...ace\AddOns\IceHUD\libs\AceEvent-2.0\AceEvent-2.0.lua:910:
...ace\AddOns\IceHUD\libs\AceEvent-2.0\AceEvent-2.0.lua:903
[C]: ?
[C]: ?
[C]: ?
[C]: pcall()
Stubby\Stubby.lua:341:
Stubby\Stubby.lua:325
(tail call): ?
..\FrameXML\ContainerFrame.lua:624: ContainerFrameItemButton_OnClick()
[string "*:OnDragStart"]:1:
[string "*:OnDragStart"]:1
Report comment to moderator  
Reply With Quote
Unread 11-01-08, 07:24 PM  
Azza2
A Deviate Faerie Dragon

Forum posts: 10
File comments: 29
Uploads: 0
Getting the same problems of AutoLoot error boxes when I equip/unequip the fishing pole, as well as when looting fish.

BrandX's fix to Fishing Ace for 3.02 seems to work fine for some reason though :/
Report comment to moderator  
Reply With Quote
Unread 11-01-08, 06:24 AM  
oXid_FoX
A Deviate Faerie Dragon
 
oXid_FoX's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 147
Uploads: 1
BUG REPORT

when I replace my fishing pole by my weapon, I got this error :
Date: 2008-11-01 12:23:22
ID: 53
Error occured in: Global
Count: 24
Message: ..\AddOns\FishingAce\FishingAce.lua line 313:
attempt to call global 'GetAutoLootDefault' (a nil value)
Debug:
(tail call): ?
...\AddOns\AllPlayed\libs\AceEvent-2.0\AceEvent-2.0.lua:299: TriggerEvent()
...\AddOns\AllPlayed\libs\AceEvent-2.0\AceEvent-2.0.lua:910:
...\AddOns\AllPlayed\libs\AceEvent-2.0\AceEvent-2.0.lua:903
Report comment to moderator  
Reply With Quote
Unread 10-27-08, 02:42 AM  
Iwa Washi
A Kobold Labourer

Forum posts: 0
File comments: 38
Uploads: 0
Fresh install. Auto-loot broken, auto-lure broken...
Report comment to moderator  
Reply With Quote
Unread 10-22-08, 10:23 PM  
Vytae
A Murloc Raider

Forum posts: 6
File comments: 62
Uploads: 0
Error happening when using fishing ace..


Interface\AddOns\FishingAce\FishingAce.lua:313: attempt to call global 'GetAutoLootDefault' (a nil value)
...\AddOns\Decursive\libs\AceEvent-2.0\AceEvent-2.0.lua:299: in function `TriggerEvent'
...\AddOns\Decursive\libs\AceEvent-2.0\AceEvent-2.0.lua:910: in function <...\AddOns\Decursive\libs\AceEvent-2.0\AceEvent-2.0.lua:903>
[C]: in function `UseContainerItem'
Interface\FrameXML\ContainerFrame.lua:632: in function <Interface\FrameXML\ContainerFrame.lua:605>
[C]: in function `ContainerFrameItemButton_OnClick'
[string "*:OnClick"]:12: in function <[string "*:OnClick"]:1>
Report comment to moderator  
Reply With Quote
Unread 07-15-08, 01:24 PM  
kwslavens
A Kobold Labourer

Forum posts: 0
File comments: 8
Uploads: 0
Same this is happening to me as we'll... happens with fishing buddy also.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.