Download
(760Kb)
Download
Updated: 04-28-17 07:20 PM
Pictures
File Info
Compatibility:
Tomb of Sargeras (7.2.0)
Updated:04-28-17 07:20 PM
Created:unknown
Downloads:333,506
Favorites:2,128
MD5:

Ackis Recipe List  Popular! (More than 5000 hits)

Version: 7.2.0.2
by: Torhal, Ackis, Resa1983

Ackis Recipe List is an AddOn which will scan your trade skill recipes and print out a list of which recipes you are currently missing. It will work for all tradeskills.

Profession AddOns:
Due to the increasing data size and memory usage with each WoW expansion, the professions have been split into their own AddOns; you need only download the ones you'll be using. Each installed and enabled profession AddOn will load whenever it's first accessed by the ARL core.

IRC:

Feel free to join us on irc at Freenode in the channel #arl

Webchat:
Freenode has come up with their alternative to Mibbit.
Webchat

Change Log:

Change Log

Bugs/Suggestions/Features/Comments:

Please post all bugs, suggestions, features and comments on the WoW Ace Project Management page.

Latest Changelog can be found here
Post A Reply Comment Options
Unread 08-19-09, 06:16 AM  
Thrashfinger
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 14
Uploads: 1
Updated enhancement for AckisRecipeList v3.2

I'm glad I could help. Tinkering with code is fun for me.

I edited my previous forum post to fix a SNAFU error
and to provide a more streamlined code snippet.

Hopefully the error didn't cause too much trouble for anyone.

Cheers!
Last edited by Thrashfinger : 08-19-09 at 06:20 AM.
Report comment to moderator  
Reply With Quote
Unread 08-18-09, 09:57 AM  
Ackis
A Cliff Giant
 
Ackis's Avatar
AddOn Author - Click to view AddOns

Forum posts: 78
File comments: 96
Uploads: 6
Re: AckisRecipeList v3.2 + TradeJunkie + AdvancedTradeSkillWindow

Originally posted by Thrashfinger
This modification enhances two aspect of AckisRecipeList to work
and play well with AdvancedTradeSkillWindow and TradeJunkie:
Just added it to the main repository, next release will have this built in. Very much appreciated for providing this snippet for me.
Report comment to moderator  
Reply With Quote
Unread 08-18-09, 04:20 AM  
Thrashfinger
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 14
Uploads: 1
AckisRecipeList v3.2 + TradeJunkie + AdvancedTradeSkillWindow

AckisRecipeList v3.2 + TradeJunkie + AdvancedTradeSkillWindow
--------------------------------------------------------------

This modification enhances two aspect of AckisRecipeList to work
and play well with AdvancedTradeSkillWindow and TradeJunkie:

1) Dynamically updates ARL's "Scan" button size and location
relative to ATSW's "Options" button dimensions and placement.

2) Shifts ARL's "Scan" button left if TJ's "Junkie" button is present,
so that their button placement will not conflict.

These changes can be adapted for other addons as well.

--------------------------------------------------------------

______________________________________________________________


• Open ARLFrame.lua

• Change (lines 1503 through 1509):
Code:
	-- Anchor to ATSW
	if (ATSWFrame) then
		addon.ScanButton:SetParent(ATSWFrame)
		addon.ScanButton:ClearAllPoints()
		addon.ScanButton:SetPoint("RIGHT", ATSWOptionsButton, "LEFT", 0, 0)
		addon.ScanButton:SetHeight(ATSWOptionsButton:GetHeight())
		addon.ScanButton:SetWidth(90)
- To:
Code:
	-- Anchor to ATSW
	if (ATSWFrame) then
		addon.ScanButton:SetParent(ATSWFrame);
		addon.ScanButton:ClearAllPoints();
		if (TradeJunkieMain and TJ_OpenButtonATSW) then
			addon.ScanButton:SetPoint("RIGHT", TJ_OpenButtonATSW, "LEFT", 0, 0);
		else
			addon.ScanButton:SetPoint("RIGHT", ATSWOptionsButton, "LEFT", 0, 0);
		end
		addon.ScanButton:SetHeight(ATSWOptionsButton:GetHeight());
		addon.ScanButton:SetWidth(ATSWOptionsButton:GetWidth());
