CouncilorVemerik.lua 1.0 KB

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/NorthQeynos/CouncilorVemerik.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.10.27 05:10:30
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. Dialog.New(NPC, Spawn)
  14. Dialog.AddDialog("And a good day to you, my friend! Nothing's more enjoyable than people watching. For instance, there's an amusing lad, that fellow there seems to be in a rush, and take a gander at that lady ... er ... the point is, nimble eyes are just as important as nimble fingers. You never know what you might see!")
  15. Dialog.AddVoiceover("voiceover/english/counselor_vemerik/qey_north/counselor_vemerik000.mp3", 1163089685, 181252460)
  16. PlayFlavor(NPC,"","","hello",0,0,Spawn)
  17. Dialog.AddOption("I've got more important things to do than watch people. Good day.")
  18. Dialog.AddOption("I'll keep that in mind...")
  19. Dialog.Start()
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end