Posted on: 09-22-2012 - Updated on: 02-01-2014 - viewed 5816 times
Description:
This cool Wow macro will summon a random companion pet from your journal.
/run local p,t,d=C_PetJournal,{} for i=1,p.GetNumPets(false) do d=p.GetPetInfoByIndex(i) if p.PetIsSummonable(d) and d~=p.GetSummonedPetID() then tinsert(t,d) end end p.SummonPetByID(t[random(#t)])