| Updated: | 05-24-09 02:03 PM |
| Created: | unknown |
| Downloads: | 5,154 |
| Favorites: | 57 |
| MD5: |

File Name |
Version |
Size |
Author |
Date |
3.1.2 - 9901 |
44kB |
Maldivia |
05-19-09 04:48 PM |
|
3.1.1a - 9835 |
27kB |
Maldivia |
04-28-09 04:04 PM |
|
3.1.1 - 9806 |
27kB |
Maldivia |
04-21-09 12:53 PM |
|
3.1.0 - 9767 |
27kB |
Maldivia |
04-14-09 11:07 AM |
|
9551/9614 |
26kB |
Maldivia |
02-25-09 02:27 PM |
|
9551 |
26kB |
Maldivia |
02-10-09 11:35 AM |
|
9506 |
26kB |
Maldivia |
01-27-09 10:02 AM |
|
9464 |
26kB |
Maldivia |
01-20-09 09:16 AM |
|
9183/9438 |
26kB |
Maldivia |
01-12-09 10:29 AM |
|
9183/9355 |
26kB |
Maldivia |
12-13-08 07:37 AM |
![]() |
Comment Options |
|
|
||
Nice addon, but in current state is unusable even with updated libraries... |
||
|
|
|
|
|
|
Update request
![]() |
|
|
|
|
|
||
__________________
Author of GuildCraft, SickOfClickingDailies, CursorCooldown, Broken_LFD WoWAce Addon List WoWInterface Addon List "I was there in the beginning... and things were very different back then" --An Echo from a time before. |
||
|
|
|
|
||
![]() I have managed to pull out the tradeskill scanning code from GnomishYelloPages and "import" it into the data format for LibTradeLinks-1.0. (Import meaning 'hacked togeather'). You can find this particular file in the latest release of GuildCraft in the LibTradelinks' folder. -Ta. <3 Maldiva and lilsparky for the addons.
__________________
Author of GuildCraft, SickOfClickingDailies, CursorCooldown, Broken_LFD WoWAce Addon List WoWInterface Addon List "I was there in the beginning... and things were very different back then" --An Echo from a time before. |
||
|
|
|
|
|
|
BTW, it seems, the link constructor offers the full list of possible spells.
Any chance it could be reworked to build a list from known spells only? Preferable, with original grouping... (Essential for Inscription, when you don't want to have your clients stare on your shoulder enchants and scrolls you can craft) |
|
|
|
|
|
||
however i've had success transposing data from GnomishYellowPages into this lib ![]()
__________________
Author of GuildCraft, SickOfClickingDailies, CursorCooldown, Broken_LFD WoWAce Addon List WoWInterface Addon List "I was there in the beginning... and things were very different back then" --An Echo from a time before. |
||
|
|
|
|
||
|
||
|
|
|
|
|
|
A Defias Bandit
Forum posts: 2
File comments: 55
Uploads: 0
|
I am using this piece of code to get the newest version of the data in LibTradeLinks:
Code:
-- find newest data in LibTradeLinks
local LTLDataVersion = tonumber((select(2,GetBuildInfo())))
local ltl = LibStub("LibTradeLinks-1.0");
while LTLDataVersion > 1 do
local data = ltl:GetData(ltl.SKILL_ALCHEMY, LTLDataVersion)
if data then
break
end
LTLDataVersion = LTLDataVersion - 1
end
-- LTLDataVersion holds newest version
|
|
|
|
|
|
|
A Defias Bandit
Forum posts: 2
File comments: 55
Uploads: 0
|
Passing nil as build number to
ecode results in:attempt to index upvalue 't' (a nil value) in line 236. But only if the library doesn't have the data for the current build (as it is now). |
|
|
|
|
|
|
ah didn't notice the new version... i was wondering why some recipies where showing up in guildcraft that previously where blacklisted (the bop stuff)
__________________
Author of GuildCraft, SickOfClickingDailies, CursorCooldown, Broken_LFD WoWAce Addon List WoWInterface Addon List "I was there in the beginning... and things were very different back then" --An Echo from a time before. |
|
|
|
|
|
||||
If what you're referring to as enchant-ids are the numbers used in enchant:#### links, then those are actually spell-ids. If you're refering to the actual enchant-ids (those added to item-links when the item is enchanted), then those are not to be found in any list. Example of enchant: Enchant Weapon - Mighty Spellpower Spell id: 60714 /run SetItemRef("spell:60714") /run SetItemRef("enchant:60714") both will show the tooltip for it Enchant id: 3834 /run SetItemRef("item:19019:3834") Above will show Thunderfury with +63 spell power |
||||
|
|
![]() |