No categories assigned

LUA:GiveQuestReward

Revision as of 17:04, 3 April 2009 by Xanibunib (talk | contribs) (New page: '''Syntax'''<br> GiveQuestReward(Quest, Player)<br> '''Explanation'''<br> As you could guess this is the function that will give the player the quest reward. '''Example'''<br> function...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Syntax
GiveQuestReward(Quest, Player)

Explanation
As you could guess this is the function that will give the player the quest reward.

Example

 function Step3_Quest_Complete(Quest, QuestGiver, Player)
   UpdateQuestTaskGroupDescription(Quest, 1, "I've located the box of stolen alchemy components and returned them to Vrim. She is most pleased!")
   GiveQuestReward(Quest, Player)
 end



Back to LUA Functions