Category: Outdated Mods
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Author:
Version:
r47762
Date:
09-04-2007 02:48 AM
Size:
126.68 Kb
Downloads:
5,930
Favorites:
94
MD5:
Pictures
Click to enlarge
queries
Click to enlarge
GUI
CraftList2   Popular! (More than 5000 hits)
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.
  Comments - CraftList2
Post A Reply Comment Options
Old 11-03-2008, 03:21 PM  
Wall
Premium Member
 
Wall's Avatar
Premium Member

Forum posts: 7
File comments: 37
Uploads: 0
Wall is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-27-2008, 02:58 PM  
Acabar
A Murloc Raider

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

Quote:
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.
Acabar is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-20-2008, 01:51 PM  
DJZod
A Kobold Labourer

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

Quote:
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-2008 at 01:52 PM.
DJZod is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-13-2008, 10: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.
Catrabela is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-09-2008, 10: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
Ellny is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-03-2008, 12:50 PM  
Movarrin
A Deviate Faerie Dragon

Forum posts: 12
File comments: 72
Uploads: 0
Quote:
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.
Movarrin is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-28-2008, 02:55 PM  
Noxious
A Kobold Labourer
 
Noxious's Avatar

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-2008 at 02:55 PM.
Noxious is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-20-2008, 10:52 PM  
Sunhead
A Defias Bandit

Forum posts: 3
File comments: 31
Uploads: 0
Arrow Maybe?

Quote:
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.
Sunhead is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-17-2008, 01:52 PM  
Boedicia
A Deviate Faerie Dragon
 
Boedicia's Avatar

Forum posts: 16
File comments: 54
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?
__________________
Boedicia is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-19-2008, 04:44 PM  
secutanudu
A Chromatic Dragonspawn

Forum posts: 151
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
secutanudu is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-13-2007, 04: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.
Malkntnt is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-05-2007, 10:11 PM  
Kudane
Co-Founder
 
Kudane's Avatar
Interface Author - Click to view interfaces

Forum posts: 207
File comments: 41
Uploads: 2
Quote:
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-2007 at 10:26 PM.
Kudane is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-03-2007, 05:08 AM  
Athou
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 25
Uploads: 2
What's the exact error ? there should not be any 2.2 incompatibilities
Athou is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-03-2007, 01:29 AM  
Kudane
Co-Founder
 
Kudane's Avatar
Interface Author - Click to view interfaces

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

any idea if this is 2.2 compatible?
Kudane is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 09-04-2007, 02:47 AM  
Athou
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 25
Uploads: 2
r47762
- you can now set a comment for each craft. it will be printed right to that craft when answering a query.
- Some small fixes and optimizations
Athou is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.