12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- --[[
- Script Name : wisp-er_sweet_nothings.lua
- Script Purpose : Handles the quest, "Wisp-er Sweet Nothings"
- Script Author : QuestParser (Replace this)
- Script Date : 16.05.2021
- Script Notes : Auto generated with QuestParser.
- Zone : Commonlands
- Quest Giver :
- Preceded by : None
- Followed by : None
- --]]
- function Init(Quest)
- AddQuestStepKill(Quest, 1, "Kill wisps for their essence", 10, 70, "I have offered to help Mooshga get wisp essences for her wisp tofu.", 145, 330161, 330163)
- AddQuestStepCompleteAction(Quest, 1, "Step1Complete")
- end
- function Accepted(Quest, QuestGiver, Player)
- FaceTarget(QuestGiver, Player)
- local conversation = CreateConversation()
- AddConversationOption(conversation, "Ok, I'll be right back.")
- StartConversation(conversation, QuestGiver, Player, "Wisp tofu is delicious!")
- end
- function Declined(Quest, QuestGiver, Player)
- -- Add dialog here for when the quest is declined
- end
- function Deleted(Quest, QuestGiver, Player)
- -- Remove any quest specific items here when the quest is deleted
- end
- function Step1Complete(Quest, QuestGiver, Player)
- UpdateQuestStepDescription(Quest, 1, "I have collected ten wisp essences.")
- UpdateQuestTaskGroupDescription(Quest, 1, "I have Mooshga's wisp essences.")
- AddQuestStepChat(Quest, 2, "I have the essences Mooshga wanted", 1, "I should return to Mooshga outside of the Freeport gates.", 11, 331133)
- AddQuestStepCompleteAction(Quest, 2, "QuestComplete")
- end
- function QuestComplete(Quest, QuestGiver, Player)
- -- The following UpdateQuestStepDescription and UpdateTaskGroupDescription are not needed, parser adds them for completion in case stuff needs to be moved around
- UpdateQuestStepDescription(Quest, 2, "I have returned to Mooshga.")
- UpdateQuestTaskGroupDescription(Quest, 2, "I have returned to Mooshga.")
- UpdateQuestDescription(Quest, "I collected ten wisp essences and returned to Mooshga.")
- GiveQuestReward(Quest, Player)
- end
- function Reload(Quest, QuestGiver, Player, Step)
- if Step == 1 then
- Step1Complete(Quest, QuestGiver, Player)
- elseif Step == 2 then
- QuestComplete(Quest, QuestGiver, Player)
- end
- end
|