TrainerBordaGemseeker.lua 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/TrainerBordaGemseeker.lua
  3. Script Author : Zcoretri
  4. Script Date : 2015.07.30
  5. Script Purpose : Trainer Borda Gemseeker dialog
  6. Modified Date : 2020.04.03
  7. Modified by : premierio015
  8. Notes : Added all correct voiceover options, added animations.
  9. : redid hailed section, added in to turn in collections if you have them, and redouced code from repetiveness
  10. --]]
  11. function spawn(NPC)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function hailed(NPC, Spawn)
  17. FaceTarget(NPC, Spawn)
  18. if HasCollectionsToHandIn(Spawn) then
  19. HandInCollections(Spawn)
  20. end
  21. conversation = CreateConversation()
  22. math.randomseed(os.time())
  23. choice = math.random (1, 3)
  24. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..choice.."_1061.mp3", "", "beckon", 0, 0, Spawn)
  25. AddConversationOption(conversation, "I'd like to learn about collections.", "dlg_0_1")
  26. AddConversationOption(conversation, "I'd like to learn about harvesting.","dlg_0_4")
  27. AddConversationOption(conversation, "I've no time to chat right now.")
  28. StartConversation(conversation, NPC, Spawn, "Don't be shy! Come closer, m'dear, and I'd be happy to answer any questions you have about collections or harvesting!")
  29. end
  30. function dlg_0_1(NPC, Spawn)
  31. FaceTarget(NPC, Spawn)
  32. PlayAnimation(NPC, 12028)
  33. conversation = CreateConversation()
  34. AddConversationOption(conversation, "What happens next?", "dlg_0_2")
  35. StartConversation(conversation, NPC, Spawn, "Collectibles are seen as a glow rising from the ground. If you're close enough, you'll notice a question mark above it. Double-click or right-click the glow and select 'harvest.' The item you gather will go into your inventory. You can examine this item in your inventory.")
  36. end
  37. function dlg_0_2(NPC, Spawn)
  38. FaceTarget(NPC, Spawn)
  39. PlayAnimation(NPC, 11882)
  40. conversation = CreateConversation()
  41. AddConversationOption(conversation, "How do I complete the collection?", "dlg_0_3")
  42. StartConversation(conversation, NPC, Spawn, "Your quest journal will open up automatically to the Collections tab. Use the Add button to add that item to a collection. As you travel through Norrath, you'll find different collectibles in different areas of the world. Some items can be part of more than one collection.")
  43. end
  44. function dlg_0_3(NPC, Spawn)
  45. FaceTarget(NPC, Spawn)
  46. PlayAnimation(NPC, 11909)
  47. conversation = CreateConversation()
  48. AddConversationOption(conversation, "I'd like to learn about harvesting and gathering now.", "dlg_0_4")
  49. AddConversationOption(conversation, "Thanks for the information.")
  50. StartConversation(conversation, NPC, Spawn, "Continue to gather and examine all the items you find until all the icons of that collection are highlighted in your quest journal. Then you'll be able to turn the completed collection in to a collector who will reward you with some experience. If you already have a collectible in all collections that call for it, you can sell it to a merchant or trade it to another player.")
  51. end
  52. function dlg_0_4(NPC, Spawn)
  53. FaceTarget(NPC, Spawn)
  54. conversation = CreateConversation()
  55. AddConversationOption(conversation, "What are harvestables used for?", "dlg_0_5")
  56. StartConversation(conversation, NPC, Spawn, "Harvestables come in five forms, each tied to its own respective skill. These skills can be seen by opening your Skills window by pressing the P key, clicking on the Skills tab and selecting your General skills. Rocks increase mining, logs increase foresting, dens increase trapping, fish increase fishing, and plants increase gathering.")
  57. end
  58. function dlg_0_5(NPC, Spawn)
  59. FaceTarget(NPC, Spawn)
  60. PlayAnimation(NPC, 11882)
  61. conversation = CreateConversation()
  62. AddConversationOption(conversation, "Why do I need to increase my harvesting skills?", "dlg_0_6")
  63. StartConversation(conversation, NPC, Spawn, "The items found through harvesting are the basic building blocks of tradeskills. They cannot be sold to vendors, but they can be traded or sold to other players who need them for their respective tradeskill professions. Some components that can be found through harvesting are very rare and can be worth quite a bit of money to tradeskillers.")
  64. end
  65. function dlg_0_6(NPC, Spawn)
  66. FaceTarget(NPC, Spawn)
  67. conversation = CreateConversation()
  68. AddConversationOption(conversation, "I'd like to learn about collections now.", "dlg_0_1")
  69. AddConversationOption(conversation, "Thanks for the information.")
  70. StartConversation(conversation, NPC, Spawn, "The skill required to harvest in a given area increases along with the difficulty of the area. If you find that you are unable to harvest in an area you should return to a less difficult area and practice.")
  71. end