ArrelSilvertongue.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/ArrelSilvertongue.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.12 12:06:14
  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. if GetLevel(Spawn)==9 and GetClass(Spawn)==31 then
  14. Dialog.New(NPC, Spawn)
  15. Dialog.AddDialog("Hail nothing! Don't speak that foolishness to me! I can tell there is more to you than just adventuring. Ready to put your skills to a real test?")
  16. Dialog.AddVoiceover("voiceover/english/arrell_silvertongue/qey_harbor/arrellsilvertongue001.mp3",1721901739, 3238691394)
  17. Dialog.AddOption("Not today. Thanks.")
  18. Dialog.Start()
  19. else
  20. Dialog.New(NPC, Spawn)
  21. Dialog.AddDialog("Oh bother! Is it really going to start hailing? I do so hate ill weather...")
  22. -- Dialog.AddVoiceover("voiceover/english/arrell_silvertongue/qey_harbor/arrellsilvertongue000.mp3",1721901739, 3238691394)
  23. PlayFlavor(NPC,"voiceover/english/voice_emotes/greetings/greetings_3_1024.mp3","","sigh",0,0,Spawn)
  24. Dialog.AddOption("No, not that kind of hail!")
  25. Dialog.Start()
  26. end
  27. end
  28. function respawn(NPC)
  29. spawn(NPC)
  30. end