ABloodsabermeddlernote.lua 1.4 KB

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : ItemScripts/ABloodsabermeddlernote.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.10.03 03:10:52
  5. Script Purpose :
  6. :
  7. --]]
  8. local AnIntriguingEye = 5366 -- An Intriguing Eye Quest
  9. function examined(Item, Player)
  10. conversation = CreateConversation()
  11. AddConversationOption(conversation, "Take the time to decipher the words. ", "decipher")
  12. AddConversationOption(conversation, "Stop inspecting", "CloseItemConversation")
  13. StartDialogConversation(conversation, 2, Item, Player, "The note is scrawled in blackish blood. It is nearly indecipherable. You have no time to read it. ")
  14. end
  15. function decipher(Item, Player)
  16. if GetQuestStep(Player, AnIntriguingEye) == 2 then
  17. SetStepComplete(Player, AnIntriguingEye, 2)
  18. end
  19. conversation = CreateConversation()
  20. AddConversationOption(conversation, "Stop inspecting", "CloseItemConversation")
  21. StartDialogConversation(conversation, 2, Item, Player, "Humans have returned to these catacombs. The hands, once exiled, have secretly returned. The coin with the eye has been taken by a hairfoot. He was sneaky, nothing but a pen wielder. He should have perished at our claws and fangs. It is most valuable. It will help us find their new hideout among the tunnels of the undercity. We must have it back! We cannot have our resurrection stopped by the meddling of former Qeynosians. For the Plaguebringer they must be stopped.")
  22. end