No categories assigned
LUA:UpdateQuestTaskGroupDescription
LUA:AllFunctions - UpdateQuestTaskGroupDescription
Return to: LUA:AllFunctions | Tutorials | Portal | Forum | Project Manager | Bug Tracker
Updates the description of a taskgroup in a quest. This is usually called after completion of a taskgroup.
Syntax
UpdateQuestTaskGroupDescription(param1, param2, param3)
Parameters
- Required - param1 (Quest), param2 (TaskStepNum), param3 ("Description string")
- param1 is the quest you wish to update
- param2 is the task group number of the quest you wish to update
- param3 is the new description of the task group you are updating
Example
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.