Download
(127Kb)
Download
Updated: 09-04-07 12:48 AM
Pictures
File Info
Updated:09-04-07 12:48 AM
Created:unknown
Downloads:8,074
Favorites:80
MD5:

CraftList2  Popular! (More than 5000 hits)

Version: r47762
by: Athou [More]

A few months ago, I wrote EnchantList, that addon allowed people to whisper you !enchant followed by keywords, and get back a list of enchantments you can do, matching the keywords. GemList was created a little later, based on EnchantList, and was doing the same for Jewelcrafting.

CraftList2 is a rewrite from almost scratch of those. It now works for every profession in the game and is handling 3 triggers:

!enchant <any combination of keywords and itemlinks>
example: !enchant [Ashbringer] 35 heal

!gem <any combination of color/stat/reagent/text>
example: !gem red, !gem [Talasite], !gem 5 strength

!craft <any combination of reagent/text>
example: !craft belt of blasting, !craft belt [Primal Fire]

The database is updated every time you open a craft panel. The GUI is brand new, use /clist or /craftlist to open the panel.

Post A Reply Comment Options
Unread 07-09-11, 01:28 PM  
Athereal
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Plans to update?

I loved this add-on. It hasn't worked for several patches but I'd adore anyone who updated it for the 4.2 patch. Any plans to update it?
Report comment to moderator  
Reply With Quote
Unread 11-03-08, 02:21 PM  
Tntdruid
Premium Member
 
Tntdruid's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 55
File comments: 138
Uploads: 3
Report comment to moderator  
Reply With Quote
Unread 07-27-08, 12:58 PM  
Acabar
A Murloc Raider

Forum posts: 5
File comments: 6
Uploads: 0
Re: Fix coming?

Originally posted by DJZod
I'm having the same problem. /clist and /craftlist both do nothing and there is no response given when "!craft" whispers are received.
Same here.
Report comment to moderator  
Reply With Quote
Unread 07-20-08, 11:51 AM  
DJZod
A Kobold Labourer

Forum posts: 1
File comments: 1
Uploads: 0
Question Fix coming?

Originally posted by Catrabela
Is craftlist 2 going to be updated?

Just noticed that with the latest patch it seems to be completely broken and isn't loading at all.

The error seems to be in Abacus 2.0, line 21.
I'm having the same problem. /clist and /craftlist both do nothing and there is no response given when "!craft" whispers are received.
Last edited by DJZod : 07-20-08 at 11:52 AM.
Report comment to moderator  
Reply With Quote
Unread 05-13-08, 08:58 PM  
Catrabela
A Defias Bandit

Forum posts: 2
File comments: 7
Uploads: 0
Is craftlist 2 going to be updated?

Just noticed that with the latest patch it seems to be completely broken and isn't loading at all.

The error seems to be in Abacus 2.0, line 21.
Report comment to moderator  
Reply With Quote
Unread 05-09-08, 08:33 PM  
Ellny
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Pour faire fonctionner CraftList2 avec la dernière version de WIM

Chercher dans CraftList2.lua:

Code:
	if IsAddOnLoaded("WIM") then
		self:Hook("WIM_ChatFrame_MessageEventHandler",function(event, internalEvent)
			if arg1 and arg1~="" then
				if (string.sub(arg1,1,string.len(prefix_ench))==prefix_ench and not self.db.realm.showrequests and self.db.realm.trigger_ench and event=="CHAT_MSG_WHISPER") then return end
				if (string.sub(arg1,1,string.len(prefix_gem))==prefix_gem and not self.db.realm.showrequests and self.db.realm.trigger_gem and event=="CHAT_MSG_WHISPER") then return end
				if (string.sub(arg1,1,string.len(prefix_other))==prefix_other and not self.db.realm.showrequests and self.db.realm.trigger_other and event=="CHAT_MSG_WHISPER") then return end
				if (string.sub(arg1,1,string.len(prefix_answers))==prefix_answers and not self.db.realm.showanswers and event=="CHAT_MSG_WHISPER_INFORM") then return end
			end
			return self.hooks["WIM_ChatFrame_MessageEventHandler"](event, internalEvent)
			end,
			true)
	end
Remplacer par :

Code:
	if IsAddOnLoaded("WIM") then
		self:Hook("WIM_MessageEventHandler",function(event, internalEvent)
			if arg1 and arg1~="" then
				if (string.sub(arg1,1,string.len(prefix_ench))==prefix_ench and not self.db.realm.showrequests and self.db.realm.trigger_ench and event=="CHAT_MSG_WHISPER") then return end
				if (string.sub(arg1,1,string.len(prefix_gem))==prefix_gem and not self.db.realm.showrequests and self.db.realm.trigger_gem and event=="CHAT_MSG_WHISPER") then return end
				if (string.sub(arg1,1,string.len(prefix_other))==prefix_other and not self.db.realm.showrequests and self.db.realm.trigger_other and event=="CHAT_MSG_WHISPER") then return end
				if (string.sub(arg1,1,string.len(prefix_answers))==prefix_answers and not self.db.realm.showanswers and event=="CHAT_MSG_WHISPER_INFORM") then return end
			end
			return self.hooks["WIM_MessageEventHandler"](event, internalEvent)
			end,
			true)
	end
Report comment to moderator  
Reply With Quote
Unread 05-03-08, 10:50 AM  
Movarrin
Premium Member
Premium Member

