ThaenSevellos.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/BeggarsCourt/ThaenSevellos.lua
  3. Script Purpose : Thaen Sevellos
  4. Script Author : John Adams (updated by Cynnar 2018.06.14 11:06:08)
  5. Script Date : 2009.04.10
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. local HALFELF_MENTOR_QUEST_4 = 317 -- Thaen Sevellos
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. if HasQuest(Spawn, HALFELF_MENTOR_QUEST_4) then
  17. if GetQuestStep(Spawn, HALFELF_MENTOR_QUEST_4) == 1 then
  18. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/thaen_sevellos/fprt_hood04/qst_thaen_onquestfree_b253d1ee.mp3", "I never did get to tell Jalya how I felt... Please... go. I am safe, thank you... but please go.", "", 2501604791, 291772649, Spawn)
  19. elseif GetQuestStep(Spawn, HALFELF_MENTOR_QUEST_4) == 2 then
  20. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/thaen_sevellos/fprt_hood04/qst_thaen_free_d04696a6.mp3", "I can leave now, but Jalya's fate has already been determined.", "", 3783338515, 2630298839, Spawn)
  21. end
  22. end
  23. end