ElmaLowe.lua 801 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Freeport/ElmaLowe.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.20 07:07:48
  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/elma_lowe/fprt_north/elmalowe000.mp3", "", "", 3610495310, 1230069492, Spawn)
  14. AddConversationOption(conversation, "I'll take a look around.")
  15. StartConversation(conversation, NPC, Spawn, "Come in. Come in. Welcome to the Jade Tiger's Den, the finest tavern in all of Freeport. Feel free to browse our menu. I personally guarantee that we serve only the highest-quality food and brews.")
  16. end
  17. function respawn(NPC)
  18. end