YolaSindlefop.lua 710 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/YolaSindlefop.lua
  3. Script Purpose : Yola Sindlefop
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  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/yola_sindlefop/qey_village06/yolasindlefop000.mp3", "", "", 2042293032, 669099653, Spawn)
  17. AddConversationOption(conversation, "Sorry to hear that.")
  18. StartConversation(conversation, NPC, Spawn, "Hello there! Isn't this a lovely spot? It's not the vale, but I was too young to really remember much when we left anyway.")
  19. end