DobbinsFallvale.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : SpawnScripts/EnchantedLands/DobbinsFallvale.lua
  3. Script Purpose : Dobbins Fallvale <Old Bog Mountain Unit>
  4. Script Author : Cynnar
  5. Script Date : 2015.02.24
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function InRange(NPC, Spawn)
  15. end
  16. function LeaveRange(NPC, Spawn)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. conversation = CreateConversation()
  21. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1020.mp3", "", "", 0, 0, Spawn)
  22. AddConversationOption(conversation, "But?", "dlg_3_1")
  23. AddConversationOption(conversation, "Not me.")
  24. StartConversation(conversation, NPC, Spawn, "I don't quite know what's going on here, but the recent aggression from the Runnyeye goblins has me worried. I wanted to help but...")
  25. if convo==4 then
  26. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1020.mp3", "", "", 0, 0, Spawn)
  27. AddConversationOption(conversation, "But?", "dlg_4_1")
  28. AddConversationOption(conversation, "Not me.")
  29. StartConversation(conversation, NPC, Spawn, "I don't quite know what's going on here, but the recent aggression from the Runnyeye goblins has me worried. I wanted to help but...")
  30. end
  31. end