SpiritofMarrsChosen.lua 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --[[
  2. Script Name : SpawnScripts/SpiritsoftheLost/SpiritofMarrsChosen.lua
  3. Script Purpose : Spirit of Marr's Chosen
  4. Script Author : neatz09
  5. Script Date : 2023.04.10
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. Say(NPC, "Im a fuckin froglok motherfucker.")
  16. end
  17. function Dialog1(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. Dialog.New(NPC, Spawn)
  20. Dialog.AddDialog("I fear that the most difficult part of your path is yet to come. Now that you have come to aid me, surely all the denizens of this foul place will come to aid the master.")
  21. Dialog.AddOption("Which master? Venekor?", "Dialog2")
  22. Dialog.Start()
  23. end
  24. function Dialog2(NPC, Spawn)
  25. FaceTarget(NPC, Spawn)
  26. Dialog.New(NPC, Spawn)
  27. Dialog.AddDialog("You know of the scaled demon then. For centuries I have been kept here. I cannot truly be free until Venekor releases me from this place, and I do not believe he will do so willingly. You must slay him, and I will be free.")
  28. Dialog.AddOption("We will do what we can.", "Dialog4")
  29. Dialog.Start()
  30. end
  31. function Dialog3(NPC, Spawn)
  32. FaceTarget(NPC, Spawn)
  33. Dialog.New(NPC, Spawn)
  34. Dialog.AddDialog("I can scarcely believe that there are those who are mighty enough to challenge those who have kept me sequestered here. Have you come at the behest of our race, or are you merely here seeking treasure?")
  35. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_3_1028.mp3", 0, 0)
  36. Dialog.AddOption("We have come to free you. What must be done?", "Dialog1")
  37. Dialog.Start()
  38. end
  39. function Dialog4(NPC, Spawn)
  40. FaceTarget(NPC, Spawn)
  41. Dialog.New(NPC, Spawn)
  42. Dialog.AddDialog("Beware, for he will have called up some of his most vengeful watchers to protect that which he must hold locked away from Norrath. You must not fall to the Achiole! Should you manage to defeat Venekor on the field of battle, I will once again be able to join those of my former race within the Feerrott.")
  43. Dialog.AddOption("Soon you shall be free.")
  44. Dialog.Start()
  45. end