a_pioneer_without_a_wagon.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : Quests/Everfrost/a_pioneer_without_a_wagon.lua
  3. Script Author : Flunklesnarkin
  4. Script Date : 2016.02.07 14:18:25
  5. Script Purpose :
  6. Zone : Everfrost
  7. Quest Giver: Li Ning Ventur
  8. Preceded by: The Stories of Everfrost
  9. Followed by: The Gift of a Token
  10. --]]
  11. function Init(Quest)
  12. AddQuestRewardCoin(Quest, math.random(30,70), math.random(50,90), math.random(3,4), 0)
  13. AddQuestStep(Quest, 1, "I need to retrieve crates of the family's belongings from the ocean floor", 8, 100, "I should recover crates full of the Venturs' possessions from the ocean floor.")
  14. AddQuestStepCompleteAction(Quest, 1, "GotCrates")
  15. end
  16. function Accepted(Quest, QuestGiver, Player)
  17. FaceTarget(QuestGiver, Player)
  18. conversation = CreateConversation()
  19. AddConversationOption(conversation, "I am glad to help.")
  20. AddConversationOption(conversation, "I am sure your gratitude will be expressed in some sort of coin reward.")
  21. StartConversation(conversation, QuestGiver, Player, "You cannot know what it means to hear that.")
  22. end
  23. function Declined(Quest, QuestGiver, Player)
  24. end
  25. function Reload(Quest, QuestGiver, Player, Step)
  26. end
  27. function Deleted(Quest, QuestGiver, Player)
  28. end