Difference between revisions of "LUA:UpdateQuestTaskGroupDescription"

(Created page with "Updates the description of a quest. This is usually called after completion of a quest. ==== Syntax ==== UpdateQuestTaskGroupDescription(Quest, TaskStepNum, "description string"...")
 
Line 1: Line 1:
Updates the description of a quest. This is usually called after completion of a quest.
+
Updates the description of a taskgroup in a quest. This is usually called after completion of a taskgroup.
  
 
==== Syntax ====
 
==== Syntax ====

Revision as of 20:12, 4 May 2013

Updates the description of a taskgroup in a quest. This is usually called after completion of a taskgroup.

Syntax

UpdateQuestTaskGroupDescription(Quest, TaskStepNum, "description string")

Usage

function ReturnedToStonefist(Quest, QuestGiver, Player)
	UpdateQuestTaskGroupDescription(Quest, 1, "I have won a match against one of the sparring partners.")
	AddQuestStepChat(Quest, 4, "Return to Yasha Redblade.", 1, "I am to return to Yasha Redblade near the ship's hull on Pilgrims' Landing.", 0, 4700005)
	AddQuestStepCompleteAction(Quest, 4, "ReturnToYasha")
end

This updates the taskgroup description for the first taskgroup in the quest "Stonefist's Art of Combat" after completing the third step.


Back to LUA Quest Index