Vandis.lua 726 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Starcrest/Vandis.lua
  3. Script Purpose : Vandis
  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/vandis/qey_village02/vandis.mp3", "", "", 555689921, 1189263301, Spawn)
  17. AddConversationOption(conversation, "I'm not going to say anything. I can see you are losing well enough on your own.")
  18. StartConversation(conversation, NPC, Spawn, "Can't you see I'm in the middle of a game of King's Field? And no, you can't help!")
  19. end