valeans_stolen_books.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : Quests/CastleviewHamlet/valeans_stolen_books.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.01.25 03:01:07
  5. Script Purpose :
  6. Zone : CastleviewHamlet
  7. Quest Giver: Innkeeper Valean
  8. Preceded by: None
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepZoneLoc(Quest, 1, "I must search for Valean's books.", 3, "I need to seek out the stolen books within the Down Below section of the catacombs. ", 11, -13,0.8, -5.93,834)
  13. AddQuestStepCompleteAction(Quest, 1, "DownBelow")
  14. UpdateQuestZone(Quest, "The Down Below")
  15. end
  16. function Accepted(Quest, QuestGiver, Player)
  17. PlayFlavor(QuestGiver,"","","thanks",0,0,Player)
  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 DownBelow(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 discovered Valean's stolen book in the Down Below. ")
  28. UpdateQuestTaskGroupDescription(Quest, 1, "I discovered Valean's stolen book in the Down Below.")
  29. UpdateQuestZone(Quest, "Castleview Hamlet")
  30. AddQuestStepChat(Quest, 2, "I need to return to Valean.", 1, "I need to tell Valean that his books are being sold in the catacombs.", 0, 2360024)
  31. AddQuestStepCompleteAction(Quest, 2, "QuestComplete")
  32. end
  33. function QuestComplete(Quest, QuestGiver, Player)
  34. UpdateQuestStepDescription(Quest, 2, "I returned to Valean")
  35. UpdateQuestTaskGroupDescription(Quest, 2, "I told Valean about his books in the Down Below.")
  36. UpdateQuestDescription(Quest, "I have discovered Innkeepers Valean's stolen books in the catacombs. I relayed the information to the Valean and he has given me a reward.")
  37. GiveQuestReward(Quest, Player)
  38. end
  39. function Reload(Quest, QuestGiver, Player, Step)
  40. if Step == 1 then
  41. DownBelow(Quest, QuestGiver, Player)
  42. end
  43. if Step == 2 then
  44. QuestComplete(Quest, QuestGiver, Player)
  45. end
  46. end