eye_of_hellion.txt 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. //===== eAthena Script =======================================
  2. //= The Eye of Hellion Quest.
  3. //===== By: ==================================================
  4. //= MasterOfMuppets
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN 3422+(Requires jA Script System)
  9. //===== Description: =========================================
  10. //= Quest for getting a Nile Rose
  11. //===== Comments: ============================================
  12. //=
  13. //===== Additional Comments: =================================
  14. //= 1.0 First version [MasterOfMuppets]
  15. //= 1.1 a ',' that should be ';' [FlavioJS]
  16. //============================================================
  17. geffen.gat,110,200,3 script Sage Welshyun 754,2,2,{
  18. if(HELLIONQ > 25)goto s_Last;
  19. if(HELLIONQ > 18)goto s_Switches;
  20. mes "[Welshyun]";
  21. mes "Hm? Oh, pardon me.";
  22. mes "I didn't notice you. I was";
  23. mes "far too occupied thinking";
  24. mes "deep important thoughts";
  25. mes "that your puny little mind";
  26. mes "couldn't possible fathom.";
  27. close;
  28. s_Last:
  29. mes "[Welshyun]";
  30. mes "So, were you able";
  31. mes "to deliver the tablet";
  32. mes "and the Hellion's gem to";
  33. mes "Chilias safely? Ah, and";
  34. mes "how has my friend been?";
  35. close;
  36. s_Switches:
  37. switch(HELLIONQ)
  38. {
  39. case 19:
  40. if(HELLIONQ3)goto s_Thirsty;
  41. specialeffect 313;
  42. specialeffect2 313;
  43. mes "[Welshyun]";
  44. mes "That...";
  45. mes "That eerie glow...";
  46. next;
  47. mes "[Welshyun]";
  48. mes "You! Identify yourself";
  49. mes "and explain how you came";
  50. mes "about to get those tablet";
  51. mes "pieces! Now answer me!";
  52. next;
  53. mes "[Welshyun]";
  54. mes "Ah, forgive me. You're";
  55. mes "helping Chilias, are you?";
  56. mes "I see. So you must be here";
  57. mes "to seek my help in finding";
  58. mes "the final piece, am I correct?";
  59. next;
  60. menu "Shut up, I know you have it, so give it!",s_Shut,"Yes, please help me.",-;
  61. mes "[Welshyun]";
  62. mes "Ah, yes... I shall help";
  63. mes "you get the final tablet";
  64. mes "piece, but first you'll have";
  65. mes "to do a favor for me.";
  66. next;
  67. mes "[Welshyun]";
  68. mes "My student in the Geffen";
  69. mes "Tower has not reported back to";
  70. mes "about his research project,";
  71. mes "so I would like for you to find";
  72. mes "him and retrieve the report";
  73. mes "for me. Not a big deal, right?";
  74. next;
  75. mes "[Welshyun]";
  76. mes "The title of his report";
  77. mes "should be, \"^7151FFMonster Life";
  78. mes "in the Geffen Area^000000\", so";
  79. mes "please remember that.";
  80. mes "Ah, and my student's";
  81. mes "name is Enoz.";
  82. set HELLIONQ,20;
  83. close;
  84. s_Shut:
  85. mes "[Welshyun]";
  86. mes "Such insolence!";
  87. mes "Huh. I suppose Chilias";
  88. mes "may have misjudged you";
  89. mes "when he entrusted you with";
  90. mes "this important mission. Huh.";
  91. mes "A reevaluation is in order...";
  92. set HELLIONQ3,1;
  93. close;
  94. s_Thirsty:
  95. if(countitem(504))goto s_Thirsty2;
  96. mes "[Welshyun]";
  97. mes "^111111*Ahem*^000000 Oh dear me...";
  98. mes "I'm unfathombly thirsty...";
  99. mes "There's no way I can do any";
  100. mes "serious thinking with such";
  101. mes "a dry, parched throat...";
  102. close;
  103. s_Thirsty2:
  104. mes "[Welshyun]";
  105. mes "Oh, a White Potion?";
  106. mes "Yes, may I please have";
  107. mes "one? Ahh, most refreshing~";
  108. mes "You may not be such a bad";
  109. mes "person after all! Now";
  110. mes "Shall I help you find";
  111. mes "that tablet piece?";
  112. next;
  113. mes "[Welshyun]";
  114. mes "Of course, in the";
  115. mes "interest of mankind,";
  116. mes "I shall help you. But first,";
  117. mes "I have a favor to ask of you.";
  118. next;
  119. mes "[Welshyun]";
  120. mes "My student in the Geffen";
  121. mes "Tower has not reported back to";
  122. mes "about his research project,";
  123. mes "so I would like for you to find";
  124. mes "him and retrieve the report";
  125. mes "for me. Not a big deal, right?";
  126. next;
  127. mes "[Welshyun]";
  128. mes "The title of his report";
  129. mes "should be, \"^7151FFMonster Life";
  130. mes "in the Geffen Area^000000\", so";
  131. mes "please remember that.";
  132. mes "Ah, and my student's";
  133. mes "name is Enoz.";
  134. delitem 504,1; //White potion
  135. set HELLIONQ3,0;
  136. set HELLIONQ,20;
  137. close;
  138. break;
  139. case 20:
  140. mes "[Welshyun]";
  141. mes "Please bring me the";
  142. mes "report entitled, \"^7151FFMonster Life";
  143. mes "in the Geffen Area^000000\",";
  144. mes "from my student Enoz in";
  145. mes "the Geffen Tower. Thank";
  146. mes "you, I appreciate your help.";
  147. close;
  148. break;
  149. case 21:
  150. mes "[Welshyun]";
  151. mes "Hm? What's that strange";
  152. mes "expression on your face?";
  153. mes "Prank? Oh please. Such";
  154. mes "chicanery is beneath me...";
  155. mes "But even if I did play a";
  156. mes "joke, believe me. It";
  157. mes "builds character.";
  158. next;
  159. mes "[Welshyun]";
  160. mes "First and foremost,";
  161. mes "I want yo test you to see";
  162. mes "if you are worthy of this";
  163. mes "tablet piece. I want to see";
  164. mes "for myself if you are a person";
  165. mes "of honor. Someone of character.";
  166. next;
  167. mes "[Welshyun]";
  168. mes "Oh yes, I accidentally";
  169. mes "took this Master Science";
  170. mes "Reference Book from Enoz,";
  171. mes "so would you please return it";
  172. mes "to him for me? Oh, and please";
  173. mes "bring back 1 Blue Gemstone.";
  174. next;
  175. mes "^3151FFYou received the";
  176. mes "incredibly heavy tome,";
  177. mes "the the Master Science";
  178. mes "Reference Book.";
  179. set HELLIONQ,22;
  180. close;
  181. break;
  182. case 22:
  183. mes "[Welshyun]";
  184. mes "Please deliver the Master";
  185. mes "Science Reference Book to";
  186. mes "Enoz, and come back to me";
  187. mes "with 1 Blue Gemstone.";
  188. close;
  189. break;
  190. case 23:
  191. if(!countitem(717))goto s_NoGem;
  192. mes "[Welshyun]";
  193. mes "Thank you. You've";
  194. mes "brought the book to Enoz";
  195. mes "and delivered a Gemstone";
  196. mes "to me as I've asked. Now,";
  197. mes "there is one final test...";
  198. next;
  199. mes "[Welshyun]";
  200. mes "Answer this question.";
  201. mes "Where is the abode of the";
  202. mes "departed souls with a shining";
  203. mes "silver roof that is mentioned";
  204. mes "in the third part of the ballad";
  205. mes "of Grimnir? Well, adventurer?";
  206. next;
  207. input @str$;
  208. if(@str$ != "Valaskjalf")goto s_WrongStr;
  209. mes "[Welshyun]";
  210. mes "Ah, well met, well met.";
  211. mes "You are as well learned as";
  212. mes "you are brave. As promised,";
  213. mes "you may have this piece of";
  214. mes "the tablet, which I've";
  215. mes "already found. The clues";
  216. mes "were too simple...";
  217. set HELLIONQ,24;
  218. delitem 717,1; //Blue gemstone
  219. getitem 7336,1; //Geffen Tablet
  220. next;
  221. mes "[Welshyun]";
  222. mes "Please send my regards";
  223. mes "to my dear friend, Chilias,";
  224. mes "who has dedicated his life";
  225. mes "to sealing the evil within";
  226. mes "the Hellion's gem.";
  227. close;
  228. s_WrongStr:
  229. mes "[Welshyun]";
  230. mes "Bwahahaah! Only";
  231. mes " a superior mind could";
  232. mes "know the answer to such";
  233. mes "a question! Go forth and";
  234. mes "learn the answer, else";
  235. mes "I cannot help you, adventurer~";
  236. close;
  237. s_NoGem:
  238. mes "[Welshyun]";
  239. mes "Ah, I've heard that";
  240. mes "Enoz received the Master";
  241. mes "Science Reference Book";
  242. mes "from you. But did you remember";
  243. mes "to bring me a Blue Gemstone?";
  244. close;
  245. break;
  246. case 24:
  247. mes "[Welshyun]";
  248. mes "Hm. You should visit";
  249. mes "Chilias and determine";
  250. mes "your next course of action,";
  251. mes "now that you have all four";
  252. mes "of the pieces of the tablet.";
  253. close;
  254. break;
  255. case 25:
  256. mes "[Welshyun]";
  257. mes "Hm? Did you need";
  258. mes "me to combine all four";
  259. mes "pieces of the tabled and";
  260. mes "make it whole again? Oh.";
  261. mes "All this time I thought you";
  262. mes "knew how to do it. Alright.";
  263. next;
  264. mes "[Welshyun]";
  265. mes "As a matter of fact,";
  266. mes "I was planning on using";
  267. mes "the Blue Gemstone you gave";
  268. mes "me to do this. But since you";
  269. mes "never really asked... In any";
  270. mes "case, let me concentrate.";
  271. next;
  272. specialeffect 54;
  273. mes "[Welshyun]";
  274. mes "Shadows remembered by time.";
  275. mes "Help me retrieve the forgotten";
  276. mes "stories that have been";
  277. mes "scattered in the wind.";
  278. mes "Right here. Right now.";
  279. next;
  280. specialeffect 72;
  281. mes "[Welshyun]";
  282. mes "...";
  283. mes "Okay...";
  284. mes "That was tough.";
  285. next;
  286. mes "[Welshyun]";
  287. mes "Here's the";
  288. mes "complete tablet.";
  289. mes "Please bring this";
  290. mes "safely back to Chilias.";
  291. getitem 7332,1; //Complete Tablet
  292. delitem 7333,1; //Prontera Tablet
  293. delitem 7334,1; //Payon Tablet
  294. delitem 7335,1; //Morroc Tablet
  295. delitem 7336,1; //Geffen Tablet
  296. set HELLIONQ,26;
  297. next;
  298. mes "[Welshyun]";
  299. mes "Wait, take a look!";
  300. mes "There's a map on the back";
  301. mes "of the tablet. Although the gem";
  302. mes "is already embedded within the";
  303. mes "tablet, who knows where this";
  304. mes "map may lead? Perhaps";
  305. mes "Hellion Revenant?";
  306. next;
  307. mes "[Welshyun]";
  308. mes "I don't know if Chilias";
  309. mes "told you, but the name of";
  310. mes "the monster that guards and";
  311. mes "follows this gem is Hellion";
  312. mes "Revenant. But why mark its";
  313. mes "location on this tablet?";
  314. next;
  315. mes "[Welshyun]";
  316. mes "Well, it will be dangerous, but";
  317. mes "I'm sure that you're strong enough";
  318. mes "to confront this monster. I";
  319. mes "believe it was the wish of this";
  320. mes "tablet's creator for someone";
  321. mes "to defeat the Hellion Revenant.";
  322. next;
  323. menu "Alright I'll do it!",s_DoIt,"I better get this tablet to Chilias...",-;
  324. mes "[Welshyun]";
  325. mes "Yes, that's true.";
  326. mes "Chilias has been waiting";
  327. mes "his whole life to seal this";
  328. mes "gem. Plus, who knows what";
  329. mes "may happen while it is in";
  330. mes "your possession?";
  331. set HELLIONQ,26;
  332. close;
  333. s_DoIt:
  334. mes "[Welshyun]";
  335. mes "Well, I'm almost certain";
  336. mes "this map will lead you to";
  337. mes "Hellion Revenant. Let me";
  338. mes "warp you to the location";
  339. mes "marked on the tablet's map...";
  340. close2;
  341. warp "gef_fild09.gat",368,88;
  342. set HELLIONQ,26;
  343. end;
  344. break;
  345. }
  346. OnTouch:
  347. if(HELLIONQ != 19)end;
  348. specialeffect 313;
  349. specialeffect2 313;
  350. mes "^3151FFThe piece of tablet";
  351. mes "that you have is shining";
  352. mes "with light as if in response";
  353. mes "to something in the area.";
  354. close;
  355. }
  356. prontera.gat,269,326,3 script Clanux Heffron 50,{
  357. if(HELLIONQ > 7)goto s_Last;
  358. if(HELLIONQ)goto s_Switches;
  359. mes "[Clanux Heffron]";
  360. mes "What's wrong with";
  361. mes "this map?! I can't";
  362. mes "find a blasted thing";
  363. mes "on it! How can finding";
  364. mes "something be so hard?";
  365. close;
  366. s_Last:
  367. mes "[Clanux Heffron]";
  368. mes "Oh hey, it's you.";
  369. mes "Listen I got this number";
  370. mes "pad to pop out of that old";
  371. mes "machine in the Tool Shop,";
  372. mes "I still don't know what the";
  373. mes "password for it might be.";
  374. next;
  375. mes "[Clanux Heffron]";
  376. mes "If I couldn't figure";
  377. mes "it out, and I understand";
  378. mes "if you couldn't figure this";
  379. mes "out, then this puzzle must";
  380. mes "be freakin' impossible!";
  381. close;
  382. s_Switches:
  383. switch(HELLIONQ)
  384. {
  385. case 1:
  386. if(HELLIONQ2)goto s_Bother;
  387. mes "[" + strcharinfo(0) + "]";
  388. mes "Excuse me, but are";
  389. mes "you Clanux Heffron?";
  390. next;
  391. mes "[Clanux Heffron]";
  392. mes "Why, who are you";
  393. mes "and what the heck";
  394. mes "do you want? Oh...";
  395. mes "Sent by Chilias, eh?";
  396. mes "What does he want?";
  397. next;
  398. menu "He wants me to help you",s_You,"He wants you to help me.",-;
  399. mes "[Clanux Heffron]";
  400. mes "Help you...? What, with";
  401. mes "clues to the location of";
  402. mes "the Hellion's gem? Screw";
  403. mes "that, pal! Why should I help";
  404. mes "you if we're gonna compete";
  405. mes "for the same prize?!";
  406. set HELLIONQ2,1;
  407. close;
  408. s_Bother:
  409. mes "[Clanux Heffron]";
  410. mes "Hey, why do you keep";
  411. mes "botherin' me?! Go and";
  412. mes "find your own clues for the";
  413. mes "Hellion's gem on your own,";
  414. mes "jerkface! Now getouttahere!";
  415. next;
  416. menu "W-what! Let's work together!",s_Work,"Fine. I don't need your help!",-;
  417. mes "[" + strcharinfo(0) + "]";
  418. mes "Fine.";
  419. mes "I don't need";
  420. mes "your help!";
  421. next;
  422. mes "[Clanux Heffron]";
  423. mes "Yeah right!";
  424. mes "You'll be back!";
  425. mes "...They always";
  426. mes "come back.";
  427. close;
  428. s_Work:
  429. mes "[Clanux Heffron]";
  430. mes "Work together, eh? You";
  431. mes "know, normally I'd tell you";
  432. mes "to make like a moonwalker";
  433. mes "and just beat it, but I gotta";
  434. mes "admit that I ain't doin' so";
  435. mes "good on my own on this...";
  436. next;
  437. mes "[Clanux Heffron]";
  438. mes "Alright, fine.";
  439. mes "First, look through the";
  440. mes "old Swordman Training";
  441. mes "Grounds here in Prontera.";
  442. mes "There might be some clues";
  443. mes "left over there for you to";
  444. mes "find.";
  445. set HELLIONQ2,0;
  446. set HELLIONQ,2;
  447. close;
  448. s_You:
  449. mes "[Clanux Heffron]";
  450. mes "So he sent me an";
  451. mes "assistant, huh? Well...";
  452. mes "Seeing as he gave me this";
  453. mes "clue and I've taken so long";
  454. mes "and still don't have anything";
  455. mes "to show for it, I don't blame him.";
  456. next;
  457. mes "[Clanux Heffron]";
  458. mes "Well, if he sent you to";
  459. mes "help me out, I guess I can";
  460. mes "tell you everything. For the";
  461. mes "clues he had me look for,";
  462. mes "I've only found two so far.";
  463. mes "But I can't figure them out...";
  464. next;
  465. mes "[Clanux Heffron]";
  466. mes "Let's see, there's this";
  467. mes "broken sword and this";
  468. mes "strange lookin' cogwheel.";
  469. mes "What do these clues mean?!";
  470. mes "Did the old man give you";
  471. mes "any hints to help me out?";
  472. next;
  473. menu "Where did you find these?",-,"No I'm sorry.",s_Sorry;
  474. //Custom dialog
  475. mes "[Clanux Heffron]";
  476. mes "I found them next to a";
  477. mes "broken training dummy";
  478. mes "in the old Swordman";
  479. mes "Training Grounds here";
  480. mes "in Prontera.";
  481. next;
  482. mes "[Clanux Heffron]";
  483. mes "Why don't you go search";
  484. mes "the old Swordman Training";
  485. mes "Grounds for clues? I might";
  486. mes "have missed something...";
  487. mes "Not that I think so, but";
  488. mes "just in case!";
  489. set HELLIONQ,2;
  490. close;
  491. s_Sorry:
  492. mes "[Clanux Heffron]";
  493. mes "Wha--? Then why are";
  494. mes "you even here to help";
  495. mes "me then? Huh. That old";
  496. mes "coot must not trust me";
  497. mes "enough, but I can't exactly";
  498. mes "blame him. Alright then...";
  499. next;
  500. mes "[Clanux Heffron]";
  501. mes "If you're gonna help me,";
  502. mes "go search the old Swordman";
  503. mes "Training Grounds over here in";
  504. mes "Prontera. I doubt it, but there's";
  505. mes "a chance I mighta missed";
  506. mes "something there. Get to it!";
  507. set HELLIONQ,2;
  508. close;
  509. break;
  510. case 2:
  511. mes "[Clanux Heffron]";
  512. mes "Look pal, I found this broken";
  513. mes "sword, a bonafide clue if I";
  514. mes "ever saw one, in the old";
  515. mes "Swordman Training Grounds in";
  516. mes "Prontera. You should be able to";
  517. mes "find something else there, maybe.";
  518. close;
  519. break;
  520. case 3:
  521. mes "[Clanux Heffron]";
  522. mes "Hey, you're done";
  523. mes "searching? Were you";
  524. mes "able to find anything?";
  525. next;
  526. menu "Nothing...",s_Nothing,"In fact, I found this.",-;
  527. mes "[Clanux Heffron]";
  528. mes "Wha--? I had no idea";
  529. mes "that sort of thing could";
  530. mes "be hidden in that training";
  531. mes "ground. I missed it. Oh,";
  532. mes "so the Veggie Lady gave you a";
  533. mes "password and all?";
  534. next;
  535. mes "[Clanux Heffron]";
  536. mes "Huh, I can't make heads";
  537. mes "or tails of that password.";
  538. mes "I guess I have no choice but";
  539. mes "to give you this, the";
  540. mes "cogwheel clue I found";
  541. mes "from the Tool Shop.";
  542. next;
  543. mes "[Clanux Heffron]";
  544. mes "I mean, you've been lucky";
  545. mes "enough till now, so you'll";
  546. mes "probably be able to stumble";
  547. mes "upon the answer behind this";
  548. mes "weird, weird riddle. But you";
  549. mes "gotta tell me the answer too!";
  550. next;
  551. mes "[Clanux Heffron]";
  552. mes "Alright, now take your";
  553. mes "cogwheel and get outta";
  554. mes "here. The sooner you get";
  555. mes "that clue, the sooner I'll";
  556. mes "get that Hellion's gem.";
  557. set HELLIONQ,4;
  558. getitem 7093,1; //Cogwheel
  559. close;
  560. s_Nothing:
  561. mes "[" + strcharinfo(0) + "]";
  562. mes "^111111(This guy's a real punk!";
  563. mes "I better not share any new";
  564. mes "information I've found, just";
  565. mes "in case he doesn't already";
  566. mes "know about it.)";
  567. next;
  568. mes "[" + strcharinfo(0) + "]";
  569. mes "I... I wasn't able to";
  570. mes "find anything that looked";
  571. mes "like a clue. I'm sorry, but";
  572. mes "I let you down big time...";
  573. next;
  574. mes "[Clanux Heffron]";
  575. mes "Aw nuts! Alright, if you";
  576. mes "go back to the old man, let";
  577. mes "him know that I found a broken";
  578. mes "sword from the old Swordman";
  579. mes "Training Grounds and this";
  580. mes "cogwheel from the Tool Shop.";
  581. next;
  582. mes "[Clanux Heffron]";
  583. mes "The clues I've found so";
  584. mes "far don't make any sense!";
  585. mes "So if you can, convince him to";
  586. mes "drop me a couple more hints.";
  587. mes "And give this to the old guy";
  588. mes "to prove I found it, will you?";
  589. next;
  590. mes "[Clanux Heffron]";
  591. mes "That's all I know.";
  592. mes "At this point you're";
  593. mes "probably better off";
  594. mes "searching for these";
  595. mes "clues on your own...";
  596. getitem 7093,1; //Cogwheel
  597. set HELLIONQ,4;
  598. close;
  599. break;
  600. case 4:
  601. case 5:
  602. case 6:
  603. mes "[Clanux Heffron]";
  604. mes "Hey... Didn't I tell";
  605. mes "you to check out the";
  606. mes "Tool Shop in case there";
  607. mes "was anything I missed?";
  608. mes "Now go! That's an order!";
  609. close;
  610. break;
  611. case 7:
  612. mes "[Clanux Heffron]";
  613. mes "Hey, so you have";
  614. mes "anything new to report?";
  615. mes "Oh, and did you learn";
  616. mes "anything from that weird";
  617. mes "maching in the Tool Shop?";
  618. next;
  619. menu "Tell him just a little bit.",s_Bit,"Don't tell him",-;
  620. s_Bit:
  621. mes "[" + strcharinfo(0) + "]";
  622. mes "Well, I put that cogwheel";
  623. mes "into that weird machine in";
  624. mes "the Tool Shop and some kind";
  625. mes "of number pad came out. Then...";
  626. next;
  627. mes "[" + strcharinfo(0) + "]";
  628. mes "^111111(Wait, I can't trust this";
  629. mes "guy!)^000000 I put in every single";
  630. mes "password that I could think";
  631. mes "of, but nothing happened!";
  632. mes "I think I'm stuck...";
  633. next;
  634. mes "[Clanux Heffron]";
  635. mes "Oh yeah? Hah! Well, now";
  636. mes "that the easy part is";
  637. mes "done, I'll just figure out";
  638. mes "that secret password";
  639. mes "myself! Hahahah! That Hellion's";
  640. mes "gem is as good as mine!";
  641. set HELLIONQ,8;
  642. close;
  643. break;
  644. }
  645. }
  646. prontera.gat,224,84,1 script Training Dummy#HellionDummy 111,{
  647. if(HELLIONQ == 2)goto s_Hellion;
  648. mes "^3151FFIt's a training dummy";
  649. mes "that was used to hone the";
  650. mes "skills of new Swordmen...";
  651. mes "But the Swordman Training";
  652. mes "Grounds have moved to Izlude.";
  653. close;
  654. s_Hellion:
  655. mes "^3151FFIt's a training dummy";
  656. mes "with a gash in its body";
  657. mes "that looks like it was made";
  658. mes "by the thrust of a sharp sword.";
  659. next;
  660. mes "[" + strcharinfo(0) + "]";
  661. mes "Didn't Clanux mention that he";
  662. mes "found a broken sword around";
  663. mes "here? Maybe this was exactly";
  664. mes "where he found it. Let's see...";
  665. next;
  666. menu "Inspect the dummy's gash",-;
  667. mes "^3151FFInside of the dummy's body is";
  668. mes "a steel bearing with a roughly";
  669. mes "etched message that reads:";
  670. mes "^7151FF\"Veggie Lady N9 W3 BINGO.\"";
  671. next;
  672. mes "[" + strcharinfo(0) + "]";
  673. mes "What the heck does this";
  674. mes "even mean? A Veggie Lady?";
  675. mes "Does Clanux know anything";
  676. mes "at all about this clue...?";
  677. set HELLIONQ,3;
  678. close;
  679. }
  680. prt_in.gat,128,79,0 script Unknown Machine#HellionMchn 111,{
  681. if(HELLIONQ == 6)goto s_Input2;
  682. if(HELLIONQ == 5)goto s_Input;
  683. mes "^3151FFIt's some sort of";
  684. mes "strange looking machine";
  685. mes "with a mysterious purpose.";
  686. close;
  687. s_Input:
  688. mes "^3151FFIt's a weird looking";
  689. mes "machine that looks like";
  690. mes "it hasn't been used in a";
  691. mes "while. It looks like the";
  692. mes "cogwheel that you have";
  693. mes "would fit perfectly in it...";
  694. next;
  695. menu "Insert Cogwheel",s_Insert,"Ignore it.",-;
  696. mes "[" + strcharinfo(0) + "]";
  697. mes "Eh...";
  698. mes "Forget it.";
  699. close;
  700. s_Insert:
  701. if(!countitem(7093))goto s_NoCog;
  702. mes "[" + strcharinfo(0) + "]";
  703. mes "I just know this";
  704. mes "cogwheel will fit";
  705. mes "into this machine!";
  706. mes "What I don't know is";
  707. mes "what will happen once";
  708. mes "this machine works...";
  709. next;
  710. mes "^3151FF*Click...!*";
  711. mes "Once the cogwheel is";
  712. mes "fit into the machine and";
  713. mes "turned, the device hums";
  714. mes "to life and a panel opens,";
  715. mes "revealing a numeric keypad.";
  716. delitem 7093,1; //Cogwheel
  717. set HELLIONQ,6;
  718. next;
  719. mes "[" + strcharinfo(0) + "]";
  720. mes "I guess that I've got";
  721. mes "to input some kind of";
  722. mes "numeric password...";
  723. mes "Ah, right, the numbers";
  724. mes "that Veggie Lady gave me!";
  725. next;
  726. input @temp;
  727. if(@temp != 16754213)goto s_FailInp;
  728. s_CorrectInput:
  729. mes "^3151FFThe machine responds to";
  730. mes "the password with a pleasant";
  731. mes "chime, confirming that you've";
  732. mes "input the correct numbers.";
  733. mes "The keypad slides open to";
  734. mes "reveal a piece of a tablet.";
  735. getitem 7333,1; //Prontera Tablet
  736. set HELLIONQ,7;
  737. next;
  738. mes "^3151FFThe message engraved on";
  739. mes "this table reads: \"This is for";
  740. mes "Christopher, my dear friend who";
  741. mes "I met in Prontera. To the one";
  742. mes "who finds this, please seek";
  743. mes "out the next piece of this tablet";
  744. mes "in the city of thickest forest.\"";
  745. next;
  746. mes "^3151FFThe message is signed";
  747. mes "by someone named Tyus.";
  748. mes "It would be best to bring";
  749. mes "this back to Sir Chilia'Tyus";
  750. mes "and confirm that this was";
  751. mes "made by his grandfater...";
  752. close;
  753. s_Input2:
  754. mes "[" + strcharinfo(0) + "]";
  755. mes "Okay, let me see";
  756. mes "if I can enter the";
  757. mes "right number this time...";
  758. next;
  759. input @temp;
  760. if(@temp == 16754213)goto s_CorrectInput;
  761. s_FailInp:
  762. mes "^3151FFThe machine responds to";
  763. mes "the passwords with an abrupt,";
  764. mes "screeching beep and the entire";
  765. mes "machine shuts down. You'll";
  766. mes "have to try entering the";
  767. mes "password again.";
  768. close;
  769. s_NoCog:
  770. mes "[" + strcharinfo(0) + "]";
  771. mes "Hmm, I can't find the";
  772. mes "cogwheel, now where did";
  773. mes "I put it?";
  774. close;
  775. }
  776. prontera.gat,45,67,1 script #HellionActivator 139,0,0,{
  777. OnTouch:
  778. if(HELLIONQ != 4)end;
  779. mes "[" + strcharinfo(0) + "]";
  780. mes "Well, according to the";
  781. mes "message in that old training";
  782. mes "dummy, this is where I'm";
  783. mes "supposed to go. Nine steps";
  784. mes "north, 3 steps west. And now...";
  785. mes "Veggie Lady. Okay, okay...";
  786. next;
  787. mes "[" + strcharinfo(0) + "]";
  788. mes "Huh. That's creepy.";
  789. mes "There's one right there";
  790. mes "staring at me. But after";
  791. mes "the words \"Veggie Lady\"";
  792. mes "all the message says is, um,";
  793. mes "what was that last word again?";
  794. next;
  795. input @tempstr$;
  796. if(@tempstr$ != "BINGO")goto s_Failstr;
  797. mes "[" + strcharinfo(0) + "]";
  798. mes "Of course!";
  799. mes "\"BINGO!\" But";
  800. mes "I don't see a hall";
  801. mes "full of old people";
  802. mes "around here, I--";
  803. next;
  804. mes "[Veggie Lady]";
  805. mes "Finall, you say it.";
  806. mes "Yessh, I thought I was";
  807. mes "going to wait forever for";
  808. mes "somebody to say that";
  809. mes "password. Okay, here's";
  810. mes "the code number you want...";
  811. next;
  812. mes "[" + strcharinfo(0) + "]";
  813. mes "C-code number?";
  814. mes "Wait, wh-what...?";
  815. next;
  816. mes "[Veggie Lady]";
  817. mes "Awww...I don't know!";
  818. mes "I'm only gonna say it";
  819. mes "now: ^7151FF16754213^000000. One";
  820. mes "more time, in case you";
  821. mes "didn't get it: ^7151FF16754213^000000.";
  822. mes "Don't forget it, adventurer.";
  823. next;
  824. mes "[" + strcharinfo(0) + "]";
  825. mes "Wait... What does";
  826. mes "this all mean? Won't";
  827. mes "you tell me more?";
  828. next;
  829. mes "[Veggie Lady]";
  830. mes "No. I've been given";
  831. mes "explicit instructions";
  832. mes "to not tell you more.";
  833. mes "In face, I hate talking.";
  834. mes "That's why I sell vegetables.";
  835. next;
  836. mes "[" + strcharinfo(0) + "]";
  837. mes "Holy cow...";
  838. mes "This is all";
  839. mes "really cloak and";
  840. mes "dagger type stuff!";
  841. set HELLIONQ,5;
  842. close;
  843. s_Failstr:
  844. mes "[" + strcharinfo(0) + "]";
  845. mes @tempstr$;
  846. mes "Hmmm. No, no that couldn't";
  847. mes "be it. What in the world was";
  848. mes "that word and why can't I";
  849. mes "remember it when I seemingly";
  850. mes "need it most?";
  851. close;
  852. }
  853. payon.gat,182,132,3 script Grout'he Tuccok 48,{
  854. if(HELLIONQ > 17)goto s_Final;
  855. if(HELLIONQ > 8)goto s_Switches;
  856. mes "[Grout'he]";
  857. mes "Hey...";
  858. mes "Hey you!";
  859. mes "What are you";
  860. mes "looking at?!";
  861. mes "Get outta my";
  862. mes "face, ya jerkward.";
  863. close;
  864. s_Final:
  865. mes "[Grout'he]";
  866. mes "Hey, this is great!";
  867. mes "you actually found the";
  868. mes "next piece of the tablet!";
  869. mes "You better take this back";
  870. mes "to Chilias'Tyus right now~";
  871. next;
  872. mes "[Grout'he]";
  873. mes "Oh. And um, thanks";
  874. mes "for being willing to pay";
  875. mes "me in cash for all those";
  876. mes "little bitty clues. I won't";
  877. mes "forget your help, pal~";
  878. close;
  879. s_Switches:
  880. switch(HELLIONQ)
  881. {
  882. case 9:
  883. mes "[Grout'he]";
  884. mes "What...?";
  885. mes "You got something";
  886. mes "to tell me or are you";
  887. mes "just bein' a rude prick";
  888. mes "and starting at me like";
  889. mes "this is your turf?!";
  890. next;
  891. mes "[" + strcharinfo(0) + "]";
  892. mes "I'm sorry, but well...";
  893. mes "Chilias'Tyus told me that";
  894. mes "you might know something";
  895. mes "about a piece of a table--";
  896. next;
  897. mes "[Grout'he]";
  898. mes "What? Oh, so Chilias'Tyus";
  899. mes "is lookin for the gem too eh?";
  900. mes "Ooh, that's right. He wants to";
  901. mes "seal its evil or something.";
  902. mes "Yeah, yeah. That's a good";
  903. mes "cause. Real noble and all...";
  904. next;
  905. mes "[Grout'he]";
  906. mes "I'll tell you what. The only reason";
  907. mes "I want that gem is to sell it";
  908. mes "so I can pay off ally my debts.";
  909. mes "But if I sell you the clues I found,";
  910. mes "I'll get the zeny I need and the";
  911. mes "gem will be in good hands too.";
  912. next;
  913. mes "[Grout'he]";
  914. mes "So what do you say?";
  915. mes "It's not a bad deal if";
  916. mes "you think about it and";
  917. mes "we might as well kill";
  918. mes "two birds with one stone...";
  919. next;
  920. menu "Alright, I'll buy your clues.",s_Buy,"Why the hell should I pay you?!",-;
  921. mes "[Grout'he]";
  922. mes "Why the hell should you";
  923. mes "pay me?! Hey, aren't you";
  924. mes "looking for the gem to help";
  925. mes "the world? Well, I happen to";
  926. mes "be a little part of this world,";
  927. mes "so why don't you help me first?";
  928. next;
  929. mes "[Grout'he]";
  930. mes "Man, you might not";
  931. mes "know it, but the money";
  932. mes "you give me will save";
  933. mes "a life. My own! Dude, how";
  934. mes "can you be so insensitive?";
  935. close;
  936. s_Buy:
  937. mes "[Grout'he]";
  938. mes "Oh man, thanks a lot.";
  939. mes "Alright, all I'm asking";
  940. mes "for is 10,000 zeny. You get";
  941. mes "my clues and I'll let you know";
  942. mes "where I found 'em, in case";
  943. mes "you can find something new.";
  944. next;
  945. if(Zeny < 10000)goto s_NoZeny;
  946. set Zeny,Zeny-10000;
  947. mes "[Grout'he]";
  948. mes "There you go!";
  949. mes "Thanks for the cash~";
  950. mes "(Know I won't have to";
  951. mes "get my knees all broken!)";
  952. mes "Oh, and let me makr your";
  953. mes "Mini-Map for you real quick...";
  954. next;
  955. mes "[Grout'he]";
  956. mes "You see this here?";
  957. mes "It's where I found the";
  958. mes "Skirt of Virgin I'm about";
  959. mes "to give you. So check that";
  960. mes "spot out and see if you find";
  961. mes "anything new and interesting.";
  962. viewpoint 1,101,191,10,0xFF00FF;
  963. next;
  964. mes "[Grout'he]";
  965. mes "Here you go, pal...";
  966. mes "A Stone Heart, Green Herb,";
  967. mes "some Grape Juice and one";
  968. mes "clean and pure Skirt of Virgin.";
  969. mes "If you got any more questions,";
  970. mes "I guess you can ask me later~";
  971. getitem 953,1;
  972. getitem 511,1;
  973. getitem 533,1;
  974. getitem 1049,1;
  975. set HELLIONQ,10;
  976. close;
  977. s_NoZeny:
  978. mes "[Grout'he]";
  979. mes "Oh hey...";
  980. mes "You don't got the zeny.";
  981. mes "Sorry pal, but I've really got";
  982. mes "to pay my debts somehow.";
  983. mes "I don't know if I'm allowed";
  984. mes "to reall talk about it...";
  985. mes "^111111*Sob*";
  986. close;
  987. break;
  988. case 10:
  989. mes "[Grout'he]";
  990. mes "You see this here?";
  991. mes "It's where I found the";
  992. mes "Skirt of Virgin I'm about";
  993. mes "to give you. So check that";
  994. mes "spot out and see if you find";
  995. mes "anything new and interesting.";
  996. viewpoint 1,101,191,10,0xFF00FF;
  997. close;
  998. break;
  999. case 11:
  1000. mes "[Grout'he]";
  1001. mes "You've been to the";
  1002. mes "first location? Good.";
  1003. mes "Okay, now look over here.";
  1004. mes "Check your Mini-Map to";
  1005. mes "see where I found that";
  1006. mes "Stone Heart, got it?";
  1007. viewpoint 1,82,109,11,0xFF00FF;
  1008. close;
  1009. break;
  1010. case 12:
  1011. mes "[Grout'he]";
  1012. mes "Alright, here's where";
  1013. mes "I found that Green Herb.";
  1014. mes "You know you can use that";
  1015. mes "to counter poison, right?";
  1016. mes "Check that place to see if";
  1017. mes "there's anything I missed.";
  1018. viewpoint 1,239,56,12,0xFF00FF;
  1019. close;
  1020. break;
  1021. case 13:
  1022. mes "[Grout'he]";
  1023. mes "Okay, here's the last";
  1024. mes "place you should double";
  1025. mes "check, the place where";
  1026. mes "I nabbed that Grape";
  1027. mes "Juice. Good luck~";
  1028. viewpoint 1,240,161,13,0xFF00FF;
  1029. close;
  1030. break;
  1031. case 14:
  1032. mes "[Grout'he]";
  1033. mes "Oh, you need some help";
  1034. mes "with figuring out the clues?";
  1035. mes "Heh. Alright, let's see.";
  1036. mes "You want me to help";
  1037. mes "you in making sense of";
  1038. mes "this weird riddle?";
  1039. next;
  1040. menu "Yes, please!",s_YesP,"No thanks~",-;
  1041. mes "[Grout'he]";
  1042. mes "Oh yeah?";
  1043. mes "Well listen, I dunno,";
  1044. mes "but this looks to be one";
  1045. mes "of those situations where";
  1046. mes "two heads are better than one.";
  1047. mes "I think we oughta team up~";
  1048. close;
  1049. s_YesP:
  1050. mes "[Grout'he]";
  1051. mes "Alright now. All those";
  1052. mes "messages said stuff about";
  1053. mes "one sized clothing, dried";
  1054. mes "fish and green herbs, wine...";
  1055. mes "Huh. It doesn't make sense.";
  1056. next;
  1057. mes "[" + strcharinfo(0) + "]";
  1058. mes "What...?";
  1059. mes "I could have";
  1060. mes "told you that!";
  1061. next;
  1062. mes "[Grout'he]";
  1063. mes "Wait, wait.";
  1064. mes "Let's mark all the";
  1065. mes "clue locations again";
  1066. mes "on your Mini-Map.";
  1067. mes "Okay, we've got four";
  1068. mes "dots around Payon.";
  1069. viewpoint 1,101,191,10,0xFF00FF;
  1070. viewpoint 1,82,109,11,0xFF00FF;
  1071. viewpoint 1,239,56,12,0xFF00FF;
  1072. viewpoint 1,240,161,13,0xFF00FF;
  1073. next;
  1074. mes "[Grout'he]";
  1075. mes "Alright, now if";
  1076. mes "I connect and interesect";
  1077. mes "all the lines, there's";
  1078. mes "a point in the middle.";
  1079. mes "Why don't you check";
  1080. mes "this middle point, eh?";
  1081. viewpoint 1,159,130,14,0xFF00FF;
  1082. next;
  1083. mes "[Grout'he]";
  1084. mes "Now, this location";
  1085. mes "is a house, and I know";
  1086. mes "it's pretty random, but";
  1087. mes "it's all we got. Heck,";
  1088. mes "all these clues make";
  1089. mes "less sense than this!";
  1090. set HELLIONQ,15;
  1091. close;
  1092. break;
  1093. case 15:
  1094. mes "[Grout'he]";
  1095. mes "Hey, how's it goin'";
  1096. mes "looking for that one";
  1097. mes "piece of the tablet?";
  1098. mes "It's a lot of trouble,";
  1099. mes "but I guess that's the";
  1100. mes "case with all treasures.";
  1101. viewpoint 1,159,130,14,0xFF00FF;
  1102. close;
  1103. break;
  1104. case 16:
  1105. mes "[Grout'he]";
  1106. mes "Oh, so all of those";
  1107. mes "items came in handy?";
  1108. mes "I don't believe it! So";
  1109. mes "this puzzle actually";
  1110. mes "makes sense?! So";
  1111. mes "what'd the slab say?";
  1112. next;
  1113. mes "[Grout'he]";
  1114. mes "\"Compassionate one?\"";
  1115. mes "Oh hey, there's a giant";
  1116. mes "stone statue over in the";
  1117. mes "Archer Village that fits";
  1118. mes "the description perfectly!";
  1119. mes "You should check it out.";
  1120. set HELLIONQ,17;
  1121. close;
  1122. break;
  1123. case 17:
  1124. mes "[Grout'he]";
  1125. mes "Hey, you really ought";
  1126. mes "to check out the huge";
  1127. mes "stone statue over in the";
  1128. mes "Archer Village. Now that";
  1129. mes "I think about it, it's the";
  1130. mes "perfect hiding place!";
  1131. close;
  1132. break;
  1133. }
  1134. }
  1135. payon.gat,101,191,1 script #HellionStepAct 139,1,1,{
  1136. if(HELLIONQ != 10)end;
  1137. mes "[" + strcharinfo(0) + "]";
  1138. mes "Well, this is where";
  1139. mes "Grout'he told me to look.";
  1140. mes "Ooh, there's something";
  1141. mes "written on the ceiling. Um,";
  1142. mes "let's see... \"This garment";
  1143. mes "is one size fits all.\"";
  1144. next;
  1145. mes "[" + strcharinfo(0) + "]";
  1146. mes "That's it...?";
  1147. mes "Hopefully this will";
  1148. mes "make more sense once";
  1149. mes "I find more clues. I hope.";
  1150. set HELLIONQ,11;
  1151. close;
  1152. }
  1153. payon.gat,82,109,1 script Pile of Stones#HellionStones 111,{
  1154. if(HELLIONQ != 11)end;
  1155. mes "[" + strcharinfo(0) + "]";
  1156. mes "Well, this is the place";
  1157. mes "that Grout'he told me about.";
  1158. mes "Let's see, there's an engraving";
  1159. mes "here that says, \"I used to";
  1160. mes "pray for peaceful days";
  1161. mes "here.\" Okay.";
  1162. next;
  1163. mes "[" + strcharinfo(0) + "]";
  1164. mes "Man...";
  1165. mes "This better not be";
  1166. mes "one of those puzzles";
  1167. mes "that looks easy once";
  1168. mes "I get the answer. Well,";
  1169. mes "if I ever get it, that is.";
  1170. set HELLIONQ,12;
  1171. close;
  1172. }
  1173. payon.gat,239,56,1 script Dried Fish#HellionFish 111,{
  1174. if(HELLIONQ != 12)end;
  1175. mes "[" + strcharinfo(0) + "]";
  1176. mes "So... Dried fish all";
  1177. mes "around me. This is getting";
  1178. mes "to be nonsense. Let's see,";
  1179. mes "this message says, \"Green";
  1180. mes "Herbs are very useful for";
  1181. mes "getting rid of fish smells.\"";
  1182. next;
  1183. mes "[" + strcharinfo(0) + "]";
  1184. mes "I got it...!";
  1185. mes "Whoever made up";
  1186. mes "these clues must be";
  1187. mes "some sort of crazy man!";
  1188. mes "It's the only explanation!";
  1189. set HELLIONQ,13;
  1190. close;
  1191. }
  1192. payon.gat,240,161,1 script Vat#HellionVat 111,{
  1193. if(HELLIONQ != 13)end;
  1194. mes "[" + strcharinfo(0) + "]";
  1195. mes "Alright, the last";
  1196. mes "place I have to check.";
  1197. mes "It's a big old vat with a";
  1198. mes "message here too. No";
  1199. mes "Let me see, there should";
  1200. mes "be a message here too. Ah--!";
  1201. next;
  1202. mes "[" + strcharinfo(0) + "]";
  1203. mes "This says, \"What will it be?";
  1204. mes "Wine or Grape Juice? Oh,";
  1205. mes "but I much prefer wine.\" Okay,";
  1206. mes "what does this have to do with";
  1207. mes "that Hellion's gem? Weird...";
  1208. next;
  1209. mes "[" + strcharinfo(0) + "]";
  1210. mes "Am I missing something?";
  1211. mes "I think I really need help in";
  1212. mes "figuring this out. Hmm...";
  1213. set HELLIONQ,14;
  1214. close;
  1215. }
  1216. payon.gat,159,130,1 script Wooden Floor#HellionFloor 111,{
  1217. if(HELLIONQ > 15)goto s_Slab;
  1218. if(HELLIONQ != 15)end;
  1219. mes "[" + strcharinfo(0) + "]";
  1220. mes "Hey, the floor around";
  1221. mes "here doesn't seem very";
  1222. mes "solid. Maybe there's";
  1223. mes "something underneath?";
  1224. next;
  1225. menu "Just check the floor.",-,"Dig through the dust.",s_Dig;
  1226. mes "^3151FFYou examine the floor,";
  1227. mes "but are unable to find";
  1228. mes "anything that resembles";
  1229. mes "a clue to the location";
  1230. mes "of the Hellion's gem";
  1231. mes "or a tablet piece.";
  1232. close;
  1233. s_Dig:
  1234. mes "[" + strcharinfo(0) + "]";
  1235. mes "Oh man, there's";
  1236. mes "so much dust! What";
  1237. mes "can I do about all of";
  1238. mes "this nasty dirt in the air?";
  1239. next;
  1240. mes "[" + strcharinfo(0) + "]";
  1241. mes "Well, there are all these";
  1242. mes "clues Gout'he found. I sucks";
  1243. mes "but I'll use this Grape Juice";
  1244. mes "to sort of keep this dust from";
  1245. mes "kicking up. And if I put my";
  1246. mes "morals on hold, I'll cover";
  1247. mes "my face...";
  1248. next;
  1249. mes "[" + strcharinfo(0) + "]";
  1250. mes "...With this Skirt of Virgin.";
  1251. mes "Oh, and I can use this Stone";
  1252. mes "Heart to prop any floor boards";
  1253. mes "I tilt while I look undernearth";
  1254. mes "this floor. Oh hey! I found it!";
  1255. mes "It's... It's another clue!";
  1256. next;
  1257. mes "[" + strcharinfo(0) + "]";
  1258. mes "Wait, wait...";
  1259. mes "I can't read the";
  1260. mes "engraving on this";
  1261. mes "stone slab, it's way";
  1262. mes "too old. Let's see...";
  1263. next;
  1264. mes "^3151FFYou cover the surface";
  1265. mes "of the slab and begin";
  1266. mes "to rub a Green Herb over";
  1267. mes "it. Fortunately, the juice from";
  1268. mes "the Green Herb makes the";
  1269. mes "engraving appear more clearly.";
  1270. next;
  1271. mes "[Stone Engraving]";
  1272. mes "^7151FF\"This has been entrusted to";
  1273. mes "the care of the compassionate";
  1274. mes "one so that my friends may";
  1275. mes "find peace. To he who finds";
  1276. mes "this, remember that avarice";
  1277. mes "knows no bounds. --Tyus.\"";
  1278. set HELLIONQ,16;
  1279. close;
  1280. s_Slab:
  1281. mes "[Stone Engraving]";
  1282. mes "^7151FF\"This has been entrusted to";
  1283. mes "the care of the compassionate";
  1284. mes "one so that my friends may";
  1285. mes "find peace. To he who finds";
  1286. mes "this, remember that avarice";
  1287. mes "knows no bounds. --Tyus.\"";
  1288. close;
  1289. }
  1290. pay_arche.gat,141,29,1 script Buddha Statue#HellionStat 111,3,3,{
  1291. if(HELLIONQ != 17)end;
  1292. mes "[" + strcharinfo(0) + "]";
  1293. mes "Hey, there's a huge";
  1294. mes "stone statue. This";
  1295. mes "must be what Gout'he";
  1296. mes "was telling me about.";
  1297. next;
  1298. mes "[Echoing Voice]";
  1299. mes "^7151FFYou must...";
  1300. mes "You must be...";
  1301. next;
  1302. mes "[" + strcharinfo(0) + "]";
  1303. mes "What the--?";
  1304. mes "There's a voice";
  1305. mes "inside my head!";
  1306. mes "and it's not even mine!";
  1307. next;
  1308. mes "[Echoing Voice]";
  1309. mes "You who have come";
  1310. mes "for the Tablet Piece,";
  1311. mes "I shall judge whether";
  1312. mes "or not you are worthy.";
  1313. mes "Answer this one question.";
  1314. next;
  1315. mes "[Echoing Voice]";
  1316. mes "You are in a situation";
  1317. mes "in which you will die,";
  1318. mes "but if you cause the death";
  1319. mes "of another person, you will";
  1320. mes "surely save yourself. So...";
  1321. mes "What do you do?";
  1322. next;
  1323. menu "I will kill to survive",s_Kill,"I have no choice, but to die.",s_Die,"I won't kill, but I'll find a way to live!",-,"I'll ask that person if it's okay to kill him.",s_Ask;
  1324. mes "[Echoing Voice]";
  1325. mes "Yes. Love for all life,";
  1326. mes "including your own, is";
  1327. mes "a trait all true heroes";
  1328. mes "must have. You have chosen...";
  1329. mes "Wisely. Please, take this into";
  1330. mes "your capable hands, adventurer.";
  1331. next;
  1332. mes "^3151FFA stone slab at the foot";
  1333. mes "of the statue slides open,";
  1334. mes "revealing a piece of the";
  1335. mes "tablet that will lead you";
  1336. mes "to the Hellion's gem.";
  1337. getitem 7334,1; //Payon Tablet
  1338. set HELLIONQ,18;
  1339. close;
  1340. s_Kill:
  1341. mes "[Echoing Voice]";
  1342. mes "there is a primal truth";
  1343. mes "to your answer. However...";
  1344. mes "You have chosen poorly.";
  1345. close2;
  1346. percentheal -100,0;
  1347. end;
  1348. s_Die:
  1349. mes "[Echoing Voice]";
  1350. mes "There is a kindness and";
  1351. mes "compassion in your answer";
  1352. mes "that is indeed rare. However,";
  1353. mes "where is the respect for your";
  1354. mes "own life? If you are that";
  1355. mes "willing to throw it away, you";
  1356. mes "are no hero.";
  1357. close2;
  1358. percentheal -100,0;
  1359. end;
  1360. s_Ask:
  1361. mes "[Echoing Voice]";
  1362. mes "The veneer of honesty in";
  1363. mes "your answer is surpassed by";
  1364. mes "your own cowardice. You have";
  1365. mes "chosen extremely poorly...";
  1366. close2;
  1367. percentheal -100,0;
  1368. end;
  1369. OnTouch:
  1370. if(HELLIONQ != 17)end;
  1371. specialeffect 313;
  1372. specialeffect2 313;
  1373. mes "^3151FFThe piece of tablet";
  1374. mes "that you have is shining";
  1375. mes "with light as if in repsonse";
  1376. mes "to something in the area.";
  1377. close;
  1378. }
  1379. morocc_in.gat,116,101,2 script Old Scholar Tyus 735,2,2,{
  1380. if(HELLIONQ == 27)goto s_Last;
  1381. if(countitem(7332))goto s_Tablet;
  1382. if(HELLIONQ == 25)goto s_Completion;
  1383. if(HELLIONQ == 24)goto s_Four;
  1384. if(HELLIONQ > 18)goto s_Welshyun;
  1385. if(HELLIONQ == 18)goto s_Morroc;
  1386. if(HELLIONQ > 8)goto s_Grout;
  1387. if(HELLIONQ == 8)goto s_Payon;
  1388. if(HELLIONQ == 4)goto s_Veggie;
  1389. if(HELLIONQ > 0)goto s_Seek;
  1390. if(hellion_consideration)goto s_Consider;
  1391. mes "[Sir Chilias'Tyus]";
  1392. mes "Greetings...";
  1393. mes "My name is Sir Chilias'Tyus.";
  1394. mes "I've lived a long time here in";
  1395. mes "Rune-Midgard and I've come";
  1396. mes "to see and know a lot of things.";
  1397. mes "Power, jealousy, hardship...";
  1398. next;
  1399. mes "[" + strcharinfo(0) + "]";
  1400. mes "Sp what exactly";
  1401. mes "brings you here to";
  1402. mes "the middle of Morroc?";
  1403. next;
  1404. mes "[Sir Chilias'Tyus]";
  1405. mes "This land has grown corrupt";
  1406. mes "with the disease of greed";
  1407. mes "and selfishness. Everywhere";
  1408. mes "you go, people are heartless,";
  1409. mes "but I still believe that I'll find";
  1410. mes "the one worth enough to help";
  1411. mes "me...";
  1412. next;
  1413. mes "[Sir Chilias'Tyus]";
  1414. mes "There is no shortage of";
  1415. mes "brave and strong warriors";
  1416. mes "in these dangerous times.";
  1417. mes "But for the thing I seek,";
  1418. mes "I must have the help of one";
  1419. mes "who is truly pure of heart...";
  1420. next;
  1421. menu "What are you looking for?",s_Looking,"Pure of heart? Hah! Good luck!",-;
  1422. mes "[Sir Chilias'Tyus]";
  1423. mes "Times are bad when";
  1424. mes "even the youth have";
  1425. mes "been jaded. But I refuse";
  1426. mes "to believe that hope is";
  1427. mes "truly lost in this age...";
  1428. close;
  1429. s_Glimmer:
  1430. mes "[Sir Chilias'Tyus]";
  1431. mes "Heh heh~ I see you eyes";
  1432. mes "glimmer with enthusiasm,";
  1433. mes "but it seems this task might";
  1434. mes "be a little too much for you.";
  1435. mes "I'm sorry, but that's the";
  1436. mes "reality I can't ignore...";
  1437. next;
  1438. mes "[Sir Chilias'Tyus]";
  1439. mes "Go out in to the world,";
  1440. mes "and grow in strength.";
  1441. mes "Perhaps after you become";
  1442. mes "more capable, I'll find that";
  1443. mes "I can rely on your help.";
  1444. close;
  1445. s_Looking:
  1446. if(BaseLevel < 75)goto s_Glimmer;
  1447. mes "[Sir Chilias'Tyus]";
  1448. mes "I suppose I should tell you";
  1449. mes "first about my grandfather,";
  1450. mes "who was once a young and";
  1451. mes "fearless adventurer, much";
  1452. mes "like yourself. Yes, he";
  1453. mes "traveled the world with his";
  1454. mes "three friends...";
  1455. next;
  1456. mes "[Sir Chilias'Tyus]";
  1457. mes "The four of them went on";
  1458. mes "many expeditions together";
  1459. mes "and earned themselves a";
  1460. mes "reputation as a courageous";
  1461. mes "team that worked especially";
  1462. mes "well together after many years.";
  1463. next;
  1464. mes "[Sir Chilias'Tyus]";
  1465. mes "Then, on what was supposed";
  1466. mes "to be a typical journey, they found";
  1467. mes "an uncharted cave. Curious, and";
  1468. mes "in need of rest, the four ventured";
  1469. mes "inside. There, they encountered";
  1470. mes "that most horrible creature...";
  1471. next;
  1472. mes "[Sir Chilias'Tyus]";
  1473. mes "It was a ferocious beast";
  1474. mes "with horns as large and as";
  1475. mes "sharp as their weapons, with";
  1476. mes "eyes that blazed with hellfire.";
  1477. mes "My grandfather could tell that";
  1478. mes "it was thirsty for blood.";
  1479. next;
  1480. mes "[Sir Chilias'Tyus]";
  1481. mes "They ran from the beast";
  1482. mes "as quickly as they could,";
  1483. mes "but the four were separated";
  1484. mes "in the cave's darkness. It was";
  1485. mes "all they could do to hide in";
  1486. mes "the darkness of the cave...";
  1487. next;
  1488. mes "[Sir Chilias'Tyus]";
  1489. mes "From his hiding place, my";
  1490. mes "grandfather heard the screams";
  1491. mes "of his friends as the monster";
  1492. mes "slaughtered them, one by one.";
  1493. mes "The screams and the monster's";
  1494. mes "growls were getting closer...";
  1495. next;
  1496. mes "[Sir Chilias'Tyus]";
  1497. mes "Unable to endure the";
  1498. mes "suffering of his trusted";
  1499. mes "comrades, my grandfather";
  1500. mes "jumped out hiding and tried";
  1501. mes "to save his friends. The beast";
  1502. mes "found him and they battled.";
  1503. next;
  1504. mes "[Sir Chilias'Tyus]";
  1505. mes "It was no use. The beast";
  1506. mes "was too powerful and my";
  1507. mes "grandfather was knocked out.";
  1508. mes "When he came to, his friends";
  1509. mes "were all dead and a shining";
  1510. mes "gem lay in a pool of blood.";
  1511. next;
  1512. mes "[Sir Chilias'Tyus]";
  1513. mes "My grandfather buried";
  1514. mes "his friends that day. He";
  1515. mes "took that gem as a memento";
  1516. mes "of their final expedition, but";
  1517. mes "wondered why the beast";
  1518. mes "had decided to spare him.";
  1519. next;
  1520. mes "[Sir Chilias'Tyus]";
  1521. mes "It wasn't long before he";
  1522. mes "experienced the gem's curse";
  1523. mes "firsthand. The gem inexplicably";
  1524. mes "drew people to it, taking the";
  1525. mes "greed in their hearts and";
  1526. mes "twisting their minds...";
  1527. next;
  1528. mes "[Sir Chilias'Tyus]";
  1529. mes "Grandfather believed the";
  1530. mes "beast let him live so that";
  1531. mes "the gem would be set loose";
  1532. mes "upon the outside world, free";
  1533. mes "to pollute it with its evil.";
  1534. mes "He had to do something...";
  1535. next;
  1536. mes "[Sir Chilias'Tyus]";
  1537. mes "However, the gem proved";
  1538. mes "to be formed out of pure evil";
  1539. mes "and could not be destroyed";
  1540. mes "by human means. In the end,";
  1541. mes "my grandfather hid the gem";
  1542. mes "someplace safe...";
  1543. next;
  1544. mes "[Sir Chilias'Tyus]";
  1545. mes "However, the threat of the";
  1546. mes "gem still exists. Grandfather";
  1547. mes "and my father worked for";
  1548. mes "years to find a way to seal";
  1549. mes "its darkness. Only now have I";
  1550. mes "been able to create a bracelet to";
  1551. mes "seal its evil power.";
  1552. next;
  1553. mes "[Sir Chilias'Tyus]";
  1554. mes "For my grandfather and his";
  1555. mes "friends to truly rest in peace,";
  1556. mes "I must find an adventurer of";
  1557. mes "pure heart who can find the";
  1558. mes "gem and bring it to me so that";
  1559. mes "I can finally seal its power.";
  1560. next;
  1561. mes "[Sir Chilias'Tyus]";
  1562. mes "I think... I think you";
  1563. mes "might be the hero that";
  1564. mes "I've been waiting for. Will";
  1565. mes "you help an old man for the";
  1566. mes "sake of all that is good?";
  1567. next;
  1568. menu "Of course, I will.",s_Will,"I'm sorry, but I can't.",-;
  1569. s_AskMuch:
  1570. mes "[Sir Chilias'Tyus]";
  1571. mes "I understand...";
  1572. mes "I know I am asking much";
  1573. mes "of you, and this task is not";
  1574. mes "one to take lightly. However,";
  1575. mes "I believe that you are wholly";
  1576. mes "capable of accomplishing this.";
  1577. set hellion_consideration,1;
  1578. close;
  1579. s_Consider:
  1580. mes "[Sir Chilias'Tyus]";
  1581. mes "So have you considered";
  1582. mes "my proposal? I believe that";
  1583. mes "you may be the one who will";
  1584. mes "help me in sealing away the";
  1585. mes "Hellion gem's evil forever.";
  1586. next;
  1587. menu "I will help you.",-,"...Sorry about that.",s_AskMuch;
  1588. set hellion_consideration,0;
  1589. s_Will:
  1590. mes "[Sir Chilias'Tyus]";
  1591. mes "Good good, but first";
  1592. mes "I must test to see if you";
  1593. mes "are worthy of holding the";
  1594. mes "Hellion's gem. I can't tell";
  1595. mes "you exacrlt where it is, but";
  1596. mes "I will give you some clues.";
  1597. next;
  1598. mes "[Sir Chilias'Tyus]";
  1599. mes "First, speak to Clanux";
  1600. mes "Heffron in Prontera. He";
  1601. mes "has offered to help me find";
  1602. mes "the gem, but I do not know if";
  1603. mes "I can trust him. Please help";
  1604. mes "me protect this world from the gem...";
  1605. set HELLIONQ,1;
  1606. close;
  1607. s_Seek:
  1608. mes "[Sir Chilias'Tyus]";
  1609. mes "Please seek out";
  1610. mes "Clanux Heffron in";
  1611. mes "Prontera. He may have";
  1612. mes "information regarding a";
  1613. mes "clue leading to the Hellion";
  1614. mes "gem. Good luck to you.";
  1615. close;
  1616. s_Veggie:
  1617. mes "^3151FFAs you told Chilias about";
  1618. mes "the strange message you";
  1619. mes "found inside the training";
  1620. mes "dummy he starts to mumble";
  1621. mes "something nobody could";
  1622. mes "possibly understand.";
  1623. next;
  1624. mes "[Sir Chilias'Tyus]";
  1625. mes "Ok, I think I know what";
  1626. mes "this clue means. Go find";
  1627. mes "this Veggie Lady, wherever";
  1628. mes "she might be. Then take";
  1629. mes "9 steps North and then";
  1630. mes "3 steps to the west.";
  1631. next;
  1632. mes "[Sir Chilias'Tyus]";
  1633. mes "I'm still clueless";
  1634. mes "about the \"BINGO\" part.";
  1635. mes "I'm sorry but I can't help";
  1636. mes "you with that, you'll have";
  1637. mes "to figure it out on your own.";
  1638. close;
  1639. s_Payon:
  1640. mes "[Sir Chilias'Tyus]";
  1641. mes "Ah, yes! This is one piece";
  1642. mes "of the table that will lead";
  1643. mes "you to the Hellion's gem!";
  1644. mes "This engraving was definitely";
  1645. mes "made by my grandfather, and";
  1646. mes "Christopher was one of his friends.";
  1647. next;
  1648. mes "[Sir Chilias'Tyus]";
  1649. mes "I suppose he hid these pieces";
  1650. mes "in the places that reminded him";
  1651. mes "of his friends. Now according";
  1652. mes "to the tablet's message, you";
  1653. mes "should find the next piece";
  1654. mes "in \"the city of thickest forest\"";
  1655. next;
  1656. mes "[Sir Chilias'Tyus]";
  1657. mes "I'm sure that the";
  1658. mes "next tablet piece is";
  1659. mes "in Payon, so go there";
  1660. mes "and see if you can find";
  1661. mes "it. Good luck to you,";
  1662. mes "kind adventurer.";
  1663. set HELLIONQ,9;
  1664. close;
  1665. s_Grout:
  1666. mes "[Sir Chilias'Tyus]";
  1667. mes "Now that I think about";
  1668. mes "it, there's a guy in Payon";
  1669. mes "that I know named Grout'the";
  1670. mes "Tuccok who knew my grandfather.";
  1671. mes "He might know something, but";
  1672. mes "he's a little, well... Hmm...";
  1673. close;
  1674. s_Morroc:
  1675. mes "[Sir Chilias'Tyus]";
  1676. mes "While you were gone,";
  1677. mes "I felt a little bad that you";
  1678. mes "were searching for the";
  1679. mes "tablet pieces on your own,";
  1680. mes "so I managed to find this";
  1681. mes "piece here in Morroc. But...";
  1682. next;
  1683. mes "[Sir Chilias'Tyus]";
  1684. specialeffect 313;
  1685. specialeffect2 313;
  1686. mes "Why are they glowing like";
  1687. mes "this? In any case, we have";
  1688. mes "this piece I found here in";
  1689. mes "Morroc, and the pieces you";
  1690. mes "found in Prontera and Payon.";
  1691. mes "There's one more left in Geffen.";
  1692. next;
  1693. mes "[Sir Chilias'Tyus]";
  1694. mes "Anyway, on the last tablet";
  1695. mes "piece that I found, it";
  1696. mes "says \"Hakim loved magic,";
  1697. mes "and always enjoyed its";
  1698. mes "wondrous city\", so I'm sure";
  1699. mes "the last piece is in Geffen.";
  1700. next;
  1701. mes "[Sir Chilias'Tyus]";
  1702. mes "Please take this third";
  1703. mes "tablet piece and find the";
  1704. mes "final piece so that we can";
  1705. mes "fulfill my dear grandfather's";
  1706. mes "greatest wish and forever";
  1707. mes "seal away the Hellion's gem.";
  1708. getitem 7335,1; //Morroc Tablet
  1709. set HELLIONQ,19;
  1710. next;
  1711. mes "[Sir Chilias'Tyus]";
  1712. mes "When you get back to Geffen,";
  1713. mes "please speak to Welshyun,";
  1714. mes "who's been helping me in";
  1715. mes "creating a device to seal the";
  1716. mes "gem's darkness. He is";
  1717. mes "worthy of trust and";
  1718. mes "will surely help us.";
  1719. close;
  1720. s_Welshyun:
  1721. mes "[Sir Chilias'Tyus]";
  1722. mes "Please visit the";
  1723. mes "sage named Welshyun";
  1724. mes "in Geffen. We are good";
  1725. mes "friends, so I am sure";
  1726. mes "that you can trust him.";
  1727. close;
  1728. s_Four:
  1729. mes "[Sir Chilias'Tyus]";
  1730. mes "You have all four";
  1731. mes "pieces of the tablet?";
  1732. mes "That's great news! Ah,";
  1733. mes "and the gem is embedded";
  1734. mes "in each of the tablet pieces.";
  1735. mes "We're so close to finishing!";
  1736. next;
  1737. mes "[Sir Chilias'Tyus]";
  1738. mes "Ah, would you go back";
  1739. mes "to Welshyun? I know it's";
  1740. mes "a hassle, but he is probably";
  1741. mes "the only one who can combine";
  1742. mes "the tablet pieces into their";
  1743. mes "complete form. Thank you...";
  1744. set HELLIONQ,25;
  1745. close;
  1746. s_Completion:
  1747. mes "[Sir Chilias'Tyus]";
  1748. mes "Ah, would you go back";
  1749. mes "to Welshyun? I know it's";
  1750. mes "a hassle, but he is probably";
  1751. mes "the only one who can combine";
  1752. mes "the tablet pieces into their";
  1753. mes "complete form. Thank you...";
  1754. close;
  1755. s_Tablet:
  1756. mes "[Sir Chilias'Tyus]";
  1757. mes "At long last. We have";
  1758. mes "everything. The Tablet";
  1759. mes "and the Hellion's gem.";
  1760. mes "Now I can finally use";
  1761. mes "this bracelet to seal";
  1762. mes "its power forever...";
  1763. next;
  1764. if(countitem(7337))goto s_HellionEye;
  1765. specialeffect 12;
  1766. mes "[Sir Chilias'Tyus]";
  1767. mes "Darkness that writhes,";
  1768. mes "souls lost in the inferno,";
  1769. mes "I offer you comfort, I offer";
  1770. mes "you peace. To the despairing";
  1771. mes "ones, to the shameless ones,";
  1772. mes "I give guidance to heaven...";
  1773. next;
  1774. specialeffect 58;
  1775. mes "[Sir Chilias'Tyus]";
  1776. mes "Instead of sadness,";
  1777. mes "let there be joy. Instead";
  1778. mes "of anger, let there be";
  1779. mes "love. Souls that are";
  1780. mes "lost will now find";
  1781. mes "their way...";
  1782. next;
  1783. specialeffect 83;
  1784. mes "[Sir Chilias'Tyus]";
  1785. mes "Light and hope...";
  1786. mes "Heaven and earth...";
  1787. mes "Cast away the darkness.";
  1788. next;
  1789. mes "[Sir Chilias'Tyus]";
  1790. mes "I did it.";
  1791. mes "After all these";
  1792. mes "long years I finally did";
  1793. mes "it. Thanks to you help.";
  1794. next;
  1795. mes "[Sir Chilias'Tyus]";
  1796. mes "Please take this";
  1797. mes "Nile Rose, which will";
  1798. mes "keep the power of the gem";
  1799. mes "in check. I trust that you will";
  1800. mes "keep its secret and protect it";
  1801. mes "from those motivated by greed.";
  1802. delitem 7332,1; //Complete Tablet
  1803. getitem 2658,1; //Nile Rose
  1804. set BaseExp,BaseExp+1000000;
  1805. set HELLIONQ,27;
  1806. next;
  1807. mes "[Sir Chilias'Tyus]";
  1808. mes "Thank you, kind";
  1809. mes "adventurer, for bringing";
  1810. mes "peace to my grandfather's";
  1811. mes "soul and for working to";
  1812. mes "protect peace in our world.";
  1813. mes "You are the truest of heroes.";
  1814. close;
  1815. s_HellionEye:
  1816. mes "[Sir Chilias'Tyus]";
  1817. mes "But your eyes...";
  1818. mes "They seem so tired";
  1819. mes "and I can sense some";
  1820. mes "sort of pain from them.";
  1821. mes "Did something happen?";
  1822. next;
  1823. mes "[" + strcharinfo(0) + "]";
  1824. mes "I learned the secret of";
  1825. mes "the Hellion's gem. It...";
  1826. mes "It turns people into";
  1827. mes "Hellion Revenants.";
  1828. mes "it's what happened";
  1829. mes "to your grandfather...";
  1830. next;
  1831. mes "[Sir Chilias'Tyus]";
  1832. mes "What...";
  1833. mes "What did you just say?";
  1834. next;
  1835. mes "[" + strcharinfo(0) + "]";
  1836. mes "The tablet had a map that";
  1837. mes "let me to the chamber where";
  1838. mes "your grandfather locked himself";
  1839. mes "up before he completed turning";
  1840. mes "into the Hellion Revenant.";
  1841. mes "It was horrible...";
  1842. next;
  1843. mes "[" + strcharinfo(0) + "]";
  1844. mes "At the entrance, he";
  1845. mes "left a message that said";
  1846. mes "that he wanted to be killed.";
  1847. mes "So that he could finally join";
  1848. mes "his friends instead of living";
  1849. mes "as a monster. So I... So I...";
  1850. next;
  1851. mes "[Sir Chilias'Tyus]";
  1852. mes "It's okay. I know you";
  1853. mes "did the right thing. It's";
  1854. mes "what my grandfather";
  1855. mes "would have wanted most.";
  1856. mes "Thank you for finally freeing";
  1857. mes "his soul and giving him peace.";
  1858. next;
  1859. mes "[" + strcharinfo(0) + "]";
  1860. mes "Here, I think you";
  1861. mes "should have this Eye";
  1862. mes "of Hellion, in case you";
  1863. mes "wanted a memento of";
  1864. mes "your dear grandfather.";
  1865. next;
  1866. mes "[Sir Chilias'Tyus]";
  1867. mes "I'd appreciate that.";
  1868. mes "Grandfather's eye...";
  1869. mes "It's full of the painful";
  1870. mes "experiences of the people";
  1871. mes "who were turned into Hellion";
  1872. mes "Revenants against their will.";
  1873. next;
  1874. mes "[Sir Chilias'Tyus]";
  1875. mes "But... Now is not the";
  1876. mes "time for sentiment. For";
  1877. mes "sake of my grandfather,";
  1878. mes "I must seal the power of";
  1879. mes "the Hellion's gem now!";
  1880. next;
  1881. specialeffect 12;
  1882. mes "[Sir Chilias'Tyus]";
  1883. mes "Darkness that writhes,";
  1884. mes "souls lost in the inferno,";
  1885. mes "I offer you comfort, I offer";
  1886. mes "you peace. To the despairing";
  1887. mes "ones, to the shameless ones,";
  1888. mes "I give guidance to heaven...";
  1889. next;
  1890. specialeffect 58;
  1891. mes "[Sir Chilias'Tyus]";
  1892. mes "Instead of sadness,";
  1893. mes "let there be joy. Instead";
  1894. mes "of anger, let there be";
  1895. mes "love. Souls that are";
  1896. mes "lost will now find";
  1897. mes "their way...";
  1898. next;
  1899. specialeffect 83;
  1900. mes "[Sir Chilias'Tyus]";
  1901. mes "Light and hope...";
  1902. mes "Heaven and earth...";
  1903. mes "Cast away the darkness.";
  1904. next;
  1905. mes "[Sir Chilias'Tyus]";
  1906. mes "I did it.";
  1907. mes "After all these";
  1908. mes "long years I finally did";
  1909. mes "it. Thanks to you help.";
  1910. next;
  1911. mes "[Sir Chilias'Tyus]";
  1912. mes "Please take this";
  1913. mes "Nile Rose, which will";
  1914. mes "keep the power of the gem";
  1915. mes "in check. I trust that you will";
  1916. mes "keep its secret and protect it";
  1917. mes "from those motivated by greed.";
  1918. delitem 7332,1; //Complete Tablet
  1919. delitem 7337,1; //Eye of Hellion
  1920. getitem 2658,1; //Nile Rose
  1921. getitem 603,1; //Old Blue Box
  1922. set BaseExp,BaseExp+1200000;
  1923. set HELLIONQ,27;
  1924. next;
  1925. mes "[Sir Chilias'Tyus]";
  1926. mes "Thank you, kind";
  1927. mes "adventurer, for bringing";
  1928. mes "peace to my grandfather's";
  1929. mes "soul and for working to";
  1930. mes "protect peace in our world.";
  1931. mes "You are the truest of heroes.";
  1932. next;
  1933. mes "^3151FFYou have received the";
  1934. mes "Nile Rose in which the";
  1935. mes "Hellion's gem is sealed.";
  1936. mes "The Eye of the Hellion has";
  1937. mes "granted you some experience";
  1938. mes "through its strange powers.";
  1939. close;
  1940. s_Last:
  1941. mes "[Sir Chilias'Tyus]";
  1942. mes "Long time no see. So, are you doing";
  1943. mes "well to keep the promise with me?";
  1944. mes "Please handle it with care";
  1945. mes "to prevent the evil power within";
  1946. mes "from being released.";
  1947. close;
  1948. OnTouch:
  1949. if(HELLIONQ != 18)end;
  1950. specialeffect 313;
  1951. specialeffect2 313;
  1952. mes "^3151FFOne of the Table Pieces";
  1953. mes "that you have is beginning to";
  1954. mes "shine with light, as if it were";
  1955. mes "responding to something...";
  1956. close;
  1957. }
  1958. gef_fild09.gat,296,59,1 script Hidden Cave#HellionCave 111,{
  1959. if(!countitem(7332))goto s_NoTablet;
  1960. mes "^3151FFAmongst the wild bushes";
  1961. mes "and overgrown grass, you";
  1962. mes "see a large rock slab that";
  1963. mes "resembles a door. As you";
  1964. mes "come closer, you can see a";
  1965. mes "groove on the rock's surface.";
  1966. next;
  1967. menu "Insert the Tablet.",s_Insert,"Ignore",-;
  1968. mes "^3151FFYou do nothing.";
  1969. mes "And nothing happens.";
  1970. close;
  1971. s_Insert:
  1972. mes "^3151FFYou insert the tablet into";
  1973. mes "the rock's groove and the";
  1974. mes "Hellion's gem begins to hum";
  1975. mes "and glow. The rock slides open,";
  1976. mes "revealing an engraved message";
  1977. mes "on the ground for you to read.";
  1978. next;
  1979. mes "^7151FF\"To you who have found this";
  1980. mes "place, I reveal the truth about";
  1981. mes "the Hellion Revenant. It was";
  1982. mes "never a devil, like we";
  1983. mes "believed, but a human being";
  1984. mes "slowly corrupted by the";
  1985. mes "darkness of the Hellion's";
  1986. mes "gem.\"";
  1987. next;
  1988. mes "^7151FF\"I learned this horrible";
  1989. mes "truth too late. Already,";
  1990. mes "I can feel the darkness";
  1991. mes "welling up within me.";
  1992. mes "It is all I can do to trap";
  1993. mes "myself in this chamber";
  1994. mes "before I lose all reason.\"";
  1995. next;
  1996. mes "^7151FF\"I failed an it's too";
  1997. mes "late for me, but I hope";
  1998. mes "someone in the future";
  1999. mes "can seal the Hellion gem's";
  2000. mes "dark power. And I hope that";
  2001. mes "someone will grant me the";
  2002. mes "sweet release I crave...\"";
  2003. next;
  2004. mes "^7151FF\"Brave hero, I beg of";
  2005. mes "you. Please kill me and";
  2006. mes "bring salvation to my soul.";
  2007. mes "Please release me so that";
  2008. mes "I can finally join my friends.\"";
  2009. mes " ";
  2010. mes " -Tyus";
  2011. close2;
  2012. warp "gef_dun03.gat",140,119;
  2013. end;
  2014. s_NoTablet:
  2015. mes "^3151FFAmongst the wild bushes";
  2016. mes "and overgrown grass, you";
  2017. mes "see a large rock slab that";
  2018. mes "resembles a door. But it";
  2019. mes "seems it is sealed by a";
  2020. mes "strong force so you're";
  2021. mes "unable to open it.";
  2022. close;
  2023. }