Forum posts: 12
File comments: 74
Uploads: 0
Originally posted by Noxious
i'm getting the following error, is this a problem with clist or WIM? as they both worked fine before, this has only started to happen recently

Code:
Error:  AceHook-2.1: Attempt to hook a non-existant function "WIM_ChatFrame_MessageEventHandler"
AddOn: CraftList2
File: CraftList2.lua
Line: 1059
Count: 1
I am geting this same error.
Report comment to moderator  
Reply With Quote
Unread 04-28-08, 12:55 PM  
Noxious
A Kobold Labourer
 
Noxious's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 6
Uploads: 1
i'm getting the following error, is this a problem with clist or WIM? as they both worked fine before, this has only started to happen recently

Code:
Error:  AceHook-2.1: Attempt to hook a non-existant function "WIM_ChatFrame_MessageEventHandler"
AddOn: CraftList2
File: CraftList2.lua
Line: 1059
Count: 1
Last edited by Noxious : 04-28-08 at 12:55 PM.
Report comment to moderator  
Reply With Quote
Unread 04-20-08, 08:52 PM  
Sunhead
A Murloc Raider

Forum posts: 5
File comments: 40
Uploads: 1
Arrow Maybe?

Originally posted by Boedicia
When customers whisper me with the command !enchant, they get spammed many times with the same results over and over again until they eventually put me on ignore. Does anyone else get this bug?
I havent had anyone report this to me when I use it, and plenty of my guildmates still forget to put [itemlink] and I get !enchant whispers all the time.

I wonder if they you and/or your customers have an antiSpam mod that is whispering back to you, triggering CL2 again, which you cant see.
Report comment to moderator  
Reply With Quote
Unread 04-17-08, 11:52 AM  
Boedicia
A Fallenroot Satyr
 
Boedicia's Avatar

Forum posts: 24
File comments: 32
Uploads: 0
When customers whisper me with the command !enchant, they get spammed many times with the same results over and over again until they eventually put me on ignore. Does anyone else get this bug?
__________________
Report comment to moderator  
Reply With Quote
Unread 03-19-08, 02:44 PM  
secutanudu
A Chromatic Dragonspawn

Forum posts: 155
File comments: 70
Uploads: 0
I love this addon. I have a feature request, though.

Many people don't understand how to use this addon, despite me telling them. Might be nice to be able to use CL2 to link stuff to other people....example...

Mycustomer: Can you link me mats for agi to gloves?
Me: sure
Me: /el Mycustomer agility gloves

/el could stand for enchantlink

Would make it a lot easier for the people who refuse to read the "whisper me !enchant for mats" portion of my trade spam
Report comment to moderator  
Reply With Quote
Unread 10-13-07, 02:07 PM  
Malkntnt
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Question More Merchant options?

Can you make an option to allow specific items for sale? For example if I have a [Primal Life] and want to sell it for a specific amount. !mats for show you what I have for mats.

Maybe a window where it would show you what items you have on you and in your bank, and you could put specif prices next to the items.

I sell a lot of items and this would make my life soooo much easier. Plus I would not have to use the AH and could save TONS on deposits and fees!

Thanks for your time and concideration.
Report comment to moderator  
Reply With Quote
Unread 10-05-07, 08:11 PM  
Kudane
Co-Founder
 
Kudane's Avatar
AddOn Author - Click to view AddOns

Forum posts: 215
File comments: 79
Uploads: 2
Originally posted by Athou
What's the exact error ? there should not be any 2.2 incompatibilities
Code:
Date: 2007-10-05 19:09:48
ID: 51
Error occured in: Global
Count: 1
Message: ..\AddOns\CraftList2\CraftList2.lua line 514:
   attempt to concatenate a nil value
Debug:
   ...ArkInventory\Libs\Ace2\AceEvent-2.0\AceEvent-2.0.lua:304: TriggerEvent()
   ...ArkInventory\Libs\Ace2\AceEvent-2.0\AceEvent-2.0.lua:962:
      ...ArkInventory\Libs\Ace2\AceEvent-2.0\AceEvent-2.0.lua:955
just to check i disabled ArkInventory

Code:
Date: 2007-10-05 19:25:27
ID: 51
Error occured in: Global
Count: 1
Message: ..\AddOns\CraftList2\CraftList2.lua line 514:
   attempt to concatenate a nil value
Debug:
   ...AddOns\Bartender3\libs\AceEvent-2.0\AceEvent-2.0.lua:304: TriggerEvent()
   ...AddOns\Bartender3\libs\AceEvent-2.0\AceEvent-2.0.lua:962:
      ...AddOns\Bartender3\libs\AceEvent-2.0\AceEvent-2.0.lua:955
Last edited by Kudane : 10-05-07 at 08:26 PM.
Report comment to moderator  
Reply With Quote
Unread 10-03-07, 03:08 AM  
Athou
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 25
Uploads: 2
What's the exact error ? there should not be any 2.2 incompatibilities
Report comment to moderator  
Reply With Quote
Unread 10-02-07, 11:29 PM  
Kudane
Co-Founder
 
Kudane's Avatar
AddOn Author - Click to view AddOns

Forum posts: 215
File comments: 79
Uploads: 2
I now get errors when someone sends me !craft xxxxx

any idea if this is 2.2 compatible?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: