MirinZilishia.lua 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/ScaleYard/MirinZilishia.lua
  3. Script Purpose : Mirin Zilishia
  4. Script Author : torsten
  5. Script Date : 2022.07.15
  6. Script Notes :
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. local AntiusPackage = 5651
  10. local WillWorkforWar = 5703
  11. function spawn(NPC)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function hailed(NPC, Spawn)
  17. if GetQuestStep(Spawn, AntiusPackage) == 1 then
  18. SetStepComplete(Spawn, AntiusPackage, 1)
  19. end
  20. if GetQuestStep(Spawn, WillWorkforWar) == 2 then
  21. SetStepComplete(Spawn, WillWorkforWar, 2)
  22. end
  23. Dialog1(NPC, Spawn)
  24. end
  25. function Dialog1(NPC, Spawn)
  26. FaceTarget(NPC, Spawn)
  27. Dialog.New(NPC, Spawn)
  28. Dialog.AddDialog("If you bother me, I will act upon the thoughts that have been coursing through my head from the moment I saw you.")
  29. Dialog.AddVoiceover("voiceover/english/voice_emotes/greetings/greetings_1_1028.mp3", 0, 0)
  30. Dialog.AddOption("I'm not sure I want to know what those are. Bye.")
  31. Dialog.Start()
  32. end