WoW Quest API question

Is there a function returning QuestID that has quest name as parameter?

Some Addons comes with an own quest database. That confuses me a lot. I think to rely on third party data instead of games given data may give a lot of redundancies.

I think it is unlikely that such a function exists, just because the quest name is different for every locale. But it is also not that big a deal to built such a function (in fact just a lookup table) yourself.

Traverse through all possible questIDs,
obtain for each id the questTitle
(cf. https://www.wowinterface.com/forums/showthread.php?t=46934),
and then store each pair in a table like:
myQuestTitleToId[questTitle] = questId

Thanks for your answer. I think I have to use a table and give it a try.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.