ModiniteZVol.lua 882 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/NorthFreeport/ModiniteZVol.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.19 01:06:16
  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. Dialog1(NPC, Spawn)
  16. end
  17. function Dialog1(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. Dialog.New(NPC, Spawn)
  20. Dialog.AddDialog("Only through intense suffering can one be purified of all weaknesses and frailty. The Threshing separates the weak willed from the mighty in faith. Pray that you are not found wanting when your personal Threshing comes...")
  21. Dialog.AddVoiceover("voiceover/english/modinite_z_vol/fprt_north/modinitezvol001.mp3", 285079217, 2983261764)
  22. Dialog.AddOption("I'll take your advice on it. ")
  23. Dialog.Start()
  24. end