ScholarMilnik.lua 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. --[[
  2. Script Name : SpawnScripts/ThunderingSteppes/ScholarMilnik.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.18 03:06:30
  5. Script Purpose :
  6. :
  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. Dialog3(NPC, Spawn)
  16. end
  17. function Dialog1(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. Dialog.New(NPC, Spawn)
  20. Dialog.AddDialog("What a wonderful adventure tale. Here take this for your bravery!")
  21. Dialog.AddOption("Thanks.")
  22. Dialog.Start()
  23. end
  24. function Dialog2(NPC, Spawn)
  25. FaceTarget(NPC, Spawn)
  26. Dialog.New(NPC, Spawn)
  27. Dialog.AddDialog("All day I sit here and watch the boats leave. I long for the days when I was younger, and could accomplish such journeys myself. In fact, I'd be willing to part with some of my old gear just to learn the tales of these new discoveries and adventures. Have you been on any of these boats? Tell me a tale.")
  28. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_3_1006.mp3", 0, 0)
  29. Dialog.AddOption("I traveled across the Sea of Mist.", "Dialog1")
  30. Dialog.AddOption("I'm sorry, I have nothing new to share with you.")
  31. Dialog.Start()
  32. end
  33. function Dialog3(NPC, Spawn)
  34. FaceTarget(NPC, Spawn)
  35. Dialog.New(NPC, Spawn)
  36. Dialog.AddDialog("All day I sit here and watch the boats leave. I long for the days when I was younger, and could accomplish such journeys myself. In fact, I'd be willing to part with some of my old gear just to learn the tales of these new discoveries and adventures. Have you been on any of these boats? Tell me a tale.")
  37. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_3_1006.mp3", 0, 0)
  38. Dialog.AddOption("I'm sorry, I have nothing new to share with you.")
  39. Dialog.Start()
  40. end
  41. function Dialog4(NPC, Spawn)
  42. FaceTarget(NPC, Spawn)
  43. Dialog.New(NPC, Spawn)
  44. Dialog.AddDialog("All day I sit here and watch the boats leave. I long for the days when I was younger, and could accomplish such journeys myself. In fact, I'd be willing to part with some of my old gear just to learn the tales of these new discoveries and adventures. Have you been on any of these boats? Tell me a tale.")
  45. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_2_1006.mp3", 0, 0)
  46. Dialog.AddOption("I'm sorry, I have nothing new to share with you.")
  47. Dialog.Start()
  48. end
  49. function Dialog5(NPC, Spawn)
  50. FaceTarget(NPC, Spawn)
  51. Dialog.New(NPC, Spawn)
  52. Dialog.AddDialog("All day I sit here and watch the boats leave. I long for the days when I was younger, and could accomplish such journeys myself. In fact, I'd be willing to part with some of my old gear just to learn the tales of these new discoveries and adventures. Have you been on any of these boats? Tell me a tale.")
  53. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_1_1006.mp3", 0, 0)
  54. Dialog.AddOption("I traveled across the Fanged Sea.", "Dialog1")
  55. Dialog.AddOption("I'm sorry, I have nothing new to share with you.")
  56. Dialog.Start()
  57. end
  58. function Dialog6(NPC, Spawn)
  59. FaceTarget(NPC, Spawn)
  60. Dialog.New(NPC, Spawn)
  61. Dialog.AddDialog("All day I sit here and watch the boats leave. I long for the days when I was younger, and could accomplish such journeys myself. In fact, I'd be willing to part with some of my old gear just to learn the tales of these new discoveries and adventures. Have you been on any of these boats? Tell me a tale.")
  62. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_2_1040.mp3", 0, 0)
  63. Dialog.AddOption("I'm sorry, I have nothing new to share with you.")
  64. Dialog.Start()
  65. end
  66. function Dialog7(NPC, Spawn)
  67. FaceTarget(NPC, Spawn)
  68. Dialog.New(NPC, Spawn)
  69. Dialog.AddDialog("All day I sit here and watch the boats leave. I long for the days when I was younger, and could accomplish such journeys myself. In fact, I'd be willing to part with some of my old gear just to learn the tales of these new discoveries and adventures. Have you been on any of these boats? Tell me a tale.")
  70. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_1_1006.mp3", 0, 0)
  71. Dialog.AddOption("I'm sorry, I have nothing new to share with you.")
  72. Dialog.Start()
  73. end