Trtsin.lua 653 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Trtsin.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.12 03:07:04
  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, "trtsin/fprt_south/trainer_brigand001.mp3", "", "", 3359790206, 3110964091, Spawn)
  14. AddConversationOption(conversation, "Just looking around.")
  15. StartConversation(conversation, NPC, Spawn, "Greetings, " .. GetName(Spawn) .. " What brings you to the docks today?")
  16. end
  17. function respawn(NPC)
  18. end