Acrudegnollscrawling.lua 839 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : ItemScripts/Acrudegnollscrawling.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.05.13 05:05:06
  5. Script Purpose :
  6. :
  7. --]]
  8. quest = 5644
  9. function examined(Item, Player)
  10. conversation = CreateConversation()
  11. if CanReceiveQuest(Player,quest) then
  12. AddConversationOption(conversation, "Warn Walcott.","QuestStart")
  13. end
  14. AddConversationOption(conversation, "Put the scroll away.","CloseItemConversation")
  15. StartDialogConversation(conversation, 2, Item, Player, "The crude scrawling seems to be a map. It shows four crop fields with the name Walcott scrawled on it. Just to the west of the fields is the drawing of a gate and castle beyond a wall.")
  16. end
  17. function QuestStart(Item,Player)
  18. CloseItemConversation(Item,Player)
  19. OfferQuest(nil, Player, quest)
  20. end