WoW API: GetAvailableQuestInfo

From AddOn Studio
Revision as of 16:42, 24 March 2010 by WoWWiki>Starlightblunder (Created page with '{{wowapi}} Returns information about the type of an available quest. isTrivial, isDaily, isRepeatable = GetAvailableQuestInfo(index); == Arguments == ; index : Number - Index o…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < GetAvailableQuestInfo

Returns information about the type of an available quest.

isTrivial, isDaily, isRepeatable = GetAvailableQuestInfo(index);

Arguments

index
Number - Index of the available quest to query, starting from 1.

Returns

isTrivial
Flag - 1 if the quest is trivial (too low-level compared to the character), nil otherwise.
isDaily
Flag - 1 if the quest is a daily quest, nil otherwise.
isRepeatable
Flag - 1 if the quest is repeatable, nil otherwise.

History