report_to_the_primary.lua 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --[[
  2. Script Name : Quests/TimorousDeep/report_to_the_primary.lua
  3. Script Purpose : Handles the quest, "Report to the Primary"
  4. Script Author : Scatman
  5. Script Date : 2009.02.06
  6. Zone : Timorous Deep
  7. Quest Giver: Tykor Gi'Lok
  8. Preceded by: Curious Ore (curious_ore.lua)
  9. Followed by: Disrupting Haoaeran Studies (disrupting_haoaeran_studies.lua)
  10. --]]
  11. function Init(Quest)
  12. -- Acid-Carved Bracer
  13. -- Empowered Bracelet
  14. -- Sand-scoured Armguards
  15. -- Tykor's Bracers
  16. -- Zum'Ha's Armwraps
  17. AddQuestStepChat(Quest, 1, "I must speak with Primary Conzuk Zum'Ha in Chrykori Village, up the ramp to the north.", 1, "I must show Primary Conzuk Zum'Ha in Chrykori Village these ore samples.", 0, 2630460)
  18. AddQuestStepCompleteAction(Quest, 1, "quest_complete")
  19. end
  20. function Accepted(Quest, QuestGiver, Player)
  21. FaceTarget(QuestGiver, Player)
  22. conversation = CreateConversation()
  23. PlayFlavor(QuestGiver, "voiceover/english/rok_questvo/tykor_gi_lok/_exp04/exp04_rgn_timorous_deep/chrykori_tie/gilok/gilok007.mp3", "", "", 4113737431, 1405861806, Player)
  24. AddConversationOption(conversation, "Hopefully it will be revealed then.")
  25. StartConversation(conversation, QuestGiver, Player, "This only supports my claims. The spirocs are not so empty headed as to think this will be of any use to them... It stinks of a greater design!")
  26. end
  27. function Declined(Quest, QuestGiver, Player)
  28. end
  29. function quest_complete(Quest, QuestGiver, Player)
  30. UpdateQuestDescription(Quest, "I have shown Primary Conzuk Zum'Ha the ore sample.")
  31. GiveQuestReward(Quest, Player)
  32. end
  33. function Reload(Quest, QuestGiver, Player, Step)
  34. end