StreetWitchAzreana.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/StonestairByway/StreetWitchAzreana.lua
  3. Script Purpose : Street Witch Azreana
  4. Script Author : torsten
  5. Script Date : 2022.07.18
  6. Script Notes :
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. local OgreWatch = 5676
  10. function spawn(NPC)
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. Dialog1(NPC, Spawn)
  17. end
  18. function Dialog1(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. Dialog.New(NPC, Spawn)
  21. Dialog.AddDialog("Hmmm ... yes ... this is interesting ... interesting indeed...")
  22. Dialog.AddVoiceover("voiceover/english/streetwitch/fprt_hood02/street_witch_azreana.mp3", 3291813723, 1080848971)
  23. if GetQuestStep(Spawn, OgreWatch) == 1 then
  24. Dialog.AddOption("I have a package for you. It is supposedly very important.","Dialog2")
  25. end
  26. Dialog.AddOption("Uhh... sure.")
  27. Dialog.Start()
  28. end
  29. function Dialog2(NPC, Spawn)
  30. FaceTarget(NPC, Spawn)
  31. Dialog.New(NPC, Spawn)
  32. Dialog.AddDialog("Yes! Just as I've forseen it... A web... deep at work. Not ogres... Secrets... prying in the dark... A meeting of more than what can be seen... I must study this further. You have aided more than you know by delievering this. Thank you. ")
  33. SetStepComplete(Spawn, OgreWatch, 1)
  34. Dialog.AddOption("Sounds like something I should discuss with Orian about sometime.")
  35. Dialog.Start()
  36. end