TorligtheAlchemist.lua 920 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/NorthFreeport/TorligtheAlchemist.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.19 01:06:20
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. Dialog1(NPC, Spawn)
  16. end
  17. function Dialog1(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. Dialog.New(NPC, Spawn)
  20. Dialog.AddDialog("Shhhh! Don't distract me ... I need a steady hand to ensure I combine this potion correctly. One mistake and the blast will reduce this building to rubble. Deal with my apprentices if you want to buy something.")
  21. Dialog.AddVoiceover("voiceover/english/torlig_the_alchemist/fprt_north/torlig_the_alchemist.mp3", 4161370754, 1751042550)
  22. Dialog.AddOption("Fine then, I will leave you to your perfumes and snake oils.")
  23. Dialog.Start()
  24. end