LuvileBinlee.lua 872 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Starcrest/LuvileBinlee.lua
  3. Script Purpose : Luvile Binlee
  4. Script Author : John Adams
  5. Script Date : 2008.09.23
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  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/optional5/luvile_binlee/qey_village02/luvilebinlee000.mp3", "", "", 2956622106, 3546014069, Spawn)
  17. AddConversationOption(conversation, "That's a bit deep for me. Sorry for bothering your meditations.")
  18. StartConversation(conversation, NPC, Spawn, "I'm contemplating how this tree symbolizes a person's life ... We all come from a solid trunk grounded in history, and the tree branches represent the random choices we make in life...")
  19. end