______________________________________________________________


Save and Close the file.

Run the game.

Your mileage may vary, but probably won't.


-EDIT: formatting
-EDIT2: fixed SNAFU - I was "getting" the wrong option button dimensions for dynamic resizing
-EDIT3: streamlined code snippet
-
Last edited by Thrashfinger : 08-19-09 at 06:18 AM.
Report comment to moderator  
Reply With Quote
Unread 08-12-09, 10:25 AM  
Thors Liebling
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 16
File comments: 37
Uploads: 2
Originally posted by cgrille
Today I've updated ARL about the Wowinterface tool 'Minion'. After this Antivir gave me an alert about a suspicious file in this addon (HEUR/HTML.Malware in ARL-Engineer.lua).
The version of curse do not show this Problem (6th August 3.2.0)
Read this for more information:
http://www.wowace.com/addons/arl/

This problem seems to have occured due to the engineering recipe for the wormhole
Report comment to moderator  
Reply With Quote
Unread 08-11-09, 10:57 PM  
Ackis
A Cliff Giant
 
Ackis's Avatar
AddOn Author - Click to view AddOns

Forum posts: 78
File comments: 96
Uploads: 6
Originally posted by cgrille
Today I've updated ARL about the Wowinterface tool 'Minion'. After this Antivir gave me an alert about a suspicious file in this addon (HEUR/HTML.Malware in ARL-Engineer.lua).
The version of curse do not show this Problem (6th August 3.2.0)
This latest version won't give you the error.
Report comment to moderator  
Reply With Quote
Unread 08-08-09, 01:04 PM  
pompachomp
A Fallenroot Satyr

Forum posts: 20
File comments: 43
Uploads: 0
Originally posted by cgrille
Today I've updated ARL about the Wowinterface tool 'Minion'. After this Antivir gave me an alert about a suspicious file in this addon (HEUR/HTML.Malware in ARL-Engineer.lua).
The version of curse do not show this Problem (6th August 3.2.0)

It is a false positive..
Important Virus Announcement

Some people are reporting that there is a malware warning with some virus scanners. This is a false positive. I do not know why these scanners are picking it. As you can see here the zip is clean. I've submitted the file to a few vendors to get this issue fixed and am looking at ways in code to fix it.

This is a difference in the code from one version that works, to another version that causes the error:

Code:
Index: ARL-Engineer.lua
===================================================================
--- ARL-Engineer.lua (revision 2283)
+++ ARL-Engineer.lua (revision 2287)
@@ -1575,11 +1575,22 @@
if (toc == 30200) then

