a_fine_halasian_welcome.lua 1021 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Quests/FrostfangSea/a_fine_halasian_welcome.lua
  3. Script Purpose : Handles the quest "A Fine Halasian Welcome"
  4. Script Author : Sylva1n (updated by theFoof)
  5. Script Date : 2011.10.23 (2013.5.2)
  6. Zone : Frostfang Sea
  7. Quest Giver : Galinda Goodfaith
  8. Preceded by : None
  9. Followed by : Stonefist's Art of Combat
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepChat(Quest, 1, "Seek out Yasha Redblade.", 1, "I have been asked to report to Yasha Redblade in the broken ship's hull to the northeast of Galinda Goodfaith on the Pilgrims' Landing.", 0, 4700005)
  13. AddQuestStepCompleteAction(Quest, 1, "quest_complete")
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. end
  17. function Declined(Quest, QuestGiver, Player)
  18. end
  19. function quest_complete(Quest, QuestGiver, Player)
  20. GiveQuestReward(Quest, Player)
  21. end
  22. function Reload(Quest, QuestGiver, Player, Step)
  23. if Step == 1 then
  24. quest_complete(Quest, QuestGiver, Player)
  25. end
  26. end