welcome_to_norrath.lua 909 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : Quests/QueensColony/welcome_to_norrath.lua
  3. Script Author : Zcoretri
  4. Script Date : 2015.08.03
  5. Script Purpose : Handles the quest, "Welcome to Norrath"
  6. Zone : The Queens Colony
  7. Quest Giver: Proximity
  8. Preceded by: None
  9. Followed by: The Art of Combat
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepChat(Quest, 1, "Speak to Murrar Shar, outside the entrance of Myrrin's Tower in the center of the colony.", 1, "", 0, 2530076)
  13. AddQuestStepCompleteAction(Quest, 1, "step1_complete")
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. end
  17. function Declined(Quest, QuestGiver, Player)
  18. end
  19. function step1_complete(Quest, QuestGiver, Player)
  20. UpdateQuestDescription(Quest, "I have spoken with Murrar Shar.")
  21. GiveQuestReward(Quest, Player)
  22. end
  23. function Reload(Quest, QuestGiver, Player, Step)
  24. end