LurinaGalla.lua 910 B

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/BeggarsCourt/LurinaGalla.lua
  3. Script Purpose : Lurina Galla
  4. Script Author : torsten
  5. Script Date : 2022.07.17
  6. Script Notes :
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. local RunningForACandidate = 5666
  10. function spawn(NPC)
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. if GetQuestStep(Spawn, RunningForACandidate) == 1 then
  17. SetStepComplete(Spawn, RunningForACandidate, 1)
  18. end
  19. Dialog1(NPC, Spawn)
  20. end
  21. function Dialog1(NPC, Spawn)
  22. FaceTarget(NPC, Spawn)
  23. Dialog.New(NPC, Spawn)
  24. Dialog.AddDialog("You had better leave before my husband gets home. I'm not supposed to have guests while he's not around.")
  25. Dialog.AddVoiceover("voiceover/english/lurina_galla/fprt_hood04/std_lurina_galla.mp3", 2277358416, 3185524841)
  26. Dialog.AddOption("I guess I'll leave then.")
  27. Dialog.Start()
  28. end