TrainerDargFrostwind.lua 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. --[[
  2. Script Name : Trainer Darg Frostwind.lua
  3. Script Purpose : Combat Trainer on Outpost of the Overlord
  4. Script Author : Scatman (Updated by Cynnar 2018.09.23 11.32.10)
  5. Script Date : 2008.09.07
  6. Script Notes :
  7. --]]
  8. --Quest ID's
  9. local TheArtOfCombat = 363
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. conversation = CreateConversation()
  13. if HasQuest(Spawn, 492) and GetQuestStep(Spawn, 492) == 3 then
  14. AddConversationOption(conversation, "Do you know anyone named Charles Arker? He's a very famous hero.", "CharlesArker")
  15. end
  16. if HasCompletedQuest(Spawn, TheArtOfCombat) then
  17. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind001.mp3", "", "", 4099559600, 3648787893, Spawn)
  18. AddConversationOption(conversation, "What can you teach me about combat?", "LearnAboutCombat")
  19. StartConversation(conversation, NPC, Spawn, "Greetings, " .. GetName(Spawn) .. ". I've been stationed here at the outpost to teach new recruits the finer points of combat. After all, it's our duty to honor the Overlord by achieving legendary victories in his glorious name.")
  20. elseif HasQuest(Spawn, TheArtOfCombat) and GetQuestStep(Spawn, TheArtOfCombat) < 4 then
  21. if GetQuestStep(Spawn, TheArtOfCombat) == 1 then
  22. -- on the first step
  23. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind001.mp3", "", "salute_freeport", 4099559600, 3648787893, Spawn)
  24. AddConversationOption(conversation, "What can you teach me about combat?", "LearnAboutCombat")
  25. StartConversation(conversation, NPC, Spawn, "Greetings, " .. GetName(Spawn) .. ". I've been stationed here at the outpost to teach new recruits the finer points of combat. After all, it's our duty to honor the Overlord by achieving legendary victories in his glorious name.")
  26. else
  27. if GetQuestStep(Spawn, TheArtOfCombat) == 3 then
  28. AddConversationOption(conversation, "I defeated one of the sparring partners.", "Victorious")
  29. end
  30. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind_initial001.mp3", "", "", 3438807645, 3037995135, Spawn)
  31. AddConversationOption(conversation, "Not yet, but I will soon.")
  32. StartConversation(conversation, NPC, Spawn, "Have you defeated the sparring partner yet?")
  33. end
  34. else
  35. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind001.mp3", "", "", 4099559600, 3648787893, Spawn)
  36. AddConversationOption(conversation, "What can you teach me about combat?", "LearnAboutCombat")
  37. StartConversation(conversation, NPC, Spawn, "Greetings, " .. GetName(Spawn) .. ". I've been stationed here at the outpost to teach new recruits the finer points of combat. After all, it's our duty to honor the Overlord by achieving legendary victories in his glorious name.")
  38. end
  39. end
  40. function Victorious(NPC, Spawn)
  41. FaceTarget(NPC, Spawn)
  42. SetStepComplete(Spawn, TheArtOfCombat, 3)
  43. conversation = CreateConversation()
  44. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind_quest001.mp3", "", "", 86781152, 1169988088, Spawn)
  45. AddConversationOption(conversation, "Is there anything else I can do?", "ReturnToTayil")
  46. StartConversation(conversation, NPC, Spawn, "Good. The stronger you are the more use you are to us.")
  47. end
  48. function ReturnToTayil(NPC, Spawn)
  49. FaceTarget(NPC, Spawn)
  50. conversation = CreateConversation()
  51. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind_quest002.mp3", "", "", 1230472892, 2272326902, Spawn)
  52. AddConversationOption(conversation, "I will go speak with her.")
  53. StartConversation(conversation, NPC, Spawn, "I'm sure of it! Go speak with Tayil N'Velex, she is just south of Sythor's Spire.")
  54. end
  55. function LearnAboutCombat(NPC, Spawn)
  56. FaceTarget(NPC, Spawn)
  57. conversation = CreateConversation()
  58. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind_quest000.mp3", "", "nod", 2841640734, 3529617772, Spawn)
  59. AddConversationOption(conversation, "Tell me how to begin a fight.", "ChallengeFoe")
  60. if HasQuest(Spawn, TheArtOfCombat) then
  61. if GetQuestStep(Spawn, TheArtOfCombat) == 1 then
  62. SetStepComplete(Spawn, TheArtOfCombat, 1)
  63. end
  64. AddConversationOption(conversation, "I will return victorious!")
  65. end
  66. StartConversation(conversation, NPC, Spawn, "Very well. The nearby sparring partners to my left are all looking to fight. They may hurt you, but they won't kill you. Return to me once you've bested one of them in combat.")
  67. end
  68. function ChallengeFoe(NPC, Spawn)
  69. FaceTarget(NPC, Spawn)
  70. conversation = CreateConversation()
  71. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind003.mp3", "", "", 351947717, 288851730, Spawn)
  72. AddConversationOption(conversation, "How do I begin the battle?", "BeginBattle")
  73. 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.")
  74. end
  75. function BeginBattle(NPC, Spawn)
  76. FaceTarget(NPC, Spawn)
  77. conversation = CreateConversation()
  78. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind004.mp3", "", "", 898388945, 3212674311, Spawn)
  79. AddConversationOption(conversation, "So I can fight anyone or anything I want?", "FightAnything")
  80. 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.")
  81. end
  82. function FightAnything(NPC, Spawn)
  83. FaceTarget(NPC, Spawn)
  84. conversation = CreateConversation()
  85. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind005.mp3", "", "", 316074774, 2036579965, Spawn)
  86. AddConversationOption(conversation, "Tell me about melee combat.", "MeleeCombat")
  87. AddConversationOption(conversation, "Tell me about ranged combat.", "RangeCombat")
  88. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "CombatRewards")
  89. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "AspectsOfCombat")
  90. AddConversationOption(conversation, "I'll come back later.")
  91. 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.")
  92. end
  93. function MeleeCombat(NPC, Spawn)
  94. FaceTarget(NPC, Spawn)
  95. conversation = CreateConversation()
  96. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind006.mp3", "", "", 589533624, 3601190139, Spawn)
  97. AddConversationOption(conversation, "What classes specialize in melee combat?", "MeleeClasses")
  98. 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.")
  99. end
  100. function MeleeClasses(NPC, Spawn)
  101. FaceTarget(NPC, Spawn)
  102. conversation = CreateConversation()
  103. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind007.mp3", "", "", 2775277419, 241586674, Spawn)
  104. AddConversationOption(conversation, "Tell me how to begin a fight.", "BeginBattle")
  105. AddConversationOption(conversation, "Tell me about ranged combat.", "RangeCombat")
  106. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "CombatRewards")
  107. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "AspectsOfCombat")
  108. AddConversationOption(conversation, "I'll come back later.")
  109. 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.")
  110. end
  111. function RangeCombat(NPC, Spawn)
  112. FaceTarget(NPC, Spawn)
  113. conversation = CreateConversation()
  114. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind008.mp3", "", "", 2757586190, 3183393393, Spawn)
  115. AddConversationOption(conversation, "How do I launch a ranged attack?", "BeginRangedCombat")
  116. 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.")
  117. end
  118. function BeginRangedCombat(NPC, Spawn)
  119. FaceTarget(NPC, Spawn)
  120. conversation = CreateConversation()
  121. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind009.mp3", "", "", 714558264, 1505806898, Spawn)
  122. AddConversationOption(conversation, "What classes specialize in ranged combat?", "RangeClasses")
  123. 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.")
  124. end
  125. function RangeClasses(NPC, Spawn)
  126. FaceTarget(NPC, Spawn)
  127. conversation = CreateConversation()
  128. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind010.mp3", "", "", 3793580571, 76138183, Spawn)
  129. AddConversationOption(conversation, "How do I tell if I can use spells or arts from a distance?", "SpellsOrArtsAtDistance")
  130. 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.")
  131. end
  132. function SpellsOrArtsAtDistance(NPC, Spawn)
  133. FaceTarget(NPC, Spawn)
  134. conversation = CreateConversation()
  135. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind011.mp3", "", "", 836156120, 3927966266, Spawn)
  136. AddConversationOption(conversation, "Tell me how to begin a fight.", "BeginFight")
  137. AddConversationOption(conversation, "Tell me about melee combat.", "MeleeCombat")
  138. AddConversationOption(conversation, "What kind of rewards can I earn in battle?", "CombatRewards")
  139. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "AspectsOfCombat")
  140. AddConversationOption(conversation, "I'll come back later.")
  141. 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.")
  142. end
  143. function CombatRewards(NPC, Spawn)
  144. FaceTarget(NPC, Spawn)
  145. conversation = CreateConversation()
  146. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind012.mp3", "", "", 3227230541, 1094360763, Spawn)
  147. AddConversationOption(conversation, "What do you mean by 'a worthy opponent'?", "WorthyOpponent")
  148. 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.")
  149. end
  150. function WorthyOpponent(NPC, Spawn)
  151. FaceTarget(NPC, Spawn)
  152. conversation = CreateConversation()
  153. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind013.mp3", "", "", 4205213467, 4000330517, Spawn)
  154. AddConversationOption(conversation, "Are certain types of targets more rewarding than others?", "MoreRewarding")
  155. 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 Anna Winston for more information on evaluating your opponents.")
  156. end
  157. function MoreRewarding(NPC, Spawn)
  158. FaceTarget(NPC, Spawn)
  159. conversation = CreateConversation()
  160. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind014.mp3", "", "", 2594073574, 99097516, Spawn)
  161. AddConversationOption(conversation, "Tell me how to begin a fight.", "BeginFight")
  162. AddConversationOption(conversation, "Tell me about melee combat.", "MeleeCombat")
  163. AddConversationOption(conversation, "Tell me about ranged combat.", "RangeCombat")
  164. AddConversationOption(conversation, "Teach me more advanced aspects of combat.", "AspectsOfCombat")
  165. AddConversationOption(conversation, "I'll come back later.")
  166. 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.")
  167. end
  168. function AspectsOfCombat(NPC, Spawn)
  169. FaceTarget(NPC, Spawn)
  170. conversation = CreateConversation()
  171. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind015.mp3", "", "", 1380380758, 346612034, Spawn)
  172. AddConversationOption(conversation, "Tell me about selecting the right opponent.", "RightOpponent")
  173. AddConversationOption(conversation, "Teach me about knowing my surroundings.", "KnowSurroundings")
  174. AddConversationOption(conversation, "Tell me about using my abilities.", "UsingAbilities")
  175. AddConversationOption(conversation, "Teach me the basics of combat.", "CombatBasics")
  176. AddConversationOption(conversation, "I'll come back later.")
  177. StartConversation(conversation, NPC, Spawn, "You'll learn many advanced combat techniques 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.")
  178. end
  179. function RightOpponent(NPC, Spawn)
  180. FaceTarget(NPC, Spawn)
  181. conversation = CreateConversation()
  182. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind016.mp3", "", "", 4103736528, 1424079812, Spawn)
  183. AddConversationOption(conversation, "How do I tell if an opponent is too weak or too strong for me?", "WeakStrongOpponent")
  184. 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.")
  185. end
  186. function WeakStrongOpponent(NPC, Spawn)
  187. FaceTarget(NPC, Spawn)
  188. conversation = CreateConversation()
  189. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind017.mp3", "", "", 1757690835, 3459787443, Spawn)
  190. AddConversationOption(conversation, "What resources should I be keeping an eye on?", "WatchResources")
  191. 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.")
  192. end
  193. function WatchResources(NPC, Spawn)
  194. FaceTarget(NPC, Spawn)
  195. conversation = CreateConversation()
  196. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind018.mp3", "", "", 3585763044, 1432114558, Spawn)
  197. AddConversationOption(conversation, "Teach me about knowing my surroundings.", "KnowSurroundings")
  198. AddConversationOption(conversation, "Tell me about using my abilities.", "UsingAbilities")
  199. AddConversationOption(conversation, "Teach me the basics of combat.", "CombatBasics")
  200. AddConversationOption(conversation, "I'll come back later.")
  201. 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.")
  202. end
  203. function KnowSurroundings(NPC, Spawn)
  204. FaceTarget(NPC, Spawn)
  205. conversation = CreateConversation()
  206. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind019.mp3", "", "", 1548792480, 2310924503, Spawn)
  207. AddConversationOption(conversation, "Anything else I should watch out for?", "AnythingElse")
  208. 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.")
  209. end
  210. function AnythingElse(NPC, Spawn)
  211. FaceTarget(NPC, Spawn)
  212. conversation = CreateConversation()
  213. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind020.mp3", "", "", 1299871364, 2128759102, Spawn)
  214. AddConversationOption(conversation, "Any other tips?", "OtherTips")
  215. 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.")
  216. end
  217. function OtherTips(NPC, Spawn)
  218. FaceTarget(NPC, Spawn)
  219. conversation = CreateConversation()
  220. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind021.mp3", "", "", 1741681732, 1086303848, Spawn)
  221. AddConversationOption(conversation, "Tell me about selecting the right opponent.", "RightOpponent")
  222. AddConversationOption(conversation, "Tell me about using my abilities.", "UsingAbilities")
  223. AddConversationOption(conversation, "Teach me the basics of combat.", "CombatBasics")
  224. AddConversationOption(conversation, "I'll come back later.")
  225. 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.")
  226. end
  227. function UsingAbilities(NPC, Spawn)
  228. FaceTarget(NPC, Spawn)
  229. conversation = CreateConversation()
  230. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind022.mp3", "", "", 16477562, 1573877371, Spawn)
  231. AddConversationOption(conversation, "What do you mean?", "ExplainFurther")
  232. 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.")
  233. end
  234. function ExplainFurther(NPC, Spawn)
  235. FaceTarget(NPC, Spawn)
  236. conversation = CreateConversation()
  237. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind023.mp3", "", "", 771045837, 1953428673, Spawn)
  238. AddConversationOption(conversation, "What about during battle?", "AbilitiesDuringBattle")
  239. 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.")
  240. end
  241. function AbilitiesDuringBattle(NPC, Spawn)
  242. FaceTarget(NPC, Spawn)
  243. conversation = CreateConversation()
  244. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind024.mp3", "", "", 2163337564, 124850201, Spawn)
  245. AddConversationOption(conversation, "What else should I know about spells and arts?", "MoreSpellsAndArts")
  246. 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.")
  247. end
  248. function MoreSpellsAndArts(NPC, Spawn)
  249. FaceTarget(NPC, Spawn)
  250. conversation = CreateConversation()
  251. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind025.mp3", "", "", 244808971, 2377115174, Spawn)
  252. AddConversationOption(conversation, "Tell me about selecting the right opponent.", "RightOpponent")
  253. AddConversationOption(conversation, "Teach me about knowing my surroundings.", "KnowSurroundings")
  254. AddConversationOption(conversation, "Teach me the basics of combat.", "CombatBasics")
  255. AddConversationOption(conversation, "I'll come back later.")
  256. 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 Sythor the All-Seeing in the tower at the center of the outpost.")
  257. end
  258. -- Charles Arker
  259. function CharlesArker(NPC, Spawn)
  260. SetStepComplete(Spawn, 492, 3)
  261. FaceTarget(NPC, Spawn)
  262. conversation = CreateConversation()
  263. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/trainer_darg_frostwind/tutorial_island02_evil_revamp/trainers/combat/darg_frostwind026.mp3", "", "", 582138351, 1217482106, Spawn)
  264. AddConversationOption(conversation, "Thank you.")
  265. StartConversation(conversation, NPC, Spawn, "I've trained the greatest champions on this island. I've never heard of anyone by that name.")
  266. end