Aves.lua 716 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Nettleville/Aves.lua
  3. Script Purpose : Aves
  4. Script Author : Scatman
  5. Script Date : 2009.08.12
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. conversation = CreateConversation()
  16. PlayFlavor(NPC, "voiceover/english/aves/qey_village01/aves000.mp3", "", "", 3237492483, 2034262045, Spawn)
  17. AddConversationOption(conversation, "Um... I don't even know who your brother is. I think I'll leave you alone")
  18. StartConversation(conversation, NPC, Spawn, "Shhh! Keep your voice down. Unless my brother sent you, I suggest you find another place to wait for the ferry.")
  19. end