LandwynVelamir.lua 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. --[[
  2. Script Name : LandwynVelamir.lua
  3. Script Purpose : Landwyn Velamir
  4. Script Author : Jabantiz
  5. Script Date : 08/29/2019
  6. Script Notes : Auto-Generated from a chat log using SpawnScriptDesigner
  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. FaceTarget(NPC, Spawn)
  16. Dialog.New(NPC, Spawn)
  17. Dialog.AddDialog("Do you know love, my friend?")
  18. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_1_1034.mp3", 0, 0)
  19. Dialog.AddOption("It seems not as well as you.", "dlg_2")
  20. Dialog.AddOption("I have no time for love.")
  21. Dialog.Start()
  22. --[[ Say() from this NPC
  23. Orphaned PlayFlavors
  24. PlayFlavor(NPC, "", "I may have lost love, but I have grown as a person.", "", 1689589577, 4560189, Spawn)
  25. PlayFlavor(NPC, "", "Returning to me with information of love?", "", 1689589577, 4560189, Spawn)
  26. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1034.mp3", "", "", 0, 0, Spawn)
  27. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1034.mp3", "", "", 0, 0, Spawn)
  28. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1034.mp3", "", "", 0, 0, Spawn)
  29. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1012.mp3", "", "", 0, 0, Spawn)
  30. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1012.mp3", "", "", 0, 0, Spawn)
  31. PlayFlavor(NPC, "", "", "", 0, 0, Spawn)
  32. --]]
  33. end
  34. function dlg_2(NPC, Spawn)
  35. FaceTarget(NPC, Spawn)
  36. Dialog.New(NPC, Spawn)
  37. Dialog.AddDialog("How lucky I am. I have been holding this gift for my love for quite some time, but, alas, my duties keep me here. How sad it is that this flower shall wilt in the wait. Still, I am lucky, for her beauty shall never wane.")
  38. Dialog.AddVoiceover("", "", 0)
  39. Dialog.AddOption("Oh, what does she look like?", "dlg_3")
  40. Dialog.AddOption("Well, good luck to you. Bye.")
  41. Dialog.Start()
  42. end
  43. function dlg_3(NPC, Spawn)
  44. FaceTarget(NPC, Spawn)
  45. Dialog.New(NPC, Spawn)
  46. Dialog.AddDialog("How does one compare the beauty of a goddess using the words of mere mortals? Her hair is the color of the rising sun, containing the most glorious hues of the dawn. Her skin is akin to porcelain, flawless and immaculate. Her eyes are the green of a springtime meadow, with small bursts like the yellow of daisies in their center. Her lithe body is soft and curved like the waves of the sea. I only wish my eyes could witness her beauty once again.")
  47. Dialog.AddVoiceover("", "", 0)
  48. Dialog.AddOption("She sounds beautiful. Your flowers are wilted though. Let me gather some new ones for you.", "dlg_4")
  49. Dialog.AddOption("Good luck giving her the present. Bye.")
  50. Dialog.Start()
  51. end
  52. function dlg_4(NPC, Spawn)
  53. FaceTarget(NPC, Spawn)
  54. Dialog.New(NPC, Spawn)
  55. Dialog.AddDialog("That would be splendid! Last I saw, there were some beneath a shaded tree north of here.")
  56. Dialog.AddVoiceover("", "", 0)
  57. Dialog.AddOption("I will find them.")
  58. Dialog.Start()
  59. end