anincriminatingletter.lua 1.3 KB

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : ItemScripts/anincriminatingletter.lua
  3. Script Author : cynnar
  4. Script Date : 2023.11.21 03:11:06
  5. Script Purpose :
  6. :
  7. --]]
  8. local EliminateGeraufl = 5929
  9. function examined(Item, Player)
  10. conversation = CreateConversation()
  11. if not HasQuest(Player, EliminateGeraufl) then
  12. OfferQuest(nil, Player, EliminateGeraufl)
  13. AddConversationOption(conversation, "continue reading", "nextpage")
  14. StartDialogConversation(conversation, 2, Item, Player, "Kath -\nWe'er on our way. The frogloks here in Qeynos are pleased with our attempts to rescue their brethren over on your side of the world. We cannot allow Lucan's tyranny to encompass an entire race, and dominate their destiny.")
  15. end
  16. end
  17. function nextpage(Item, Player)
  18. conversation = CreateConversation()
  19. AddConversationOption(conversation, "put the note away", "CloseItemConversation")
  20. StartDialogConversation(conversation, 2, Item, Player, "Your efforts on that front will soon be bolstered by another group of our best. Once they break out Geraufl we will be able to concentrate on the larger task at hand: freeing their kind form their pens in Cazic-Thule, a task which will no doubt be much harder than the one we currently face. - M.")
  21. end