-- Goblin Beam Welder -- 67326
- self:addTradeSkill(RecipeDB,67326,450,47828,1,4036,nil,2)
- self:addTradeFlags(RecipeDB,67326,1,2)
- --self:addTradeAcquire(RecipeDB,67326
+ self:addTradeSkill(RecipeDB,67326,450,47828,1,4036,nil,2,415,415,420,425)
+ self:addTradeFlags(RecipeDB,67326,1,2,21,22,23,24,25,26,27,28,29,30)
+ self:addTradeAcquire(RecipeDB,67326,1,25277)
+
+ -- Jeeves -- 68067
+ self:addTradeSkill(RecipeDB,68067,450,49050,1,4036,nil,2,450,480,485,490)
+ self:addTradeFlags(RecipeDB,68067,1,2,21,22,23,24,25,26,27,28,29,30)
+ self:addTradeAcquire(RecipeDB,68067,7,2)
+
+ --Wormhole Generator -- 67920
+ self:addTradeSkill(RecipeDB,67920,450,48933,1,4036,nil,2,450,450,455,460)
+ self:addTradeFlags(RecipeDB,67920,1,2,21,22,23,24,25,26,27,28,29,30)
+ self:addTradeAcquire(RecipeDB,67920,1,25277)
+

- return 292
+ return 294

else
__________________


Report comment to moderator  
Reply With Quote
Unread 08-08-09, 01:02 PM  
pompachomp
A Fallenroot Satyr

Forum posts: 20
File comments: 43
Uploads: 0
Re: Inscription

Originally posted by Casazil
Just got the new glyph and the message glyph of claw 67600 is missing please tell the author.
It has been added...

http://www.wowace.com/addons/arl/files/8519-r2296/
__________________


Report comment to moderator  
Reply With Quote
Unread 08-08-09, 12:34 AM  
cgrille
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Today I've updated ARL about the Wowinterface tool 'Minion'. After this Antivir gave me an alert about a suspicious file in this addon (HEUR/HTML.Malware in ARL-Engineer.lua).
The version of curse do not show this Problem (6th August 3.2.0)
Report comment to moderator  
Reply With Quote
Unread 08-07-09, 01:24 PM  
NiQil
A Deviate Faerie Dragon

Forum posts: 13
File comments: 56
Uploads: 0
Re: Inscription

Originally posted by Casazil
Just got the new glyph and the message glyph of claw 67600 is missing please tell the author.
This.

And I received this message after the beta release making this addon compatible with 3.2.
Report comment to moderator  
Reply With Quote
Unread 08-07-09, 01:27 AM  
stanchubb
A Murloc Raider
Premium Member

Forum posts: 6
File comments: 10
Uploads: 0
latest version (3.2)

the very latest version seems to be always at http://www.wowace.com/addons/arl/

that includes permanent beta development though.
Report comment to moderator  
Reply With Quote
Unread 08-06-09, 03:08 AM  
NiQil
A Deviate Faerie Dragon

Forum posts: 13
File comments: 56
Uploads: 0
3.2

Any status on a 3.2 update?
Report comment to moderator  
Reply With Quote
Unread 08-05-09, 12:14 PM  
Zolhex
A Murloc Raider
 
Zolhex's Avatar

Forum posts: 5
File comments: 24
Uploads: 0
Inscription

Just got the new glyph and the message glyph of claw 67600 is missing please tell the author.
Report comment to moderator  
Reply With Quote
Unread 07-20-09, 12:29 PM  
pompachomp
A Fallenroot Satyr

Forum posts: 20
File comments: 43
Uploads: 0
Re: Missing Glyph

Originally posted by NiQil
I have just downloaded this awesome addon, and currently have no filters in place, and I am also showing the Glyph of Bladestorm to be missing from the Inscription profession.
It's in the database but wasn't showing up in the scan because of a missing flag.

It has been fixed in this alpha, that you can grab here if you want.
http://www.wowace.com/addons/arl/files/7386-r2223/
__________________


Last edited by pompachomp : 07-20-09 at 12:52 PM.
Report comment to moderator  
Reply With Quote
Unread 07-20-09, 12:29 PM  
Torhal
A Pyroguard Emberseer
 
Torhal's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1196
File comments: 223
Uploads: 34
Originally posted by TheCrocodil
The version here on WoWInterface is not the most current one. Ackis seems to prefer another distribution site, maybe because he is getting money from there, but I don't know...
Erm...the version here is the most recent release version - the "other site" only has the work-in-progress version.
__________________
Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes".

Author of NPCScan and many other AddOns.
Report comment to moderator  
Reply With Quote
Unread 07-18-09, 01:15 AM  
TheCrocodil
A Defias Bandit
 
TheCrocodil's Avatar

Forum posts: 3
File comments: 1
Uploads: 0
The version here on WoWInterface is not the most current one. Ackis seems to prefer another distribution site, maybe because he is getting money from there, but I don't know...
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.