The only way I could track this before was a macro created by another player. Now the macro is broke so exactly how is Bliz wanting us to track it? I think Im 44/50 but there is no way to see it in the achievement itself as you can put in a checkmark to track and it puts it to the side but it doesnt not tell you how many mounts/pets you crafter or which ones so not going to be crafting anymore to take a guess. I have no clue how to make a macro either Any ideas please? II mean why make an achieve we have no way to track in the game from Blizz
Only real in-game way to track it is to only learn the pets you craft.
So then you can check the crafting machine and count how many youve done.
Easier with the mounts.
Yeah the problem is there is nothing in the crafting of pets showing me which I crafted iust that I have it as I bought some so cant see if i bought them or crafted them. The ,mounts I know I crafted as those are SB but pets are not. Sorry keyboard is brokjjje
Macro got broken by API rearrangements in TWW (11.0 API). Here’s an updated one which does work:
/run for i=1,52 do local _,_,c,_,_,_,_,id = GetAchievementCriteriaInfo(15411,i,true)print(C_Spell.GetSpellLink(id),c and"\124T136814:0\124t"or"\124T136813:0\124t")end
The simplified one that just returns the count still works unchanged (because it doesn’t try to extract the name of the Protoform creation:
/run sum=0;for i=1,52 do local _,_,c,_,_,_,_,_ = GetAchievementCriteriaInfo(15411,i,true); if c then sum = sum + 1; end ; end; print ("Number created: ",sum)
omg I love you!!! It works and now I should be able to complete this achieve as I have all the mats for the 6 Im missing. ty ty ty