HuntingtheHuntresses.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : Quests/ThunderingSteppes/HuntingtheHuntresses.lua
  3. Script Author : Jabantiz
  4. Script Date : 2015.05.09 06:05:41
  5. Script Purpose :
  6. Zone : ThunderingSteppes
  7. Quest Giver: Click barrel at (217, -1, -159)
  8. Preceded by: None
  9. Followed by: None
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepKill(Quest, 1, "I need to slay fifteen Amazon huntresses in the Thundering Steppes.", 15, 100, "The Amazon huntresses in the Thundering Steppes are too dangerous to just allow to roam freely. They must be slain for the good of all who come through the area.", 611, 2490138)
  13. AddQuestStepCompleteAction(Quest, 1, "QuestComplete")
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. local con = CreateConversation()
  17. AddConversationOption(con, "I will slay them.", "Close")
  18. AddConversationOption(con, "exit", "Close")
  19. StartDialogConversation(con, 1, QuestGiver, Player, 'Looking inside the barrel you find a large horseshoe with a scroll attached to it that reads: "This horseshoe belonged to the Amazon huntress that attacked my family caravan on a trip to Windstalker Village. It is all that I have left of that terrible day - Bjorn Stormpeak." The Amazon huntresses should be destroyed!')
  20. end
  21. function Declined(Quest, QuestGiver, Player)
  22. end
  23. function Deleted(Quest, QuestGiver, Player)
  24. end
  25. function QuestComplete(Quest, QuestGiver, Player)
  26. GiveQuestReward(Quest, Player)
  27. end
  28. function Reload(Quest, QuestGiver, Player, Step)
  29. end