RanikCalman.lua 785 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Freeport/RanikCalman.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.12 02:07:40
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local conversation = CreateConversation()
  13. PlayFlavor(NPC, "voiceover/english/merchant_ranik_calman/fprt_east/ranikcalman000.mp3", "", "", 2125799617, 970361473, Spawn)
  14. AddConversationOption(conversation, "Thanks for the info.")
  15. StartConversation(conversation, NPC, Spawn, "Aye. Welcome to the Seafarer's Roost. Been out at sea for a while, or just stopping through? Put some coin in my hand and I'll sell ye drinks until ye sail out again.")
  16. end
  17. function respawn(NPC)
  18. end