RoseliaGoldencrust.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : SpawnScripts/EnchantedLands/RoseliaGoldencrust.lua
  3. Script Purpose : Roselia Goldencrust <Pie Maker>
  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. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function InRange(NPC, Spawn)
  14. end
  15. function LeaveRange(NPC, Spawn)
  16. end
  17. function hailed(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. conversation = CreateConversation()
  20. PlayFlavor(NPC, "roselia_goldencrust/_exp03/deity/bristlebane/roselia/roselia_goldencrust004.mp3", "", "", 925124071, 4075374228, Spawn)
  21. AddConversationOption(conversation, "How's business?", "dlg_0_1")
  22. AddConversationOption(conversation, "Nevermind.")
  23. StartConversation(conversation, NPC, Spawn, "Yes dear? How may I help you?")
  24. end
  25. function dlg_0_1(NPC, Spawn)
  26. FaceTarget(NPC, Spawn)
  27. conversation = CreateConversation()
  28. PlayFlavor(NPC, "roselia_goldencrust/_exp03/deity/bristlebane/roselia/roselia_goldencrust005.mp3", "", "", 1048944955, 1278695573, Spawn)
  29. AddConversationOption(conversation, "How do you know?", "dlg_0_2")
  30. StartConversation(conversation, NPC, Spawn, "Oh... I suppose it could be better. This location is not exactly ideal. Most of the people passing through here are adventurers like yourself who don't seem too interested in buying pies. I get along well enough I suppose. What's important is that I'm back here in the Misty Thicket and I'm sure we'll be able to wrestle our homeland away from the grips of the foul evil that has come to plague these lands.")
  31. end
  32. function dlg_0_2(NPC, Spawn)
  33. FaceTarget(NPC, Spawn)
  34. conversation = CreateConversation()
  35. PlayFlavor(NPC, "roselia_goldencrust/_exp03/deity/bristlebane/roselia/roselia_goldencrust006.mp3", "", "", 3761071007, 78243092, Spawn)
  36. AddConversationOption(conversation, "Indeed. We shall see!")
  37. StartConversation(conversation, NPC, Spawn, "Well, with the return of Bristlebane, it's a sure sign that now is the time for us to finally take back our homeland.")
  38. end