further_assistance_to_chrykori_island.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : Quests/TimorousDeep/further_assistance_to_chrykori_island.lua
  3. Script Purpose : Handles the quest, "Further Assistance to Chrykori Island"
  4. Script Author : Scatman
  5. Script Date : 2009.02.06
  6. Zone : Timorous Deep
  7. Quest Giver: Primary Conzuk Zum'Ha
  8. Preceded by: Disrupting Haoaeran Rituals (disrupting_haoaeran_rituals.lua)
  9. Followed by: None
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepChat(Quest, 1, "I need to report to Secondary Arozik Sky'Ki on the Trythec Loft to the southwest.", 1, ".", 0, 2630081)
  13. AddQuestStepCompleteAction(Quest, 1, "quest_complete")
  14. end
  15. function Accepted(Quest, QuestGiver, Player)
  16. FaceTarget(QuestGiver, Player)
  17. conversation = CreateConversation()
  18. PlayFlavor(QuestGiver, "voiceover/english/rok_questvo/primary_conzuk_zum_ha/_exp04/exp04_rgn_timorous_deep/chrykori_tie/zumha/zumha008.mp3", "", "", 1945530557, 2152827601, Player)
  19. AddConversationOption(conversation, "I will do as I can.")
  20. StartConversation(conversation, QuestGiver, Player, "You are a fine soldier, obedient and skilled, and I am sure you will help him in whatever way you can. Correct?")
  21. end
  22. function Declined(Quest, QuestGiver, Player)
  23. end
  24. function quest_complete(Quest, QuestGiver, Player)
  25. UpdateQuestDescription(Quest, "I have reported to Secondary Arozik Sky'Ki.")
  26. GiveQuestReward(Quest, Player)
  27. end
  28. function Reload(Quest, QuestGiver, Player, Step)
  29. end