Sign in to follow this  
Followers 0
Sercan KD

Legion auction house fix addon

6 posts in this topic

This addon helps you to search for an item in auction house, which is french only atm. you can use commands /translate or /tr + item link to translate items or open auction house window and hold alt button and right click item.

 

http://www.mediafire.com/file/uwbkuw23q4la7f2/FirestormTranslate.zip

Edited by Sercan KD
4 people like this

Share this post


Link to post
Share on other sites

AMAZING Job :) A quick peruse of your code shows it's fairly straightforward and legit. How long did it take you to look up all those item numbers? Or did you just pull it via SQL from TrinityCore? Great job btw. Now to take similar code and patch it against Auctionator :)

Share this post


Link to post
Share on other sites
On 11/22/2016 at 5:43 AM, texanrogue said:

AMAZING Job :) A quick peruse of your code shows it's fairly straightforward and legit. How long did it take you to look up all those item numbers? Or did you just pull it via SQL from TrinityCore? Great job btw. Now to take similar code and patch it against Auctionator :)

current trinitycore is not up to date so french item names are not available, i wrote custom program to rip from wowhead

1 person likes this

Share this post


Link to post
Share on other sites

Just an FYI if you wanted to update the auctionator addon to incorporate your addons functionality, simply copy your db.lua file into the Auctionator folder, add the db.lua reference into the Auctionator TOC, then search the Auctionator.lua file and find this function "function auctionator_ChatEdit_InsertLink(text)"

Add this variable under the local item variable

     local item_ID_Numb

In that function in the section "if strfind( text, "item:", 1, true ) then" just put this code:

      item_ID_Numb = tonumber(strmatch(text, "item:(%d+)"))
      item = Item_List[item_ID_Numb]

Then whenever you hold shift and click the item it'll paste the french name you put in :)

Thank you very much for the legwork on this. It makes all the difference for me :)

Edited by texanrogue
1 person likes this

Share this post


Link to post
Share on other sites

thanks for the addon

Share this post


Link to post
Share on other sites

Do you need Auctioneer addon for this to work? or just add the folder to the wow> interface>addons  directory?

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0