welcome_to_norrath.lua 1008 B

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : Quests/QueensColny/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, "I need to speak with Murrar Shar. He is at the entrance to Myrrin's Tower in the center of the Colony.", 1, "Speak to Murrar Shar, outside the entrance of Myrrin's Tower in the center of the colony.", 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 spoke with Murrar Shar.")
  21. GiveQuestReward(Quest, Player)
  22. end
  23. function Reload(Quest, QuestGiver, Player, Step)
  24. end