April 5, 201412 yr How do I get the original spell name of a spell if it has been replaced by a newer spell, glyph, talent ect? I used to know a macro that would list all spells in the spell book and if a spell was replaced it would tell you the original spell name and ID. But the macro is no longer working. Ignor this I fixed it. /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
April 6, 201412 yr Hello, In debug log I have added spell name and spell id of all spells of your spellbook (log is in same order of your spell book, this can help to found base spell name). I'll try to found more easy way.
Create an account or sign in to comment