oh_deer_me.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : Quests/CastleviewHamlet/oh_deer_me.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.01.29 05:01:02
  5. Script Purpose :
  6. Zone : CastleviewHamlet
  7. Quest Giver: Eireneith Alannia
  8. Preceded by: None
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepKill(Quest, 1, "I need to reduce the deer population.", 10, 100, "I need to reduce the glade deer population in Antonica.", 175, 120265,121374)
  13. AddQuestStepCompleteAction(Quest, 1, "Turnin")
  14. UpdateQuestZone(Quest,"Antonica")
  15. end
  16. function Accepted(Quest, QuestGiver, Player)
  17. -- Add dialog here for when the quest is accepted
  18. end
  19. function Declined(Quest, QuestGiver, Player)
  20. -- Add dialog here for when the quest is declined
  21. end
  22. function Deleted(Quest, QuestGiver, Player)
  23. -- Remove any quest specific items here when the quest is deleted
  24. end
  25. function Turnin(Quest, QuestGiver, Player)
  26. -- The following UpdateQuestStepDescription and UpdateTaskGroupDescription are not needed, parser adds them for completion in case stuff needs to be moved around
  27. UpdateQuestStepDescription(Quest, 1, "I have reduced the Antonica deer population.")
  28. UpdateQuestTaskGroupDescription(Quest, 1, "I have removed ten deer from the population in Antonica.")
  29. UpdateQuestZone(Quest,"Castleview Hamlet")
  30. AddQuestStepChat(Quest, 2, "I need to return to Eireneith.", 1,"I need report to Eireneith Alannia in Castleview.", 175, 2360036)
  31. AddQuestStepCompleteAction(Quest, 2, "QuestComplete")
  32. end
  33. function QuestComplete(Quest, QuestGiver, Player)
  34. UpdateQuestStepDescription(Quest, 2, "I have returned to Eireneith.")
  35. UpdateQuestTaskGroupDescription(Quest, 2, "I have reported the deer control taken place in Antonica to Eireneith Alannia.")
  36. UpdateQuestDescription(Quest, "I've done as Eireneith Alannia requested and brought down the glade deer population. She was nice enough to reward me for taking care of the task.")
  37. GiveQuestReward(Quest, Player)
  38. end
  39. function Reload(Quest, QuestGiver, Player, Step)
  40. if Step == 1 then
  41. Turnin(Quest, QuestGiver, Player)
  42. end
  43. if Step == 2 then
  44. QuestComplete(Quest, QuestGiver, Player)
  45. end
  46. end