texanrogue

Members
  • Content count

    2
  • Joined

  • Last visited

About texanrogue

Firestorm User

  • Name Faylnn
  • Class Druid
  • Level 15
  • Realm Gul'dan
  • Race Night elf

Recent Profile Visitors

582 profile views
  1. 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
  2. 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