DeVarun'sPack.lua 1.3 KB

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : ItemScripts/DelVarun'sPack.lua
  3. Script Purpose : Examine for quest update
  4. Script Author : Shatou
  5. Script Date : 1/10/2020
  6. Script Notes :
  7. --]]
  8. local NEWS_FOR_GERMAIN_QUEST_ID = 520
  9. function examined(Item, Player)
  10. conversation = CreateConversation()
  11. AddConversationOption(conversation, "Read the notes.", "ReadTheNotes")
  12. StartDialogConversation(conversation, 2, Item, Player, "The satchel contains various items that Del Varun may have needed out in the field. Among these items are some sheets of paper bound together, quite possibly Varun's notes.")
  13. end
  14. function ReadTheNotes(Item, Player)
  15. conversation = CreateConversation()
  16. SetStepComplete(Player, NEWS_FOR_GERMAIN_QUEST_ID, 2)
  17. AddConversationOption(conversation, "Put the notes away")
  18. StartDialogConversation(conversation, 2, Item, Player, "\"Something is certainly strange, but I have no idea what is wrong. The animals have all been acting strange lately. There is an area just north of the pond I have been scouting near that may provide more information. There is a small group of plants surrounded by a strange aura. I haven't seen any animals near the plants, so I am not yet sure if it is safe. I will check it out from a bit closer tomorrow, once I'm finished with the area south of the pond.\"")
  19. end