WoW:API GetQuestLogQuestText: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 32: Line 32:
----
----
{{Template:WoW API}}
{{Template:WoW API}}
[[Category:API Functions|GetQuestLogQuestText]]
[[Category:API Quest Functions|GetQuestLogQuestText]]

Revision as of 15:08, 27 August 2005

GetQuestLogQuestText -Documentation by AlexanderYoshi-

Returns the description and objectives required for the specified quest.

GetQuestLogQuestText();

Arguments
none

Returns
String questDescription, String questObjectives
questDescription
The quest description
questObjectives
The quest objective

Example
local questDescription, questObjectives = GetQuestLogQuestText();
Result
"Those darn leprechauns continue to bury their gold in my fields...", "Kill 10 leprechauns."

Description
Returns the description and objectives required for the specified quest.

Template:WoW API