View Single Post
07-16-17, 05:04 AM   #4
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Originally Posted by Splynx View Post
No I do not wish to listen for click's on a recipe and get it that way, a craft can begin in other ways than this.

Why not just hook C_TradeSkillUI.CraftRecipe this will track any craft start
Lua Code:
  1. hooksecurefunc(C_TradeSkillUI, "CraftRecipe", function(recipeID, amount)
  2.     print(recipeID, amount)
  3. end)
  Reply With Quote