No categories assigned

LUA:UpdateQuestDescription

Revision as of 17:37, 3 May 2013 by Thefoof (talk | contribs) (Created page with "Updates the description of a quest. This is usually called after completion of a quest. ==== Syntax ==== UpdateQuestDescription(Quest, "Description string") ==== Usage ==== <pr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Syntax

UpdateQuestDescription(Quest, "Description string")

Usage

function quest_complete(Quest, QuestGiver, Player)
	UpdateQuestDescription(Quest, "I have brought the ore samples to Tykor Gi'Lok.")
	GiveQuestReward(Quest, Player)
end

This updates the quest description for the quest "Curious Ore" after completing the final step.


Back to LUA Quest Index