TorligtheAlchemist.lua 883 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Freeport/TorligtheAlchemist.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.19 02:07:18
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. conversation = CreateConversation()
  13. PlayFlavor(NPC, "voiceover/english/torlig_the_alchemist/fprt_north/torlig_the_alchemist.mp3", "", "", 4161370754, 1751042550, Spawn)
  14. AddConversationOption(conversation, "Fine then, I will leave you to your perfumes and snake oils.")
  15. StartConversation(conversation, NPC, Spawn, "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.")
  16. end
  17. function respawn(NPC)
  18. end