So I have a skeleton project where I can type a slash command and do “something”. I’ve been searching through the API, specifically the functions listed under C_TradeSkillUI, but I haven’t found what I am looking for so that I can add that code to my slash command skeleton
I’m trying to find a function that tells me what the currently selected recipe is (the one being displayed by the tradeskill UI when open). Most every function I’ve seen requires a recipeID, but I’d already have to know which recipe is currently selected to get that. I naively thought it would get something like “GetCurrentRecipe” or “GetSelectedRecipe” but searches for “current” and “selected” turn up empty.
There is something that looks like it could be an event payload, OPEN_RECIPE_RESPONSE, but there aren’t any details on it so I’m not sure what to do with it and honestly I was just hoping to type the slash command, get the data, do a quick calc and display something in my chat, so I’m hoping I don’t need to dive into events.
Anyone know what I can use to get the currently selected recipe?