LordQuinnClothspinner.lua 744 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Antonica/LordQuinnClothspinner.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.26 07:06:46
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. PlayFlavor(NPC, "voiceover/english/lord_quinn_clothspinner/antonica/lordquinn000.mp3", "", "", 396621608, 1119860372, Spawn)
  13. local conversation = CreateConversation()
  14. AddConversationOption(conversation, "I will not rest with such inhospitality. ")
  15. StartConversation(conversation, NPC, Spawn, "Welcome to the Keep of the Ardent Needle. You may rest here until I see fit to send you on your way. ")
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end