dont_get_it_in_aroziks_eyes.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : Quests/TimorousDeep/dont_get_it_in_aroziks_eyes.lua
  3. Script Purpose : Handles the quest, "Don't Get It in Arozik's Eyes"
  4. Script Author : Scatman
  5. Script Date : 2009.02.22
  6. Zone : Timorous Deep
  7. Quest Giver: Tertiary Mak'Ki
  8. Preceded by: Don't Get It in Arozik's Eyes (dont_get_it_in_aroziks_eyes.lua)
  9. Followed by: None
  10. --]]
  11. function Init(Quest)
  12. AddQuestStepChat(Quest, 1, "I need to give these acid glands to Secondary Arozik Sky'Ki. I can find him in Trythec Loft, south west of Chrykori Village.", 1, ".", 111, 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/tertiary_mak_ki/_exp04/exp04_rgn_timorous_deep/chrykori_tie/makki/makki004.mp3", "", "", 117800882, 151216823, Player)
  19. AddConversationOption(conversation, "All right.")
  20. StartConversation(conversation, QuestGiver, Player, "I'm sure he'll put these to good use. Thank you for your help. I think I will keep a few on hand to continue studying them for other potential applications.")
  21. end
  22. function Declined(Quest, QuestGiver, Player)
  23. end
  24. function quest_complete(Quest, QuestGiver, Player)
  25. UpdateQuestDescription(Quest, "I have delivered the rustbeast acid to Secondary Arozik Sky'Ki.")
  26. GiveQuestReward(Quest, Player)
  27. end
  28. function Reload(Quest, QuestGiver, Player, Step)
  29. end