MusicianZwena.lua 939 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/ElddarGrove/MusicianZwena.lua
  3. Script Purpose : Musician Zwena
  4. Script Author : John Adams
  5. Script Date : 2008.09.28
  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_1035.mp3", "", "", 0, 0, Spawn)
  17. AddConversationOption(conversation, "Not today, thanks.", "dlg_2_1")
  18. StartConversation(conversation, NPC, Spawn, "Perhaps I could entertain you with a song?")
  19. if convo==3 then
  20. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1035.mp3", "", "", 0, 0, Spawn)
  21. AddConversationOption(conversation, "Not today, thanks.", "dlg_3_1")
  22. StartConversation(conversation, NPC, Spawn, "Perhaps I could entertain you with a song?")
  23. end
  24. end