TheBloodoftheBearPartOne.lua 1.2 KB

1234567891011121314151617181920
  1. --[[
  2. Script Name : ItemScripts/TheBloodoftheBearPartOne.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.09 08:07:41
  5. Script Purpose :
  6. :
  7. --]]
  8. function examined(Item, Player)
  9. conversation = CreateConversation()
  10. AddConversationOption(conversation, "Entry One", "page2")
  11. AddConversationOption(conversation, "Put book away.", "CloseItemConversation")
  12. StartDialogConversation(conversation, 2, Item, Player, "This book relates a legend of the Northmen and how they defeated the invading Hordes of Inferno during the Age of War.")
  13. end
  14. function page2(Item, Player)
  15. conversation = CreateConversation()
  16. AddConversationOption(conversation, "Put book away.", "CloseItemConversation")
  17. StartDialogConversation(conversation, 2, Item, Player, "In the time of Growth, when the birds return to the trees and the sun rises higher in the sky, the children of the Northlands look to the awakening of the bears as the final signal that Growth is upon them. Hungry from their long sleep, the bears come closer to the villages and towns. Therefore, each village has a family whose duty is to ensure the bears do not come into the village and threaten them.")
  18. end