BrucciusCapito.lua 687 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Freeport/BrucciusCapito.lua
  3. Script Purpose :
  4. Script Author : premierio015
  5. Script Date : 2020.04.10
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. conversation = CreateConversation()
  15. PlayFlavor(NPC, "voiceover/english/optional1/bruccius_capito/fprt_east/qst_brucciuscapito.mp3", "", "", 2213419422, 824549942, Spawn)
  16. AddConversationOption(conversation, "I must meet someone soon and must be going. Good day.")
  17. StartConversation(conversation, NPC, Spawn, "Helloo there! Can you feel it? The wind is changing direction....")
  18. end