a_note_from_the_qeynos_quartermaster.lua 1.1 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : Quests/Antonica/a_note_from_the_qeynos_quartermaster.lua
  3. Script Purpose : Handles the quest, "High Shaman of the Rockpaw"
  4. Script Author : Scatman
  5. Script Date : 2009.10.18
  6. Zone : The Caves
  7. Quest Giver: A Note from the Qeynos Quartermaster - Adventures in Antonica
  8. Preceded by: Elements of a Ritual (elements_of_a_ritual.lua)
  9. Followed by:
  10. --]]
  11. function Init(Quest)
  12. --AddQuestStepKill(Quest, 1, "I need to take the summoning staff to the large skull on the level just above Consul Bree. Once there I need to place the staff in the skull to summon the High Shaman.", 1, 100, "I need to summon Zen'Durath and take his head.", 1220, 1970075)
  13. --AddQuestStepCompleteAction(Quest, 1, "Step1_Complete_KilledZenDurath")
  14. end
  15. function Declined(Quest, QuestGiver, Player)
  16. end
  17. function Step1_Complete_SpokeWithEmma(Quest, QuestGiver, Player)
  18. -- A Note from the Qeynos Quartermaster - Adventures in Antonica
  19. while HasItem(Player, 2156) do
  20. RemoveItem(Player, 2156)
  21. end
  22. end
  23. function Reload(Quest, QuestGiver, Player, Step)
  24. end