In wow classic is there anyway to get which recipes and/or check if the character has a recipe without opening the tradeskill window? Currently I can only find this way to do it, where the issue is unless a tradeskill window is open GetNumTradeSkills does not return anything.
for i=1,GetNumTradeSkills() do
local name = GetTradeSkillInfo(i)
table.insert(recipes, name)
end
In wow classic is there anyway to get which recipes and/or check if the character has a recipe without opening the tradeskill window? Currently I can only find this way to do it, where the issue is unless a tradeskill window is open GetNumTradeSkills does not return anything.
don't think there is. you'd probably need to wait until the player opens the tradeskill window and then store the information
In reply to Ketho17:
Thanks friend.