strange_mutations.lua 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. --[[
  2. Script Name : Quests/Antonica/strange_mutations.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.05.16 04:05:43
  5. Script Purpose :
  6. Zone : Antonica
  7. Quest Giver:
  8. Preceded by: None
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. SetQuestFeatherColor(Quest, 3)
  13. SetQuestRepeatable(Quest)
  14. AddQuestStepKill(Quest, 1, "Kill the mutated rats", 13, 100, "Something has caused the rats in this region to change.", 611, 120176)
  15. AddQuestStepCompleteAction(Quest, 1, "QuestComplete")
  16. end
  17. function Accepted(Quest, QuestGiver, Player)
  18. if HasItem(Player,1001093) then
  19. RemoveItem(Player,1001093,1)
  20. end
  21. SendMessage(Player,"You roll up the drawing and stuff it in your quest satchle.")
  22. end
  23. function Declined(Quest, QuestGiver, Player)
  24. -- Add dialog here for when the quest is declined
  25. end
  26. function Deleted(Quest, QuestGiver, Player)
  27. -- Remove any quest specific items here when the quest is deleted
  28. end
  29. function QuestComplete(Quest, QuestGiver, Player)
  30. -- The following UpdateQuestStepDescription and UpdateTaskGroupDescription are not needed, parser adds them for completion in case stuff needs to be moved around
  31. UpdateQuestStepDescription(Quest, 1, "I've killed enough mutated rats")
  32. UpdateQuestTaskGroupDescription(Quest, 1, "I have eliminated some of the mutated rats.")
  33. UpdateQuestDescription(Quest, "I wonder what could have caused these strange mutations...")
  34. GiveQuestReward(Quest, Player)
  35. end
  36. function Reload(Quest, QuestGiver, Player, Step)
  37. if Step == 1 then
  38. QuestComplete(Quest, QuestGiver, Player)
  39. end
  40. end