Hello, GetSpellBookItemInfo seem added in Wow 4.0.1.
Try:
local id = 6673;
local nSearch = GetSpellInfo(id);
if nSearch then
local i = 1
while true do
local spellName, spellRank = GetSpellName(i, BOOKTYPE_SPELL)
if not spellName then break end
if nSearch == spellName then
return true;
end
i = i + 1
end
end
return false;