MirinZilishia.lua 735 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/ScaleYard/MirinZilishia.lua
  3. Script Purpose : Mirin Zilishia
  4. Script Author : John Adams
  5. Script Date : 2008.10.01
  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/voice_emotes/greetings/greetings_1_1028.mp3", "", "", 0, 0, Spawn)
  17. AddConversationOption(conversation, "I'm not sure I want to know what those are. Bye.")
  18. StartConversation(conversation, NPC, Spawn, "If you bother me, I will act upon the thoughts that have been coursing through my head from the moment I saw you.")
  19. end