visiting_the_windstalker_grave.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : Quests/TheElddarGrove/visiting_the_windstalker_grave.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.05.04 02:05:58
  5. Script Purpose :
  6. Zone : TheElddarGrove
  7. Quest Giver:
  8. Preceded by : None
  9. Followed by : None
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepLocation(Quest, 1, "I need to find Holly Windstalker's grave in Antonica.", 4, "I should go to Holly Windstalker's grave to see if there is any truth to the rumor.", 2339,-1855.35 -2.78 -624.56)
  13. AddQuestStepCompleteAction(Quest, 1, "QuestComplete")
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. -- Add dialog here for when the quest is accepted
  17. end
  18. function Declined(Quest, QuestGiver, Player)
  19. -- Add dialog here for when the quest is declined
  20. end
  21. function Deleted(Quest, QuestGiver, Player)
  22. -- Remove any quest specific items here when the quest is deleted
  23. end
  24. function QuestComplete(Quest, QuestGiver, Player)
  25. -- The following UpdateQuestStepDescription and UpdateTaskGroupDescription are not needed, parser adds them for completion in case stuff needs to be moved around
  26. UpdateQuestStepDescription(Quest, 1, "I found Holly Windstalker's grave.")
  27. UpdateQuestTaskGroupDescription(Quest, 1, "I found Holly Windstalker's grave.")
  28. UpdateQuestDescription(Quest, "I found Holly Windstalker's grave on the hill overlooking Windstalker Village. I didn't see any sign of the grave being disturbed though, I did remove a dirty mug near the site. The rangers may just be overly cautious as of late. <br> <br>")
  29. GiveQuestReward(Quest, Player)
  30. end
  31. function Reload(Quest, QuestGiver, Player, Step)
  32. if Step == 1 then
  33. QuestComplete(Quest, QuestGiver, Player)
  34. end
  35. end