CaptainRillian.lua 594 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/Freeport/CaptainRillian.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.04.24 06:04:09
  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. AddConversationOption(conversation, "Goodbye.")
  14. StartConversation(conversation, NPC, Spawn, "Unless you have a trade manifest manifest that need approval, I need you to keep moving. All Hail the Overlord!")
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end