TrainerHaylMcGuinness.lua 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/TrainerHaylMcGuinness.lua
  3. Script Author : Jabantiz
  4. Script Date : 2016.09.06 09:09:52
  5. Script Purpose : Trainer Hayl McGuiness Dialogue
  6. Modified Date : 2020.04.04
  7. Modified by : premierio015
  8. Notes : Added animations
  9. --]]
  10. --[[
  11. function spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. end
  18. --]]
  19. --[[
  20. Script Name : SpawnScripts/QueensColony/TrainerHaylMcGuinness.lua
  21. Script Purpose : Trainer Hayl McGuinness <Master of Combat Training>
  22. Script Author : John Adams
  23. Script Date : 2008.09.20
  24. Script Notes : Auto-Generated Conversation from PacketParser Data
  25. --]]
  26. local TheArtOfCombat = 132
  27. function spawn(NPC)
  28. end
  29. function respawn(NPC)
  30. spawn(NPC)
  31. end
  32. function hailed(NPC, Spawn)
  33. FaceTarget(NPC, Spawn)
  34. conversation = CreateConversation()
  35. if HasCompletedQuest(Spawn, TheArtOfCombat) then
  36. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good026.mp3", "", "agree", 1881020230, 3830147813, Spawn)
  37. AddConversationOption(conversation, "Teach me the basics of combat.", "dlg_8_28")
  38. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  39. AddConversationOption(conversation, "I'll come back later.")
  40. StartConversation(conversation, NPC, Spawn, "Hello there, " .. GetName(Spawn) .. "! I'm here to teach new recruits the basics of combat. Murrar told me you show great promise!")
  41. elseif HasQuest(Spawn, TheArtOfCombat) and GetQuestStep(Spawn, TheArtOfCombat) < 4 then
  42. if GetQuestStep(Spawn, TheArtOfCombat) == 1 then
  43. -- on the first step
  44. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good026.mp3", "", "agree", 1881020230, 3830147813, Spawn)
  45. AddConversationOption(conversation, "I'd like to learn about combat so that I can help the colony.", "dlg_8_1")
  46. StartConversation(conversation, NPC, Spawn, "Hello there, " .. GetName(Spawn) .. "! I'm here to teach new recruits the basics of combat. Murrar told me you show great promise!")
  47. else
  48. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good_quest001.mp3", "", "", 1571324247, 1735764796, Spawn)
  49. if GetQuestStep(Spawn, TheArtOfCombat) == 3 then
  50. AddConversationOption(conversation, "I was victorious!", "Victorious")
  51. end
  52. AddConversationOption(conversation, "Not yet, but I will soon.")
  53. StartConversation(conversation, NPC, Spawn, "So, did you defeat the sparring partner like I asked?")
  54. end
  55. else
  56. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good026.mp3", "", "", 1881020230, 3830147813, Spawn)
  57. AddConversationOption(conversation, "Teach me the basics of combat.", "dlg_8_28")
  58. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  59. AddConversationOption(conversation, "I'll come back later.")
  60. StartConversation(conversation, NPC, Spawn, "Hello there, " .. GetName(Spawn) .. "! I'm here to teach new recruits the basics of combat. Murrar told me you show great promise!")
  61. end
  62. end
  63. function Victorious(NPC, Spawn)
  64. SetStepComplete(Spawn, TheArtOfCombat, 3)
  65. conversation = CreateConversation()
  66. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good_quest002.mp3", "", "agree", 1477689908, 1568507038, Spawn)
  67. AddConversationOption(conversation, "I'll report back to Murrar.")
  68. StartConversation(conversation, NPC, Spawn, "Great work! You've proven your worth and are ready for greater challenges. If you want further instruction later, just come see me. But right now you must report back to Murrar so that you can discover what's behind the trouble here at the colony.")
  69. end
  70. function dlg_8_1(NPC, Spawn)
  71. conversation = CreateConversation()
  72. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good_quest000.mp3", "", "agree", 861129842, 2513176543, Spawn)
  73. AddConversationOption(conversation, "How do I challenge a foe in battle?", "dlg_8_2")
  74. if HasQuest(Spawn, TheArtOfCombat) then
  75. if GetQuestStep(Spawn, TheArtOfCombat) == 1 then
  76. SetStepComplete(Spawn, TheArtOfCombat, 1)
  77. end
  78. AddConversationOption(conversation, "I will return victorious!")
  79. end
  80. StartConversation(conversation, NPC, Spawn, "Okay, let's see what you're made of. One of the nearby sparring partners to my left will be happy to test your mettle. Challenge any one of them and return to me when you've earned a victory.")
  81. end
  82. function dlg_8_2(NPC, Spawn)
  83. FaceTarget(NPC, Spawn)
  84. conversation = CreateConversation()
  85. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good003.mp3", "", "nod", 1337742058, 2404050935, Spawn)
  86. AddConversationOption(conversation, "How do I begin the battle?", "dlg_8_3")
  87. StartConversation(conversation, NPC, Spawn, "Starting combat is easy. Just use your mouse pointer to left-click on an opponent. Its name will appear in the Target window in the upper left of your screen. You can also use the Tab key to cycle through nearby targets or the F8 key to select your closest enemy.")
  88. end
  89. function dlg_8_3(NPC, Spawn)
  90. FaceTarget(NPC, Spawn)
  91. conversation = CreateConversation()
  92. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good004.mp3", "", "", 2853756515, 4008764495, Spawn)
  93. AddConversationOption(conversation, "So I can fight anyone or anything I want?", "dlg_8_4")
  94. StartConversation(conversation, NPC, Spawn, "If you're close enough to your foe and want to start hitting it with your weapon, either click your Melee Attack button on your hotbar or press the ~ key. Or you can begin by using one of your spells or combat arts to get the enemy's attention. Remember, you must be close enough to actually hit them.")
  95. end
  96. function dlg_8_4(NPC, Spawn)
  97. FaceTarget(NPC, Spawn)
  98. conversation = CreateConversation()
  99. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good005.mp3", "", "no", 1297419022, 3029770958, Spawn)
  100. AddConversationOption(conversation, "Tell me about melee combat.", "dlg_8_5")
  101. AddConversationOption(conversation, "Tell me about ranged combat.", "dlg_8_10")
  102. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "dlg_8_14")
  103. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  104. AddConversationOption(conversation, "I'll come back later.")
  105. StartConversation(conversation, NPC, Spawn, "You can fight most non-player characters and creatures that you find outside your city, whether outdoors or in dungeons. Many non-player characters in the cities are there to help or give you quests, so you can't attack some of them. If you try, you'll get a message telling you that they aren't valid targets.")
  106. end
  107. function dlg_8_5(NPC, Spawn)
  108. FaceTarget(NPC, Spawn)
  109. conversation = CreateConversation()
  110. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good006.mp3", "", "brandish", 416525203, 2657385928, Spawn)
  111. AddConversationOption(conversation, "What classes specialize in melee combat?", "dlg_8_6")
  112. StartConversation(conversation, NPC, Spawn, "Melee combat means a toe-to-toe, physical confrontation. It is a combination of auto-attack damage that happens automatically when you press the Melee Attack button on your hotbar or the ~ key and spells or combat arts that you use in close proximity to your foe.")
  113. end
  114. function dlg_8_6(NPC, Spawn)
  115. FaceTarget(NPC, Spawn)
  116. conversation = CreateConversation()
  117. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good007.mp3", "", "nod", 1651948874, 1480304616, Spawn)
  118. AddConversationOption(conversation, "Tell me how to begin a fight.", "dlg_8_2")
  119. AddConversationOption(conversation, "Tell me about ranged combat.", "dlg_8_10")
  120. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "dlg_8_14")
  121. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  122. AddConversationOption(conversation, "I'll come back later.")
  123. StartConversation(conversation, NPC, Spawn, "Sturdy fighters such as Guardians, Berserkers, Monks, and Paladins stand at the front lines of battle facing the enemy. Crafty scouts such as Swashbucklers, Rangers, Troubadors, and Dirges generally stay close to their foes as well, but prefer to launch attacks from the back or side where they are less likely to be counterattacked.")
  124. end
  125. function dlg_8_10(NPC, Spawn)
  126. FaceTarget(NPC, Spawn)
  127. conversation = CreateConversation()
  128. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good008.mp3", "", "nod", 1478105613, 895646178, Spawn)
  129. AddConversationOption(conversation, "How do I launch a ranged attack?", "dlg_8_11")
  130. StartConversation(conversation, NPC, Spawn, "Ranged combat means that you put some distance between yourself and the enemy. This can be done with weapons such as bows or throwing daggers, or with spells and arts that can be cast from a distance.")
  131. end
  132. function dlg_8_11(NPC, Spawn)
  133. FaceTarget(NPC, Spawn)
  134. conversation = CreateConversation()
  135. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good009.mp3", "", "", 4078770069, 1143811293, Spawn)
  136. AddConversationOption(conversation, "What classes specialize in ranged combat?", "dlg_8_12")
  137. StartConversation(conversation, NPC, Spawn, "If you have a ranged weapon and ammunition, you can initiate ranged combat by using the Ranged Attack button on the Abilities tab of your Knowledge Book. You can drag this key to your hotbar if you like. Remember, you must have a ranged weapon in the Ranged slot of your inventory window and the correct type of ammunition in the Ammo slot.")
  138. end
  139. function dlg_8_12(NPC, Spawn)
  140. FaceTarget(NPC, Spawn)
  141. conversation = CreateConversation()
  142. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good010.mp3", "", "nod", 4251211849, 3911610409, Spawn)
  143. AddConversationOption(conversation, "How do I tell if I can use spells or arts from a distance?", "dlg_8_13")
  144. StartConversation(conversation, NPC, Spawn, "While most classes have the ability to attack from a distance, scout classes such as Swashbucklers, Troubadors, Dirges, and particularly Rangers specialize in ranged physical attacks. Mages, priests, and paladins have spells that do damage to their foes from a distance.")
  145. end
  146. function dlg_8_13(NPC, Spawn)
  147. FaceTarget(NPC, Spawn)
  148. conversation = CreateConversation()
  149. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good011.mp3", "", "", 4022476088, 3590432929, Spawn)
  150. AddConversationOption(conversation, "Tell me how to begin a fight.", "dlg_8_2")
  151. AddConversationOption(conversation, "Tell me about melee combat.", "dlg_8_5")
  152. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "dlg_8_14")
  153. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  154. AddConversationOption(conversation, "I'll come back later.")
  155. StartConversation(conversation, NPC, Spawn, "You can right-click on a spell or art's icon and select 'Examine' to see what its range of effect is. In addition, if you target something and the icon for one of your spells or arts turns a dark red, that means the opponent is out of range of that ability.")
  156. end
  157. function dlg_8_14(NPC, Spawn)
  158. FaceTarget(NPC, Spawn)
  159. conversation = CreateConversation()
  160. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good012.mp3", "", "agree", 2647469623, 502375197, Spawn)
  161. AddConversationOption(conversation, "What do you mean by 'a worthy opponent'?", "dlg_8_15")
  162. StartConversation(conversation, NPC, Spawn, "Victory in battle can be very rewarding. Successful combat against a worthy opponent awards you experience (XP) to help you advance your level, as well as the chance at coin, usable items, and other valuables.")
  163. end
  164. function dlg_8_15(NPC, Spawn)
  165. FaceTarget(NPC, Spawn)
  166. conversation = CreateConversation()
  167. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good013.mp3", "", "nod", 3707215797, 2577902646, Spawn)
  168. AddConversationOption(conversation, "Are certain types of targets more rewarding than others?", "dlg_8_16")
  169. StartConversation(conversation, NPC, Spawn, "You don't earn rewards for defeating foes that are too far below your level. If your target has a grey name, it means it is very weak and won't provide any benefit for beating it. Talk to Trainer Marla Gilliam for more information on evaluating your opponents.")
  170. end
  171. function dlg_8_16(NPC, Spawn)
  172. FaceTarget(NPC, Spawn)
  173. conversation = CreateConversation()
  174. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good014.mp3", "", "agree", 2418682059, 3250675692, Spawn)
  175. AddConversationOption(conversation, "Tell me how to begin a fight.", "dlg_8_2")
  176. AddConversationOption(conversation, "Tell me about melee combat.", "dlg_8_5")
  177. AddConversationOption(conversation, "Tell me about ranged combat.", "dlg_8_10")
  178. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  179. AddConversationOption(conversation, "I'll come back later.")
  180. StartConversation(conversation, NPC, Spawn, "The tougher a foe, the better its chances to provide a valuable reward. Though defeating enemies alone provides nice rewards, defeating heroic enemies that require a group is even more rewarding. The very best items come from banding together multiple groups to defeat epic opponents.")
  181. end
  182. function dlg_8_17(NPC, Spawn)
  183. FaceTarget(NPC, Spawn)
  184. conversation = CreateConversation()
  185. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good015.mp3", "", "nod", 3575809563, 632788793, Spawn)
  186. AddConversationOption(conversation, "Tell me about selecting the right opponent.", "dlg_8_18")
  187. AddConversationOption(conversation, "Teach me about knowing my surroundings.", "dlg_8_21")
  188. AddConversationOption(conversation, "Tell me about using my abilities.", "dlg_8_24")
  189. AddConversationOption(conversation, "Teach me the basics of combat.", "dlg_8_28")
  190. AddConversationOption(conversation, "I'll come back later.")
  191. StartConversation(conversation, NPC, Spawn, "There are many advanced combat techniques that you will learn over time. There's no substitute for experience," .. GetName(Spawn) .. ". I'd be happy to discuss a few of these advanced aspects, such as selecting the right opponent, knowing your surroundings, and using your abilities.")
  192. end
  193. function dlg_8_18(NPC, Spawn)
  194. FaceTarget(NPC, Spawn)
  195. conversation = CreateConversation()
  196. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good016.mp3", "", "nod", 3175726067, 1849673241, Spawn)
  197. AddConversationOption(conversation, "How do I tell if an opponent is too weak or too strong for me?", "dlg_8_19")
  198. StartConversation(conversation, NPC, Spawn, "Picking the right fight is crucial to victory. A weak opponent won't provide worthwhile rewards, while an overly powerful foe will result in your defeat. You need to keep your resources in mind as well as choosing the right target.")
  199. end
  200. function dlg_8_19(NPC, Spawn)
  201. FaceTarget(NPC, Spawn)
  202. conversation = CreateConversation()
  203. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good017.mp3", "", "point", 1334502220, 1072117512, Spawn)
  204. AddConversationOption(conversation, "What resources should I be keeping an eye on?", "dlg_8_20")
  205. StartConversation(conversation, NPC, Spawn, "Targeting an opponent will show you detailed information on its overall potency. Generally speaking, you'll find the best results from fighting opponents with blue, white, or yellow names. Talk to Trainer Marla Gilliam for more information on evaluating your opponents.")
  206. end
  207. function dlg_8_20(NPC, Spawn)
  208. FaceTarget(NPC, Spawn)
  209. conversation = CreateConversation()
  210. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good018.mp3", "", "no", 4117626633, 2141014135, Spawn)
  211. AddConversationOption(conversation, "Teach me about knowing my surroundings.", "dlg_8_21")
  212. AddConversationOption(conversation, "Tell me about using my abilities.", "dlg_8_24")
  213. AddConversationOption(conversation, "Teach me the basics of combat.", "dlg_8_28")
  214. AddConversationOption(conversation, "I'll come back later.")
  215. StartConversation(conversation, NPC, Spawn, "Starting a fight when you are low on health or power is a very bad idea. Your choice of targets also depends on whether you're alone or grouped with other players. Forming a group allows you to take on tougher and more rewarding challenges than you could face alone.")
  216. end
  217. function dlg_8_21(NPC, Spawn)
  218. FaceTarget(NPC, Spawn)
  219. conversation = CreateConversation()
  220. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good019.mp3", "", "scold", 2725345993, 3739954421, Spawn)
  221. AddConversationOption(conversation, "Anything else I should watch out for?", "dlg_8_22")
  222. StartConversation(conversation, NPC, Spawn, "Keeping your surroundings in mind is crucial to victory. Fighting in areas with lots of aggressive creatures is a bad idea, because they won't hesitate to gang up on you.")
  223. end
  224. function dlg_8_22(NPC, Spawn)
  225. FaceTarget(NPC, Spawn)
  226. conversation = CreateConversation()
  227. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good020.mp3", "", "cutthroat", 4260973055, 2919672507, Spawn)
  228. AddConversationOption(conversation, "Any other tips?", "dlg_8_23")
  229. StartConversation(conversation, NPC, Spawn, "Staying too long on the exact spot where you just defeated a foe can be dangerous. Another enemy is likely to show up there soon after, which can be an unpleasant surprise if you're already in another battle.")
  230. end
  231. function dlg_8_23(NPC, Spawn)
  232. FaceTarget(NPC, Spawn)
  233. conversation = CreateConversation()
  234. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good021.mp3", "", "nod", 2035277963, 965678861, Spawn)
  235. AddConversationOption(conversation, "Tell me about selecting the right opponent.", "dlg_8_24")
  236. AddConversationOption(conversation, "Tell me about using my abilities.", "dlg_8_24")
  237. AddConversationOption(conversation, "Teach me the basics of combat.", "dlg_8_28")
  238. AddConversationOption(conversation, "I'll come back later.")
  239. StartConversation(conversation, NPC, Spawn, "You should be aware of what's going on around you. Using your mouse wheel to scroll into third person and holding down the left mouse button allows you to move the camera around your character. It's a good idea to do this when fighting in dangerous areas to make sure nothing sneaks up on you.")
  240. end
  241. function dlg_8_24(NPC, Spawn)
  242. FaceTarget(NPC, Spawn)
  243. conversation = CreateConversation()
  244. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good022.mp3", "", "no", 3488047041, 965083005, Spawn)
  245. AddConversationOption(conversation, "What do you mean?", "dlg_8_25")
  246. StartConversation(conversation, NPC, Spawn, "Successful fighting isn't about turning on your auto-attack and walking away from battle. Your odds of victory are much better if you prepare well and are active during combat. You should be using every spell or combat art that has a positive effect on your chances to win.")
  247. end
  248. function dlg_8_25(NPC, Spawn)
  249. FaceTarget(NPC, Spawn)
  250. conversation = CreateConversation()
  251. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good023.mp3", "", "agree", 3086044683, 813829457, Spawn)
  252. -- PlayFlavor keys are correct, but the VO doesn't work on Live or EMU.
  253. AddConversationOption(conversation, "What about during battle?", "dlg_8_26")
  254. StartConversation(conversation, NPC, Spawn, "Before you begin fighting, make sure you and your allies have activated all beneficial spells, also known as 'buffs,' so that you're operating at peak efficiency. Buffs can add health or power, increase your rate of regeneration, enhance your physical attributes, make you attack faster or do more damage, and more.")
  255. end
  256. function dlg_8_26(NPC, Spawn)
  257. FaceTarget(NPC, Spawn)
  258. conversation = CreateConversation()
  259. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good024.mp3", "", "nod", 2201642498, 2339371912, Spawn)
  260. AddConversationOption(conversation, "What else should I know about spells and arts?", "dlg_8_27")
  261. StartConversation(conversation, NPC, Spawn, "Whether you're a front-lines melee type or someone attacking from a distance with weapons or spells, you should be using abilities that damage your foes effectively and efficiently. Right click on your spells and arts and select 'Examine' to see details on their effects.")
  262. end
  263. function dlg_8_27(NPC, Spawn)
  264. FaceTarget(NPC, Spawn)
  265. conversation = CreateConversation()
  266. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good025.mp3", "", "point", 1394782063, 4291748674, Spawn)
  267. AddConversationOption(conversation, "Tell me about selecting the right opponent.", "dlg_8_24")
  268. AddConversationOption(conversation, "Teach me about knowing my surroundings.", "dlg_8_21")
  269. AddConversationOption(conversation, "Teach me the basics of combat.", "dlg_8_28")
  270. AddConversationOption(conversation, "I'll come back later.")
  271. StartConversation(conversation, NPC, Spawn, "Using your highest-level versions of spells and arts will be more effective than using older versions. In addition, you should be upgrading your abilities to higher ranks to make them more effective. For more details on spells and combat arts, talk to Trainer Myrrin the Magnific in the tower at the center of the colony.")
  272. end
  273. function dlg_8_28(NPC, Spawn)
  274. FaceTarget(NPC, Spawn)
  275. conversation = CreateConversation()
  276. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_hayl_mcguinness/tutorial_island02_revamp/trainers/combat/combat_good002.mp3", "", "nod", 532377949, 602663688, Spawn)
  277. AddConversationOption(conversation, "Tell me how to begin a fight.", "dlg_8_2")
  278. AddConversationOption(conversation, "Tell me about melee combat.", "dlg_8_5")
  279. AddConversationOption(conversation, "Tell me about ranged combat.", "dlg_8_10")
  280. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "dlg_8_14")
  281. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "dlg_8_17")
  282. AddConversationOption(conversation, "I'll come back later.")
  283. StartConversation(conversation, NPC, Spawn, "Many elements go into successful combat. I can teach you a few of the basics, such as how to begin a fight, the difference between melee and ranged combat, and earning rewards for victory.")
  284. end