RollustheSly.lua 534 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/CrowsTomb/RollustheSly.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.10.04 06:10:30
  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, "What? Nevermind.")
  14. StartConversation(conversation, NPC, Spawn, "To the void with you! You made me coin purse lighter!")
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end