March 18, 201412 yr Ok so this macro dosent work anymore. /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end anyone know the and or a new macro to get the base ID's from the spell book?
March 18, 201412 yr Hello, You can look on wowwiki (by sample for spell "Mind Flay" it is written "This ability replaces Smite.")
March 19, 201412 yr Author yeah but this macro will tell you all the spell names and IDs in the wow chat window which is soooo much easier than having to look up stuff. I think the ( \124cFF4FF763 ) is the issue since the latest update.
March 22, 201412 yr \124cFF4FF763 is for the text color, I'll look for fix this macro. I come back here after.
April 5, 201412 yr Author Ok so its working again for some reason... It works fine on my mage. /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end
Create an account or sign in to comment