ThervenSenshun.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/ForestRuins/ThervenSenshun.lua
  3. Script Purpose : Therven Senshun
  4. Script Author : John Adams
  5. Script Date : 2008.09.19
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. conversation = CreateConversation()
  11. AddConversationOption(conversation, "Not yet.", "dlg_2_1")
  12. StartConversation(conversation, NPC, Spawn, "Did you get the shells?")
  13. if convo==3 then
  14. AddConversationOption(conversation, "Yes, here they are.", "dlg_3_1")
  15. StartConversation(conversation, NPC, Spawn, "Did you get the shells?")
  16. end
  17. end
  18. function dlg_3_1(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. conversation = CreateConversation()
  21. AddConversationOption(conversation, "Glad to assist.", "dlg_3_2")
  22. StartConversation(conversation, NPC, Spawn, "Thanks! I appreciate it! You've really helped me a lot.")
  23. end
  24. --[[ raw_conversations
  25. PlayFlavor(NPC, "", "This stuff is much harder to work with than I anticipated.", "", 1689589577, 4560189)
  26. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1022.mp3", "", "", 0, 0)
  27. --]]