LucillaQuietus.lua 783 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/SouthFreeport/LucillaQuietus.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.25 07:06:19
  5. Script Purpose :
  6. Script Notes : New to add missing dialog for quest "Reward For A Missing Music Box".
  7. --]]
  8. local RewardForAMissingMusicBox = 5261
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. PlayFlavor(NPC, "voiceover/english/optional1/weaponsmith_lucilla_quietus/fprt_south/100_questlucillaquietus_callout1_3d9a231a.mp3", "Either buy something or get out of the way!", "", 3790442270, 2463491720, Spawn, 0)
  14. if HasQuest(Spawn, RewardForAMissingMusicBox) then
  15. SetStepComplete(Spawn, RewardForAMissingMusicBox, 1)
  16. end
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end