the_hidden_wanted_poster.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : Quests/TheCryptofBetrayal/the_hidden_wanted_poster.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.11.02 05:11:31
  5. Script Purpose :
  6. Zone : TheCryptofBetrayal
  7. Quest Giver:
  8. Preceded by: None
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepKill(Quest, 1, "I need to slay fifteen Bloodsaber sentinels in the Crypt of Betrayal.", 15, 100, "Bloodsaber sentinels are running loose in the Crypt of Betrayal. The city of Qeynos wants them destroyed, so I shall carry out this task.", 611, 2010004)
  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 have slalin the Bloodsaber sentinels")
  27. UpdateQuestTaskGroupDescription(Quest, 1, "I have slain many of the Bloodsaber sentinels in the Crypt of Betrayal.")
  28. UpdateQuestDescription(Quest, "I have helped the city of Qeynos by bringing the Bloodsaber sentinels to justice.")
  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