quests_comodo.txt 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  1. //===== eAthena Script =======================================
  2. //= Quest NPCs related to Comodo
  3. //===== By: ==================================================
  4. //= kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.4
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= Headgear Quests 1:
  11. //= - 'Cross Hat', 'Bulb Hairband'
  12. //= - 'Striped Hairband', 'Blue Hairband'
  13. //= Headgear Quests 2:
  14. //= - 'Mine Helmet', 'Parcel Hat'
  15. //= - 'Money Loser's Grief', 'Phantom of the Opera Mask'
  16. //= Doomed Swords Part 1:
  17. //= - Creation of doomed swords.
  18. //= - Part 2: Found in Quests_Yuno.txt
  19. //= - Part 3: Found in Doomed_Swords.txt
  20. //= - Variable in use: dmdswrd_Q (Max 45)
  21. //===== Additional Comments: =================================
  22. //= 1.1 Fixed exploits [Lupus]
  23. //= 1.2 Added more quest from cities/comodo.txt [Evera]
  24. //= 1.2a missing label [Lupus]
  25. //= 1.3 Doomed sword quest rescripted to Aegis 10.3 standards. [L0ne_W0lf]
  26. //= 1.4 Corrected NPC names to fall within proper restrictions. [L0ne_W0lf]
  27. //============================================================
  28. // Headgear Quests 1
  29. // Cross Hat, Bulb Hairband, Striped Hairband, Blue Hairband
  30. //============================================================
  31. comodo,227,158,4 script Hair Ornament Girl 700,{
  32. mes "[Hair Ornament Girl]";
  33. if(sex==1)mes "Oh, hi. Do you need to buy a present for a friend, your mother, or maybe your girl friend? Then get her a Hair Band! It's the best gift you can get her.";
  34. if(sex==0)mes "Oh, hi. Do you need to buy a present for a friend, your mother, or maybe yourself? Then get a Hair Band! It's the best gift you can give, or get.";
  35. next;
  36. mes "[Hair Ornament Girl]";
  37. mes "Just by bringing me a few simple items, I can make you a gorgeous Hair Band! Here, take a look at these....";
  38. M_Menu:
  39. next;
  40. menu "-Cross Hat Hairband",-, "-Bulb Hairband",M_Bulb, "-Striped Hairband",M_Striped, "-Blue Hairband",M_Blue, "-End Conversation",M_End;
  41. set @BAND$, "Cross Hat Hairband";
  42. set @ITEMS$, " ^5555FF1 Rosary^000000 and ^5555FF500 Destroyed Armors^000000.";
  43. if(countitem(2608)>=1 && countitem(7069)>=500) set @GETBAND, 1;
  44. goto sL_0;
  45. M_Bulb:
  46. set @BAND$, "Bulb Hairband";
  47. set @ITEMS$, "^5555FF1 Slotted Circlet^000000 and ^5555FF20 Glass Beads^000000.";
  48. if(countitem(2233)>=1 && countitem(746)>=20) set @GETBAND, 2;
  49. goto sL_0;
  50. M_Striped:
  51. set @BAND$, "Striped Hairband";
  52. set @ITEMS$, "^5555FF1500 Worn-out Prison Uniforms^000000.";
  53. if(countitem(1099)>=1500) set @GETBAND, 3;
  54. goto sL_0;
  55. M_Blue:
  56. set @BAND$, "Blue Hairband";
  57. set @ITEMS$, "^5555FF1 Bandana^000000, ^5555FF1 Cobaltblue Dyestuffs^000000, and ^5555FF300 Anolian Skins^000000.";
  58. if(countitem(2211)>=1 && countitem(978)>=1 && countitem(7003)>=300) set @GETBAND, 4;
  59. sL_0:
  60. mes "[Hair Ornament Girl]";
  61. mes "So you're interested in the "+@BAND$+" huh? Here are the items you'll need for the "+@BAND$+":";
  62. mes @ITEMS$;
  63. next;
  64. if(@GETBAND > 0) goto sL_GetBand;
  65. mes "[Hair Ornament Girl]";
  66. mes "Bring me all of these items and I will be able to make you a "+@BAND$+".";
  67. goto M_Menu;
  68. sL_GetBand:
  69. mes "[Hair Ornament Girl]";
  70. mes "I see that you have enough items for a "+@BAND$+". Would you like me to make you one?";
  71. next;
  72. menu "Yes, I would.",-, "No thank you.",M_End;
  73. if(@GETBAND == 1) goto ssL_Cross;
  74. if(@GETBAND == 2) goto ssL_Bulb;
  75. if(@GETBAND == 3) goto ssL_Striped;
  76. if(@GETBAND == 4) goto ssL_Blue;
  77. ssL_Cross:
  78. if(countitem(2608)<1 || countitem(7069)<500) goto L_Cheater;
  79. delitem 2608,1;
  80. delitem 7069,500;
  81. getitem 5036,1;
  82. goto ssL_End;
  83. ssL_Bulb:
  84. if(countitem(2233)<1 || countitem(746)<20) goto L_Cheater;
  85. delitem 2233,1;
  86. delitem 746,20;
  87. getitem 5034,1;
  88. goto ssL_End;
  89. ssL_Striped:
  90. if(countitem(1099)<1500) goto L_Cheater;
  91. delitem 1099,1500;
  92. getitem 5049,1;
  93. goto ssL_End;
  94. ssL_Blue:
  95. if(countitem(2211)<1 || countitem(978)<1 || countitem(7003)<300) goto L_Cheater;
  96. delitem 2211,1;
  97. delitem 978,1;
  98. delitem 7003,300;
  99. getitem 5052,1;
  100. ssL_End:
  101. mes "[Hair Ornament Girl]";
  102. mes "Here is your "+@BAND$+". Thank you.";
  103. set @GETBAND, 0;
  104. close;
  105. L_Cheater:
  106. mes "[Hair Ornament Girl]";
  107. mes "Ooops... Where are these items?";
  108. close;
  109. M_End:
  110. mes "[Hair Ornament Girl]";
  111. mes "Hope to see you again soon.";
  112. close;
  113. }
  114. // Headgear Quests 2
  115. // 'Mine Helmet', 'Parcel Hat', 'Money Loser's Grief', 'Phantom of the Opera Mask'
  116. //============================================================
  117. comodo,274,137,5 script Mari Isac 702,{
  118. mes "[Mari Isac]";
  119. mes "I travel all over the world and get to hear many interesting stories from the people I meet.";
  120. mes "Sometimes they even teach me how to make special items";
  121. next;
  122. mes "[Mari Isac]";
  123. mes "Would you be interested in some of the items I've learned to make?";
  124. M_Menu:
  125. next;
  126. menu "Tell me about them.",M_0, "Make me one.",M_1;
  127. M_0:
  128. menu "-Mine Helmet",-, "-Parcel Hat",sM_Parcel, "-Money Loser's Grief",sM_Money, "-Phantom of the Opera Mask",sM_Phantom;
  129. mes "[Mari Isac]";
  130. mes "I learned how to make the Mine Helmet when I traveled to the old coal mines near Geffen.";
  131. next;
  132. mes "[Mari Isac]";
  133. mes "The 2 most important things a miner needs are light, and head protection.";
  134. mes "A very inventive miner was able to create something that dealt with both issues.";
  135. next;
  136. mes "[Mari Isac]";
  137. mes "He attached a light to his safety helmet and called it a Mine Helmet.";
  138. mes "This meant that miners no longer had to worry about carrying around lamps and could work more efficiently.";
  139. next;
  140. mes "[Mari Isac]";
  141. mes "Anyways, if you want me to make you a Mine Helmet you'll need to bring me these items:";
  142. mes "^5555FF1 Safety Helmet^000000,";
  143. mes "^5555FF1 Candle^000000,";
  144. mes "^5555FF1 Crystal Mirror^000000,";
  145. mes "^5555FF25 Steel^000000.";
  146. next;
  147. goto M_0;
  148. sM_Parcel:
  149. mes "[Mari Isac]";
  150. mes "I learned how to make the Parcel Hat when I traveled to Alberta. There they have a unique way of distributing mail and goods.";
  151. next;
  152. mes "[Mari Isac]";
  153. mes "Instead of using a pouch or a sack to carry items for delivery, they use a special kind of hat, called a Parcel Hat.";
  154. mes "This hat allows the delivery personel to carry numerous items on their heads. Of course they have to have good balance to use it.";
  155. next;
  156. mes "[Mari Isac]";
  157. mes "Anyways, if you want me to make you a Parcel Hat, you'll need to bring me these items.";
  158. mes "^5555FF150 Fabric^000000,";
  159. mes "^5555FF100 Resin^000000,";
  160. mes "^5555FF1 Cobaltblue Dyestuffs^000000.";
  161. next;
  162. goto M_0;
  163. sM_Money:
  164. mes "[Mari Isac]";
  165. mes "I learned how to make the Money Loser's Grief when I traveled to Morroc.";
  166. next;
  167. mes "[Mari Isac]";
  168. mes "A long time ago an honest merchant got into a conflict with a crooked guild.";
  169. mes "Unlike the dirty guild, the merchant did not scam or cheat people.";
  170. next;
  171. mes "[Mari Isac]";
  172. mes "Because of this they attacked the merchants shop and took all of his goods.";
  173. next;
  174. mes "[Mari Isac]";
  175. mes "The merchant was devastated by the loss of his shop.";
  176. mes "In his sadness he used the bits and pieces that were left from his shop to create a new item.";
  177. next;
  178. mes "[Mari Isac]";
  179. mes "He created the Money Loser's Grief, a symbol of his great sadness. When people see it, they can't help but feel sympathetic to the wearer.";
  180. next;
  181. mes "[Mari Isac]";
  182. mes "Many merchants now wear it to help themselves get more business. Of course it is also a reminder of the honest merchants sad tale.";
  183. next;
  184. mes "[Mari Isac]";
  185. mes "Anyways, if you want me to make you a Money Losers Grief, you'll need to bring me these items.";
  186. mes "^5555FF1 Circlet with a single slott^000000,";
  187. mes "^5555FF1 Gold^000000,";
  188. mes "^5555FF20 Steel^000000,";
  189. mes "^5555FF80 Feathers^000000,";
  190. mes "^5555FF800 Sticky Mucus^000000.";
  191. next;
  192. goto M_0;
  193. sM_Phantom:
  194. mes "[Mari Isac]";
  195. mes "I learned how to make the Phantom of the Opera Mask when I traveled to Al De Baran.";
  196. mes "The story behind this item is that of a man's pure love........";
  197. next;
  198. mes "[Mari Isac]";
  199. mes "There once was a man who was in love with a beautiful opera singer.";
  200. mes "Unfortunately the man had a terribly disfigured face which forced to him to wear a mask.";
  201. next;
  202. mes "[Mari Isac]";
  203. mes "He was ashamed of his appearance and could never bring himself to face the singer.";
  204. mes "The man instead, watched her from a far, admiring every nuance of her beauty and grace.";
  205. next;
  206. mes "[Mari Isac]";
  207. mes "He lurked in the bowles of the opera house and from time to time he would sing his sad love song.";
  208. mes "Many people heard it and believed that there was a phantom haunting the opera house.";
  209. next;
  210. mes "[Mari Isac]";
  211. mes "The singer also heard his song, and through it she was able to feel his pain and his love for her.";
  212. mes "The two eventually met, and when they did she was able to look past his appereance and accept him for who he was.";
  213. next;
  214. mes "[Mari Isac]";
  215. mes "Too this day, the tale of the masked 'phantom' is still romantacised.";
  216. next;
  217. mes "[Mari Isac]";
  218. mes "Anyways, if you want me to make you a Phantom of the Opera Mask, you'll need to bring me these items.";
  219. mes "^5555FF1 Opera Masque^000000,";
  220. mes "^5555FF50 Horrendous Hairs^000000.";
  221. goto M_0;
  222. M_1:
  223. menu "-Mine Helmet",-, "-Parcel Hat",sM_MakePar, "-Money Loser's Grief",sM_MakeMon, "-Phantom of the Opera Mask",sM_MakePhan;
  224. if(countitem(5009)<1 || countitem(5028)<1 || countitem(747)<1 || countitem(999)<25) goto ssL_NoItems;
  225. delitem 5009, 1;
  226. delitem 5028, 1;
  227. delitem 747, 1;
  228. delitem 999, 25;
  229. mes "[Mari Isac]";
  230. mes "Here you go. Enjoy your Mine Helmet!";
  231. getitem 5031,1;
  232. close;
  233. sM_MakePar:
  234. if(countitem(1059)<150 || countitem(907)<100 || countitem(978)<1) goto ssL_NoItems;
  235. delitem 1059, 150;
  236. delitem 907, 100;
  237. delitem 978, 1;
  238. mes "[Mari Isac]";
  239. mes "Here you go. Enjoy your Parcel Hat!";
  240. getitem 5023,1;
  241. close;
  242. sM_MakeMon:
  243. if(countitem(2233)<1 || countitem(969)<1 || countitem(999)<20 || countitem(949)<80 || countitem(938)<800) goto ssL_NoItems;
  244. delitem 2233, 1;
  245. delitem 969, 1;
  246. delitem 999, 20;
  247. delitem 949, 80;
  248. delitem 938, 800;
  249. mes "[Mari Isac]";
  250. mes "Here you go. Enjoy your Money Loser's Grief!";
  251. getitem 5021,1;
  252. close;
  253. sM_MakePhan:
  254. if(countitem(2281)<1 || countitem(1048)<50) goto ssL_NoItems;
  255. delitem 2281,1;
  256. delitem 1048, 50;
  257. mes "[Mari Isac]";
  258. mes "Here you go. Enjoy your Phantom of the Opera Mask!";
  259. getitem 5043, 1;
  260. close;
  261. ssL_NoItems:
  262. mes "[Mari Isac]";
  263. mes "You don't seem to have enough items for me to make that hat. Please come back when you do.";
  264. close;
  265. }
  266. // Doomed Swords - Comodo Portion. (Continued in Juno)
  267. //============================================================
  268. comodo,206,310,4 script Campground Boy#cmd 704,{
  269. if (dmdswrd_Q < 4) {
  270. switch(dmdswrd_Q) {
  271. case 0:
  272. mes "[Rochito]";
  273. mes "Bread, fruits, vegetables...";
  274. mes "Bleh. All that other food is";
  275. mes "nothing compared to the ";
  276. mes "hearty flavor of meat. Yeap,";
  277. mes "BBQ camping in Comodo is";
  278. mes "heaven to a meat lover like me~";
  279. next;
  280. if (select("BBQ Camping...?:Cancel") == 1) {
  281. mes "[Rochito]";
  282. mes "Yeah man... You can eat";
  283. mes "Komodoru meat all day when";
  284. mes "you go BBQ camping. Komodoru";
  285. mes "is an animal native to Comodo";
  286. mes "and every part of it is delicious. Every. Single. Morsel.";
  287. next;
  288. mes "[Rochito]";
  289. mes "What makes this meat even";
  290. mes "more delicious is the special";
  291. mes "Koserahserah seasoning they";
  292. mes "use. That stuff is almost...";
  293. mes "addictive. Without it, we";
  294. mes "can't start our barbeque!";
  295. next;
  296. mes "[Rochito]";
  297. mes "If we settled on anything";
  298. mes "less than the very best BBQ,";
  299. mes "then our comrades that died";
  300. mes "to help ^FF0000banish that witch^000000 would";
  301. mes "surely be ashamed of us!";
  302. next;
  303. mes "[Rochito]";
  304. mes "Say, would you do us a favor?";
  305. mes "The Chief of Comodo was going";
  306. mes "to bring the Koserahserah and";
  307. mes "join us for our barbeque, but";
  308. mes "we're guessing he's got to";
  309. mes "cancel because of his duties.";
  310. next;
  311. mes "[Rochito]";
  312. mes "Let's see, our Chief lives to";
  313. mes "the west of these campgrounds.";
  314. mes "Would you visit him and see";
  315. mes "what's taking him so long";
  316. mes "to get over here?";
  317. set dmdswrd_Q,1;
  318. close;
  319. }
  320. mes "[Rochito]";
  321. mes "You know, people gather";
  322. mes "on these campgrounds in";
  323. mes "memory and respect of those";
  324. mes "that have fallen in battle";
  325. mes "against the witch of Comodo.";
  326. next;
  327. mes "[Rochito]";
  328. mes "Long before Comodo was";
  329. mes "built inside this huge cave,";
  330. mes "this witch used to live in here.^FFFFFF ^000000 A lot of people died trying to";
  331. mes "get rid of her, but there're^FFFFFF ^000000 rumors that she's still around...";
  332. close;
  333. case 1:
  334. mes "[Rochito]";
  335. mes "Komodoru meat is especially";
  336. mes "great when it's seasoned with";
  337. mes "Koserahserah. That flavoring";
  338. mes "is one of Comodo's claims to";
  339. mes "fame! You should try some~";
  340. next;
  341. mes "[Rochito]";
  342. mes "Speaking of which, our Chief";
  343. mes "still hasn't come and brought";
  344. mes "the Koserahserah! Would you";
  345. mes "see what's taking him so long?";
  346. mes "His house is located west of";
  347. mes "these campgrounds.";
  348. close;
  349. case 2:
  350. mes "[Rochito]";
  351. mes "Oh, hey, you're back.";
  352. mes "Did you speak to our";
  353. mes "Chief? Don't tell me";
  354. mes "he had to cancel--we've";
  355. mes "been planning this outing";
  356. mes "with him for a quite a while...";
  357. next;
  358. mes "^3355FFYou give Rochito the";
  359. mes "Koserahserah seasoning,";
  360. mes "and explain why the Chief";
  361. mes "cannot attend the barbeque.^000000";
  362. next;
  363. mes "[Rochito]";
  364. mes "Awww, nuts. I guess he's";
  365. mes "got responsbilities, but it's";
  366. mes "still a little disappointing.";
  367. mes "He's a buddy, after all. Well,";
  368. mes "at least he was kind enough";
  369. mes "to send the Koserahserah.";
  370. next;
  371. mes "[Rochito]";
  372. mes "It's really too bad that";
  373. mes "he can't join us. Ah, I've got";
  374. mes "an idea! Would you please bring";
  375. mes "this bottle to Tausupa, er, our";
  376. mes "Chief? It's Mureuchieligu, a";
  377. mes "special vintage wine~";
  378. next;
  379. mes "^3355FFYou've received a bottle";
  380. mes "of Mureuchieligu wine to";
  381. mes "deliver to the Comodo Chief.^000000";
  382. set dmdswrd_Q,3;
  383. close;
  384. case 3:
  385. mes "[Rochito]";
  386. mes "I know that I should be";
  387. mes "delivering that bottle of";
  388. mes "wine to the Chief myself,";
  389. mes "but I've got to tend to this";
  390. mes "barbeque. I hope you ";
  391. mes "understand...";
  392. next;
  393. mes "[Rochito]";
  394. mes "Anyway, you'd be doing";
  395. mes "me a huge favor if you";
  396. mes "spoke to the Chief, and gave";
  397. mes "him my thanks, along with";
  398. mes "that bottle of Mureuchieligu.";
  399. close;
  400. }
  401. }
  402. else {
  403. mes "[Rochito]";
  404. mes "Oh, hey there~";
  405. mes "Thanks for helping us";
  406. mes "out earlier. I wish the";
  407. mes "Chief would join us in our";
  408. mes "barbeque, but I understand";
  409. mes "that he has to protect Comodo.";
  410. next;
  411. mes "[Rochito]";
  412. mes "Hey, you know what?";
  413. mes "I can't exactly repay you";
  414. mes "with, you know, actual stuff,";
  415. mes "but I can give you a hot tip.";
  416. mes "There's some guy at the local";
  417. mes "Pub with some precious info.";
  418. next;
  419. mes "[Rochito]";
  420. mes "Yeah, supposedly, this";
  421. mes "guy knows more about the";
  422. mes "cave that Comodo was built";
  423. mes "in... Anyway, I really get the";
  424. mes "feeling that it just might";
  425. mes "lead to something, you know?";
  426. close;
  427. }
  428. }
  429. comodo,204,310,4 script Camping Youth#cmd 65,{
  430. if (dmdswrd_Q < 5) {
  431. switch(dmdswrd_Q) {
  432. case 0:
  433. case 1:
  434. mes "[Rockha]";
  435. mes "Oh man...";
  436. mes "I'm so excited!";
  437. mes "My buddies and I've";
  438. mes "been planning to get";
  439. mes "together for this barbeque";
  440. mes "for such a long time~";
  441. next;
  442. switch(select("Buddies...?:Cancel")) {
  443. case 1:
  444. mes "[Rockha]";
  445. mes "Yeah, some of us know";
  446. mes "each other when we fought";
  447. mes "together in the War of the";
  448. mes "Witch. In fact, one of them";
  449. mes "is the Chief of this village!";
  450. mes "Huh, why isn't he here yet?";
  451. next;
  452. mes "[Rockha]";
  453. mes "Anyway, even though";
  454. mes "our stations in life have";
  455. mes "changed, thankfully we're";
  456. mes "still friends. It's kinda weird, though, being on a first name";
  457. mes "basis with a village chief.";
  458. next;
  459. mes "[Rockha]";
  460. mes "Makes me feel...";
  461. mes "Important. I'm hobnobbing";
  462. mes "with a major political figure,";
  463. mes "after all. Amazing where your";
  464. mes "friends can end up in life...";
  465. close;
  466. }
  467. mes "[Rockha]";
  468. mes "I've almost forgotten";
  469. mes "how much I love hanging";
  470. mes "out with these guys. We";
  471. mes "should have barbeques";
  472. mes "together all the time~";
  473. close;
  474. case 2:
  475. mes "[Rockha]";
  476. mes "Wha--? Tausupa can't come,";
  477. mes "but he still sent us all of this Koserahserah? What a guy...";
  478. mes "I guess... That gives us";
  479. mes "a reason to hold another";
  480. mes "barbeque here soon, right?";
  481. close;
  482. case 3:
  483. mes "[Rockha]";
  484. mes "Hey, when you deliver";
  485. mes "that wine to Tausupa, the";
  486. mes "Village Chief, would you let";
  487. mes "him know that we miss the guy?";
  488. mes "He may be busy, but he'll always^FFFFFF ^000000 be our irreplaceable buddy.";
  489. close;
  490. case 4:
  491. mes "[Rockha]";
  492. mes "Oh hey, you spoke";
  493. mes "to Tausupa? Ah, it's";
  494. mes "too bad that he's busy,";
  495. mes "but it's great to hear that";
  496. mes "he'll enjoy our gift. Okay~";
  497. mes "I believe it's time to eat!";
  498. next;
  499. mes "[Rockha]";
  500. mes "But before that, let's";
  501. mes "make a toast... to Tausupa!";
  502. mes "Guardian of Comodo, and";
  503. mes "one of the best friends that";
  504. mes "a guy can have! Cheers!";
  505. mes "Hahahaha hahahaha~!";
  506. set dmdswrd_Q,5;
  507. next;
  508. mes "[Rockha]";
  509. mes "Ahh, you know what would";
  510. mes "make this meal perfect?";
  511. mes "Some of that legendary";
  512. mes "^3355FFComodo Cheese^000000 that I heard";
  513. mes "about from ^3355FFToruna^000000. Sure, it";
  514. mes "might not exist, but still...!";
  515. close;
  516. }
  517. }
  518. else {
  519. mes "[Rockha]";
  520. mes "You know, you're a really";
  521. mes "chill person. Thanks for";
  522. mes "helping us keep in touch";
  523. mes "with our old friend, the";
  524. mes "Village Chief. Man, being";
  525. mes "responsible must be rough...";
  526. next;
  527. mes "[Rockha]";
  528. mes "There's two things that";
  529. mes "would make our barbeque";
  530. mes "absolutely perfect--having";
  531. mes "the Village Chief here, and";
  532. mes "some of that legendary Comodo^FFFFFF ^000000 Cheese that ^3355FFToruna^000000 told me about.";
  533. close;
  534. }
  535. }
  536. comodo,209,305,4 script Camping Maiden#cmd 71,{
  537. mes "[Emralhandas]";
  538. mes "Rockha, let me pour";
  539. mes "you another drink. We";
  540. mes "always dreamed of this";
  541. mes "during the War of the Witch...";
  542. mes "Having a good time, all of us";
  543. mes "together in a time of peace~";
  544. next;
  545. if (select("War of the Witch?:Cancel") == 1) {
  546. mes "[Emralhandas]";
  547. mes "Before I tell you about the";
  548. mes "War of the Witch, I guess";
  549. mes "I should tell you about the";
  550. mes "quest to retrieve 4 rare swords";
  551. mes "of power, said to be the most";
  552. mes "powerful weapons ever made.";
  553. next;
  554. mes "[Emralhandas]";
  555. mes "Now, all 4 swords were";
  556. mes "successfully found 10 years";
  557. mes "after the search began. Then,";
  558. mes "4 protectors were chosen to";
  559. mes "ensure that the swords did";
  560. mes "not fall into the wrong hands.";
  561. next;
  562. mes "[Emralhandas]";
  563. mes "You might not think so just";
  564. mes "by looking at us, but we were";
  565. mes "the protectors--me, Rockha,";
  566. mes "Rochito, and Tausupa, the chief";
  567. mes "of this village. Now, we guarded these weapons very carefully...";
  568. next;
  569. mes "[Emralhandas]";
  570. mes "However, that didn't deter";
  571. mes "Mariposum, ancient witch of";
  572. mes "Comodo, from attacking us and";
  573. mes "trying to steal the swords. She";
  574. mes "was incredibly powerful, and";
  575. mes "we needed an army to fight her.";
  576. next;
  577. mes "[Emralhandas]";
  578. mes "That was the War of the";
  579. mes "Witch, basically. Mariposum";
  580. mes "with her own strange weapon";
  581. mes "of mass destruction against the";
  582. mes "four of us backed by a large";
  583. mes "force of courageous soldiers.";
  584. next;
  585. mes "[Emralhandas]";
  586. mes "Many of our comrades died...";
  587. mes "But finally we succeeded in";
  588. mes "imprisoning the witch by using";
  589. mes "the power of the swords. Yeah,";
  590. mes "if it weren't for Tausupa, we'd";
  591. mes "never have been able to do it.";
  592. close;
  593. }
  594. mes "[Emralhandas]";
  595. mes "Rockha, we still have";
  596. mes "to finish our mission:";
  597. mes "eat all of the barbeque";
  598. mes "that that we possibly can!";
  599. mes "Let's just stuff ourselves...";
  600. mes "All the way until tommorrow!";
  601. close;
  602. }
  603. comodo,209,314,4 script Campground Lad#cmd 706,{
  604. if (dmdswrd_Q < 4) {
  605. switch(dmdswrd_Q) {
  606. case 0:
  607. case 1:
  608. mes "[Rotute]";
  609. mes "Years ago, there was a huge";
  610. mes "quest to retrieve 4 rare swords";
  611. mes "of incredible power, supposedly";
  612. mes "the strongest swords ever made!";
  613. mes "But you know, there's a strange";
  614. mes "rumor about a secret 5th sword.";
  615. next;
  616. mes "[Rotute]";
  617. mes "This 5th sword is supposed";
  618. mes "to be hidden near Glastheim.";
  619. mes "If it does exist, it might have";
  620. mes "the power to change the world!";
  621. mes "Isn't that freakin' scary?";
  622. close;
  623. case 2:
  624. case 3:
  625. mes "[Rotute]";
  626. mes "Hey, isn't that Koserahserah?";
  627. mes "That's the best seasoning that";
  628. mes "you can have for meat dishes!";
  629. mes "Oh, you got that from the Chief";
  630. mes "to give to Rochito? Wow, they";
  631. mes "must be really good friends...";
  632. close;
  633. }
  634. }
  635. else {
  636. mes "[Rotute]";
  637. mes "Hello, thanks for helping";
  638. mes "out Rockha, Rochito and";
  639. mes "Emralhandas. They've known";
  640. mes "me since I was born, so it's";
  641. mes "like they're family to me.";
  642. next;
  643. mes "[Rotute]";
  644. mes "One of the reasons that";
  645. mes "they brought me here to";
  646. mes "Comodo was so that I could";
  647. mes "finally meet Tausupa. But...";
  648. mes "I guess he's too busy now.";
  649. mes "Still, I like this place!";
  650. close;
  651. }
  652. }
  653. comodo,221,310,4 script BBQ Boy#cmd 86,{
  654. mes "[Rinta]";
  655. mes "I didn't mean to,";
  656. mes "but I accidentally";
  657. mes "eavesdropped on those";
  658. mes "people over there. Are";
  659. mes "they really old friends";
  660. mes "with our Village Chief?";
  661. next;
  662. mes "[Rinta]";
  663. mes "In that case, they must";
  664. mes "be getting the special";
  665. mes "treatment usually reserved";
  666. mes "for visiting dignitaries and";
  667. mes "the like. Or something like that.";
  668. close;
  669. }
  670. comodo,218,309,4 script BBQ Visitor#cmd 90,{
  671. mes "[Razy]";
  672. mes "Those people over there";
  673. mes "are friends of the Village";
  674. mes "Chief? I was wondering about";
  675. mes "them for the longest time...";
  676. mes "I didn't even know our Chief";
  677. mes "had friends outside of Comodo.";
  678. next;
  679. mes "[Razy]";
  680. mes "You know, they kind of";
  681. mes "strike me as old war buddies,";
  682. mes "sprinkling their conversations";
  683. mes "with words like ''mission'' all";
  684. mes "the time. Then, there's those";
  685. mes "little scars they all have...";
  686. close;
  687. }
  688. comodo,216,310,4 script BBQ Papa#cmd::CmdFamily 50,{
  689. mes "[BBQ Boy]";
  690. mes "D-daddy! Is what those";
  691. mes "people talking about true?";
  692. mes "Was there really an evil";
  693. mes "witch here in our village?";
  694. next;
  695. mes "[BBQ Mama]";
  696. mes "Honey...";
  697. mes "I'm sure those";
  698. mes "good people were";
  699. mes "just kidding around~";
  700. mes "How can that be true?";
  701. next;
  702. mes "[BBQ Papa]";
  703. mes "Now, now, don't tell";
  704. mes "me my little man is afraid";
  705. mes "of something like a little";
  706. mes "witch. It's just an old fairy";
  707. mes "tale, son: no reason to";
  708. mes "feel frightened at all.";
  709. next;
  710. mes "[BBQ Boy]";
  711. mes "No, Daddy, I'm not";
  712. mes "scared! But if the witch";
  713. mes "really lived here, then her";
  714. mes "home is somewhere around";
  715. mes "here in Comodo, right? I'm";
  716. mes "gonna go find it someday!";
  717. next;
  718. mes "[BBQ Mama]";
  719. mes "Oh, but I'm sure our";
  720. mes "Chief would already know";
  721. mes "something about that witch";
  722. mes "if she truly exists. Anyway,";
  723. mes "let's hurry and eat before";
  724. mes "the barbeque burns, okay?";
  725. next;
  726. mes "[BBQ Boy]";
  727. mes "Yay, barbeque!";
  728. mes "Mmmmm... Someday,";
  729. mes "if that witch is real,";
  730. mes "I'm gonna find out";
  731. mes "all about her!";
  732. close;
  733. }
  734. comodo,215,307,4 duplicate(CmdFamily) BBQ Mama#cmd 74
  735. comodo,213,310,4 duplicate(CmdFamily) BBQ Boy#cmd2 706
  736. cmd_in02,32,140,4 script Chief#cmd 49,{
  737. if (dmdswrd_Q > 4) {
  738. mes "[Tausupa]";
  739. mes "Maybe you can't tell because";
  740. mes "of the way the light reflects,";
  741. mes "but Comodo is actually built";
  742. mes "inside a huge cave, giving the";
  743. mes "illusion of an eternal night.";
  744. mes "It's quite beautiful, really...";
  745. next;
  746. mes "[Tausupa]";
  747. mes "People come from all over";
  748. mes "the world to experience the";
  749. mes "excitement and beauty of";
  750. mes "our unique little village.";
  751. mes "We've become quite";
  752. mes "the tourist attraction~";
  753. close;
  754. }
  755. else if (dmdswrd_Q > 2 && dmdswrd_Q < 5) {
  756. switch(dmdswrd_Q) {
  757. case 3:
  758. mes "[Tausupa]";
  759. mes "Oh, how are my friends";
  760. mes "doing? I really wish that";
  761. mes "I could have delivered that";
  762. mes "Koserahserah personally,";
  763. mes "but I can't shirk my duties as";
  764. mes "Village Chief and protector.";
  765. next;
  766. mes "^3355FFYou give Tausupa the";
  767. mes "Meruchieligu wine that";
  768. mes "Rochito asked you to deliver.^000000";
  769. next;
  770. mes "[Tausupa]";
  771. mes "Ah... How very kind of";
  772. mes "them! They really sent me";
  773. mes "this wine? I'm truly touched...";
  774. mes "Rockha must have chosen";
  775. mes "this--I'll be sure to enjoy it.";
  776. next;
  777. mes "[Tausupa]";
  778. mes "Would you please express my";
  779. mes "thanks to my friends, ^3355FFRochito^000000,";
  780. mes "and ^3355FFRockha^000000? It's been far too";
  781. mes "long since I've seen them, but";
  782. mes "I hope that I get a chance to";
  783. mes "visit them someday soon.";
  784. set dmdswrd_Q,4;
  785. close;
  786. case 4:
  787. mes "[Tausupa]";
  788. mes "Would you please express my";
  789. mes "thanks to my friends, ^3355FFRochito^000000,";
  790. mes "and ^3355FFRockha^000000? It's been far too";
  791. mes "long since I've seen them, but";
  792. mes "I hope that I get a chance to";
  793. mes "visit them someday soon.";
  794. close;
  795. }
  796. }
  797. else {
  798. mes "[Tausupa]";
  799. mes "Greetings, adventurer,";
  800. mes "I am Tausupa, the Chief of";
  801. mes "Comodo, a city famous for its^FFFFFF ^000000 beauty and nightlife. I hope you";
  802. mes "enjoy your stay, whether you are^FFFFFF ^000000 seeking excitement or relaxation~";
  803. next;
  804. switch(select("About Casino:About Banished Witch:Cancel")) {
  805. case 1:
  806. mes "[Tausupa]";
  807. mes "Ah yes, Comodo is world";
  808. mes "famous for its Casino. There";
  809. mes "are many games that you can";
  810. mes "enjoy, but you'll need to use";
  811. mes "the Casino's special Eulwo^FFFFFF ^000000 currency and conversion system...";
  812. close;
  813. case 2:
  814. switch(dmdswrd_Q) {
  815. case 0:
  816. mes "[Tausupa]";
  817. mes "Banished witch...?";
  818. mes "Ah ha ha, do not worry,";
  819. mes "my friend, that is merely";
  820. mes "a very old tale. Not worth";
  821. mes "your concern at all...";
  822. close;
  823. case 1:
  824. mes "[Tausupa]";
  825. mes "Ah, judging from the scent";
  826. mes "of BBQ meat on your clothes,";
  827. mes "I'm guessing that you ran into";
  828. mes "Rochito in the campgrounds, ";
  829. mes "right? He must have told you^FFFFFF ^000000 that old story about the witch...";
  830. next;
  831. mes "[Tausupa]";
  832. mes "I'd like nothing better";
  833. mes "than to join them, but I must";
  834. mes "stay here. The witch does exist, and one my jobs is to make sure";
  835. mes "that she does not revive by using my sword's power to suppress her.";
  836. next;
  837. mes "[Tausupa]";
  838. mes "Although I planned to see";
  839. mes "them today, my duties must";
  840. mes "take priority. Would you please";
  841. mes "take this seasoning to Rochito";
  842. mes "and let him know that I can't";
  843. mes "come, and that I'm sorry...?";
  844. next;
  845. mes "^3355FFYou have received";
  846. mes "the Koserahserah";
  847. mes "seasoning from the Chief.^000000";
  848. next;
  849. mes "[Tausupa]";
  850. mes "Thank you so much...";
  851. mes "I understand that my";
  852. mes "friends cannot begin the";
  853. mes "barbeque without Comodo's";
  854. mes "world famous seasoning...";
  855. set dmdswrd_Q,2;
  856. close;
  857. case 2:
  858. mes "[Tausupa]";
  859. mes "Please take this special";
  860. mes "Koserserah seasoning to";
  861. mes "my friend ^3355FFRochito^000000 at the";
  862. mes "barbeque campground. Thanks";
  863. mes "again for your help, adventurer. ^FFFFFF ^000000";
  864. close;
  865. }
  866. case 3:
  867. mes "[Tausupa]";
  868. mes "Maybe you can't tell because";
  869. mes "of the way the light reflects,";
  870. mes "but Comodo is actually built";
  871. mes "inside a huge cave, giving the";
  872. mes "illusion of an eternal night.";
  873. mes "It's quite beautiful, really...";
  874. next;
  875. mes "[Tausupa]";
  876. mes "People come from all over";
  877. mes "the world to experience the";
  878. mes "excitement and beauty of";
  879. mes "our unique little village.";
  880. mes "We've become quite";
  881. mes "the tourist attraction~";
  882. close;
  883. }
  884. }
  885. }
  886. comodo,88,97,4 script Toruna#cmd 109,{
  887. mes "[Toruna]";
  888. mes "When I think about it,";
  889. mes "there are many fascinating";
  890. mes "facts about Comodo. Can";
  891. mes "you believe this entire city";
  892. mes "is built inside a natural cave?";
  893. next;
  894. switch(select("This cave is huge!:This place sure is strange...:Cancel")) {
  895. case 1:
  896. mes "[Toruna]";
  897. mes "Oh, this is a huge cave,";
  898. mes "but it's not impossible for";
  899. mes "nature to create something";
  900. mes "of this size and scale if given";
  901. mes "thousands, maybe even millions";
  902. mes "of years. Let me explain...";
  903. next;
  904. mes "[Toruna]";
  905. mes "Now, water is known as";
  906. mes "a universal solvent: running";
  907. mes "water will carve its own path";
  908. mes "in rock, given enough time.";
  909. mes "Now, keep in mind that this";
  910. mes "cave was once solid limestone.";
  911. next;
  912. mes "[Toruna]";
  913. mes "Years and years of running";
  914. mes "water from the rains and the";
  915. mes "water table have broken down";
  916. mes "this giant pocket of limestone,";
  917. mes "clearing out this huge, open";
  918. mes "area, the Comodo Cave.";
  919. next;
  920. mes "[Toruna]";
  921. mes "That may sound incredulous,";
  922. mes "but cracks in limestone grow";
  923. mes "into faults, then spacious gaps";
  924. mes "over years and years of erosion. Now, isn't natural science just";
  925. mes "amazing? You've got to agree...";
  926. close;
  927. case 2:
  928. if (dmdswrd_Q == 5 || dmdswrd_Q == 6) {
  929. switch(dmdswrd_Q) {
  930. case 5:
  931. mes "[Toruna]";
  932. mes "Yes, that is rather";
  933. mes "peculiar. What's also";
  934. mes "strange is this rumor I've";
  935. mes "been hearing about. Now, are^FFFFFF ^000000 you familiar with Comodo Cheese?";
  936. next;
  937. mes "[Toruna]";
  938. mes "It's this urban legend";
  939. mes "about this magnificent cheese";
  940. mes "that you can only find in Comodo. Now, not too many people believe";
  941. mes "it. I mean, you need goats or cows";
  942. mes "in order to make any cheese.";
  943. next;
  944. mes "[Toruna]";
  945. mes "However, there's this";
  946. mes "strange man that insists";
  947. mes "on its existence. The locals";
  948. mes "here chalk him up to be some";
  949. mes "sort of common loon, but who";
  950. mes "knows? Maybe it does exist...";
  951. set dmdswrd_Q,6;
  952. next;
  953. mes "[Toruna]";
  954. mes "Well, you can decide for";
  955. mes "yourself whether he's off";
  956. mes "his rocker. The last time";
  957. mes "I saw him, he was in the";
  958. mes "Comodo Bar, so you can";
  959. mes "probably find him there.";
  960. close;
  961. case 6:
  962. mes "[Toruna]";
  963. mes "Well, I like to think of";
  964. mes "Comodo as unique. What's";
  965. mes "really strange are some of";
  966. mes "the locals in this area. I've";
  967. mes "already told you about the";
  968. mes "man in the Comodo Bar, yes?";
  969. next;
  970. mes "[Toruna]";
  971. mes "He keeps insisting";
  972. mes "that there is a special";
  973. mes "kind of cheese in Comodo";
  974. mes "that you cannot get anywhere";
  975. mes "else. It sounds crazy, but his";
  976. mes "claim may be worth verifying...";
  977. close;
  978. }
  979. }
  980. else {
  981. mes "[Toruna]";
  982. mes "Ah, did you know that";
  983. mes "before it was an exotic";
  984. mes "village of excitement and";
  985. mes "leisure, Comodo was once";
  986. mes "a haven for evil creatures, ruled^FFFFFF ^000000 by a witch named Meropusum?";
  987. next;
  988. mes "[Toruna]";
  989. mes "This witch lay dormant for";
  990. mes "years until she was awoken";
  991. mes "somehow years ago. She was";
  992. mes "a huge threat to the people, but then she was finally defeated";
  993. mes "in the famous War of the Witch.";
  994. next;
  995. mes "[Toruna]";
  996. mes "One of the heroes of that";
  997. mes "war became the current Chief";
  998. mes "of this village, and it was";
  999. mes "through his leadership that";
  1000. mes "Comodo grew into a thriving";
  1001. mes "tourist attraction.";
  1002. next;
  1003. mes "[Toruna]";
  1004. mes "However, the threat of";
  1005. mes "Meropusum still exists,";
  1006. mes "so I would be careful when";
  1007. mes "exploring the uninhabited";
  1008. mes "areas of the Comodo region.";
  1009. close;
  1010. }
  1011. case 3:
  1012. mes "[Toruna]";
  1013. mes "There's much to do";
  1014. mes "in this city of Comodo,";
  1015. mes "as well as much to learn";
  1016. mes "about it. I can never tire of";
  1017. mes "visiting this exotic city...";
  1018. close;
  1019. }
  1020. }
  1021. comodo,164,291,4 script Rakusa#cmd 73,{
  1022. if (dmdswrd_Q == 6 || dmdswrd_Q == 7) {
  1023. switch(dmdswrd_Q) {
  1024. case 6:
  1025. mes "[Rakusa]";
  1026. mes "See that guy sitting";
  1027. mes "over there? All he does";
  1028. mes "is talk about Comodo Cheese,";
  1029. mes "just mumbling nonsense about";
  1030. mes "its incredible flavors all day";
  1031. mes "long. He's nuts, I tell you.";
  1032. next;
  1033. mes "[Rakusa]";
  1034. mes "First of all, you need";
  1035. mes "freakin' milk to make any";
  1036. mes "cheese. You see any cows";
  1037. mes "around here? Nope, I thought";
  1038. mes "so! Still, I think he really";
  1039. mes "believes that it exists...";
  1040. set dmdswrd_Q,7;
  1041. close;
  1042. case 7:
  1043. mes "[Rakusa]";
  1044. mes "Damn it! I know for a fact";
  1045. mes "that the idea of Comodo even";
  1046. mes "having a cheese is crazy, but";
  1047. mes "that guy's talking has gotten";
  1048. mes "me curious now! Maybe it does";
  1049. mes "exist? How would it even taste?";
  1050. close;
  1051. }
  1052. }
  1053. else {
  1054. mes "[Rakusa]";
  1055. mes "You know, Comodo has";
  1056. mes "a reputation for offering";
  1057. mes "high class recreation, so";
  1058. mes "people forget that we actually";
  1059. mes "have two dangerous dungeons.";
  1060. next;
  1061. mes "[Rakusa]";
  1062. mes "You adventurers need to";
  1063. mes "be extra careful if you explore";
  1064. mes "the caves--the monsters there";
  1065. mes "are unusually strong. Make";
  1066. mes "sure that you're well prepared";
  1067. mes "before you even think of going!";
  1068. close;
  1069. }
  1070. }
  1071. comodo,169,284,4 script Kichiri#cmd 98,{
  1072. if (dmdswrd_Q == 7 || dmdswrd_Q == 8) {
  1073. switch(dmdswrd_Q) {
  1074. case 7:
  1075. mes "[Kichiri]";
  1076. mes "Freakin' ^3355FFMagatu^000000...!";
  1077. mes "Can he talk about anything else";
  1078. mes "aside from Comodo Cheese?";
  1079. mes "I don't see why he's so excited";
  1080. mes "about the stuff! Everyone knows";
  1081. mes "it's just an old wive's tale.";
  1082. next;
  1083. mes "[Kichiri]";
  1084. mes "Would you do";
  1085. mes "me a favor and get";
  1086. mes "Magatu to shut up?";
  1087. mes "I just want to drink";
  1088. mes "my alcohol in peace!";
  1089. set dmdswrd_Q,8;
  1090. close;
  1091. break;
  1092. case 8:
  1093. mes "[Kichiri]";
  1094. mes "Cripes! Now Magatu's";
  1095. mes "got me wondering! I mean,";
  1096. mes "just because I've never seen";
  1097. mes "Comodo Cheese doesn't mean";
  1098. mes "it doesn't exist, right? Curses!^FFFFFF ^000000 Now I'm thinking about it too!";
  1099. close;
  1100. break;
  1101. }
  1102. }
  1103. else {
  1104. mes "[Kichiri]";
  1105. mes "There's more to do than";
  1106. mes "gambling in Comodo, you";
  1107. mes "know. Sometimes, I love";
  1108. mes "to watch the Dancers on";
  1109. mes "stage in the middle of the";
  1110. mes "village. They're so glamorous~";
  1111. next;
  1112. mes "[Kichiri]";
  1113. mes "I hear that the Dance";
  1114. mes "Academy only accepts female";
  1115. mes "Archers to become prospective";
  1116. mes "Dancers. I guess that makes";
  1117. mes "sense--they're tone and fit,";
  1118. mes "but not musclebound either...";
  1119. close;
  1120. }
  1121. }
  1122. comodo,163,280,4 script Magatu#cmd 55,{
  1123. if (dmdswrd_Q == 8 || dmdswrd_Q == 9) {
  1124. switch(dmdswrd_Q) {
  1125. case 8:
  1126. mes "[Magatu]";
  1127. mes "Comodo Cheese...";
  1128. mes "It really exists...!";
  1129. mes "And I'm so close to";
  1130. mes "having the proof! Oh...";
  1131. mes "That look in your eyes...";
  1132. mes "Y-you really believe me!";
  1133. next;
  1134. mes "[Magatu]";
  1135. mes "At long last, not only";
  1136. mes "someone who believes me,";
  1137. mes "but an adventurer to boot!";
  1138. mes "Great, this is perfect! Now,";
  1139. mes "listen, you want to learn more";
  1140. mes "about Comodo Cheese, right?";
  1141. next;
  1142. mes "[Magatu]";
  1143. mes "Well, I happen to know";
  1144. mes "someone who knows someone";
  1145. mes "that might be able to give you";
  1146. mes "the chance to try it for yourself! His name is ^3355FFManzi^000000 , and you can";
  1147. mes "find him in Comodo's Casino.";
  1148. next;
  1149. mes "[Magatu]";
  1150. mes "Oh, here, before I forget,";
  1151. mes "take my lucky bottle cap!";
  1152. mes "Show this to Manzi, and he'll";
  1153. mes "know that I sent you, and that";
  1154. mes "you want to learn more about";
  1155. mes "the elusive Comodo Cheese.";
  1156. next;
  1157. mes "^3355FFYou have received";
  1158. mes "Magatu's lucky bottle";
  1159. mes "cap to present to Manzi.";
  1160. set dmdswrd_Q,9;
  1161. close;
  1162. case 9:
  1163. mes "[Magatu]";
  1164. mes "Oh, don't forget to";
  1165. mes "show my lucky bottle cap";
  1166. mes "to Manzi, okay? You can find";
  1167. mes "him inside Comodo's Casino~";
  1168. mes "Good luck, and I hope you get";
  1169. mes "to try that Comodo Cheese~";
  1170. close;
  1171. }
  1172. }
  1173. else {
  1174. mes "[Magatu]";
  1175. mes "It's true, it really";
  1176. mes "exists... Comodo Cheese!";
  1177. mes "Its flavor must be incomparably";
  1178. mes "delicious if adventurers have";
  1179. mes "quested to obtain it for so";
  1180. mes "many generations...";
  1181. close;
  1182. }
  1183. }
  1184. cmd_in02,189,99,4 script Manzi#cmd 85,{
  1185. if (dmdswrd_Q == 9 || dmdswrd_Q == 10) {
  1186. switch(dmdswrd_Q) {
  1187. case 9:
  1188. mes "["+strcharinfo(0)+"]";
  1189. mes "Excuse, but I'm";
  1190. mes "looking for someone";
  1191. mes "named Manzi. Do you";
  1192. mes "know where I can find him?";
  1193. next;
  1194. mes "[Manzi]";
  1195. mes "Hey guy, I'm right here.";
  1196. mes "So what exactly do you";
  1197. mes "want? I'm, um, not in";
  1198. mes "trouble or anything, am I?";
  1199. next;
  1200. mes "^3355FFYou give Manzi the";
  1201. mes "lucky bottle cap that you";
  1202. mes "received from Magatsu.^000000";
  1203. next;
  1204. mes "[Manzi]";
  1205. mes "Whoa, Magatsu gave you";
  1206. mes "this? Ah, okay, so you must";
  1207. mes "be looking for that Comodo";
  1208. mes "Cheese he keeps talking about.";
  1209. mes "Alright, I owe him a favor, so";
  1210. mes "I'll tell you who to talk to...";
  1211. next;
  1212. mes "[Manzi]";
  1213. mes "From the Casino, go north";
  1214. mes "towards the center of the";
  1215. mes "village, and then look to";
  1216. mes "the right where you'll see";
  1217. mes "the Dance Stage. You'll see";
  1218. mes "this old woman right there.";
  1219. next;
  1220. mes "[Manzi]";
  1221. mes "Don't be fooled by the";
  1222. mes "way she looks--that old";
  1223. mes "lady is one of Comodo's";
  1224. mes "wisest elders. Ask her";
  1225. mes "about the cheese, and";
  1226. mes "let her know I sent you~";
  1227. next;
  1228. mes "[Manzi]";
  1229. mes "Ah, she won't take you";
  1230. mes "very seriously unless you";
  1231. mes "show her this. Magatsu gave";
  1232. mes "you his lucky bottle cap, so I'm^FFFFFF ^000000 gonna give you my lucky coin!";
  1233. mes "The old crone'll recognize it~";
  1234. next;
  1235. set dmdswrd_Q,10;
  1236. mes "^3355FFYou received Manzi's";
  1237. mes "''lucky coin.'' Strangely";
  1238. mes "enough, both sides";
  1239. mes "are heads.";
  1240. close;
  1241. case 10:
  1242. mes "[Manzi]";
  1243. mes "Look for the old crone";
  1244. mes "near the Dance Stage here";
  1245. mes "in Comodo and ask her about";
  1246. mes "Comodo Cheese, alright? Ah,";
  1247. mes "and try not to insult her, kay?";
  1248. mes "It'll make me look bad~";
  1249. close;
  1250. }
  1251. }
  1252. else {
  1253. if (Class == Job_Novice) {
  1254. mes "[Manzi]";
  1255. mes "What th...?";
  1256. mes "What's a kid like";
  1257. mes "you doing in a Casino?";
  1258. mes "Sure, it's not against the";
  1259. mes "rules, but I think you oughta";
  1260. mes "scram and play somewhere else!";
  1261. close;
  1262. }
  1263. mes "[Manzi]";
  1264. mes "Hey, have a good time in";
  1265. mes "the Casino, but don't go buck";
  1266. mes "wild. You wanna walk out of";
  1267. mes "here with the shirt on your back,^FFFFFF ^000000 you know? Some people don't";
  1268. mes "even leave here with that...";
  1269. close;
  1270. }
  1271. }
  1272. comodo,187,153,4 script Hullaris#cmd 701,{
  1273. if (dmdswrd_Q >= 10 && dmdswrd_Q <= 13) {
  1274. switch(dmdswrd_Q) {
  1275. case 10:
  1276. mes "[Hullaris]";
  1277. mes "Hula~hula~hula~";
  1278. mes "Love togther, love together,";
  1279. mes "we've groovin' on some more~";
  1280. mes "Love togther, love together,";
  1281. mes "we've living on the floor~";
  1282. next;
  1283. if (select("Present Muzi's Coin:Um... Comodo Cheese?") == 1) {
  1284. mes "^3355FFYou present Muzi's lucky";
  1285. mes "coin to the old woman.^000000";
  1286. next;
  1287. mes "[Hullaris]";
  1288. mes "Love! Love!";
  1289. mes "Love together~";
  1290. mes "Love! Love!";
  1291. mes "Love togeth-hm?";
  1292. mes "Oh, that's um, Muzi's";
  1293. mes "cheat coin, isn't it?";
  1294. next;
  1295. mes "[Hullaris]";
  1296. mes "He always said that he";
  1297. mes "might send someone with";
  1298. mes "that coin to me as a sign";
  1299. mes "of his trust in that person.";
  1300. mes "I suppose, then, that I'm";
  1301. mes "at your service. Now...";
  1302. next;
  1303. mes "[Hullaris]";
  1304. mes "What exactly did you need?";
  1305. mes "I'm guessing you've come";
  1306. mes "here to ask me something";
  1307. mes "about Comodo. As one of the";
  1308. mes "oldest elders, I know more";
  1309. mes "about this village than most...";
  1310. next;
  1311. mes "["+strcharinfo(0)+"]";
  1312. mes "Actually, I was hoping";
  1313. mes "you can tell me about";
  1314. mes "Comodo Cheese. If it really";
  1315. mes "exists, I'd like to know";
  1316. mes "where I can get some.";
  1317. next;
  1318. mes "[Hullaris]";
  1319. mes "Oh... That. First of all,";
  1320. mes "Comodo Cheese does exist,";
  1321. mes "and it's as precious as the";
  1322. mes "legends say. However, it's";
  1323. mes "not a true cheese, although^FFFFFF ^000000 you may think so from its taste.";
  1324. next;
  1325. mes "[Hullaris]";
  1326. mes "Yes, it's a very rare, natural";
  1327. mes "substance and isn't made from";
  1328. mes "cow or goat milk or anything";
  1329. mes "like that. However, Comodo";
  1330. mes "Cheese isn't merely food.";
  1331. mes "No, it's much more...";
  1332. next;
  1333. mes "[Hullaris]";
  1334. mes "Those that eat Comodo";
  1335. mes "Cheese find that their";
  1336. mes "true potential is unlocked.";
  1337. mes "Comodo Cheese's true name";
  1338. mes "is the ^3355FFAwakening Stone^000000. Now,";
  1339. mes "doesn't that sound impressive?";
  1340. next;
  1341. mes "[Hullaris]";
  1342. mes "The Awakening Stone is";
  1343. mes "one of the keys to obtaining";
  1344. mes "some kind of forbidden power.";
  1345. mes "That's why only the bravest";
  1346. mes "adventurers can expect the";
  1347. mes "chance of ever eating it.";
  1348. next;
  1349. mes "[Hullaris]";
  1350. mes "Do you really wish to";
  1351. mes "eat the Comodo Cheese and";
  1352. mes "see where its power may lead";
  1353. mes "you? If so, you'll have to endure great challenges to obtain it...";
  1354. next;
  1355. mes "[Hullaris]";
  1356. mes "When you've decided";
  1357. mes "to pursue the Awakening";
  1358. mes "Stone, seek out a man named";
  1359. mes "^3355FFNigirboran^000000. He will judge";
  1360. mes "whether you are worthy";
  1361. mes "of the Comodo Cheese...";
  1362. set dmdswrd_Q,11;
  1363. next;
  1364. mes "[Hullaris]";
  1365. mes "Now, you should be";
  1366. mes "able to find Nigiroban";
  1367. mes "training somewhere in one";
  1368. mes "of Comodo's Dungeon Caves.";
  1369. mes "I'll send him a message to";
  1370. mes "let him know you're coming...";
  1371. close;
  1372. }
  1373. mes "[Hullaris]";
  1374. mes "Love! Love!";
  1375. mes "Love together~";
  1376. mes "Love! Love!";
  1377. mes "Love togeth-hm?";
  1378. if (sex) {
  1379. mes "Boy, you're ruining";
  1380. mes "my groove! Now beat it!";
  1381. }
  1382. else {
  1383. mes "Girl, you're ruining";
  1384. mes "my groove! Get away~";
  1385. }
  1386. close;
  1387. case 11:
  1388. mes "[Hullaris]";
  1389. mes "Do you really wish to";
  1390. mes "eat the Comodo Cheese and";
  1391. mes "see where its power may lead";
  1392. mes "you? If so, you'll have to endure great challenges to obtain it...";
  1393. next;
  1394. mes "[Hullaris]";
  1395. mes "When you've decided";
  1396. mes "to pursue the Awakening";
  1397. mes "Stone, seek out a man named";
  1398. mes "^3355FFNigirboran^000000. He will judge";
  1399. mes "whether you are worthy";
  1400. mes "of the Comodo Cheese...";
  1401. next;
  1402. mes "[Hullaris]";
  1403. mes "Now, you should be";
  1404. mes "able to find Nigiroban";
  1405. mes "training somewhere in one";
  1406. mes "of Comodo's Dungeon Caves.";
  1407. mes "I'll send him a message to";
  1408. mes "let him know you're coming...";
  1409. close;
  1410. case 12:
  1411. mes "[Hullaris]";
  1412. mes "Hmm? So you've failed";
  1413. mes "Nigirboran's test, have";
  1414. mes "you? Well, you better train";
  1415. mes "until you can pass it. Otherwise, eating Comodo Cheese could";
  1416. mes "mean your death, you know.";
  1417. close;
  1418. case 13:
  1419. mes "[Hullaris]";
  1420. mes "Ah, you've returned.";
  1421. mes "So were you able to pass";
  1422. mes "Nigirboran's little test? An";
  1423. mes "adventurer like you should";
  1424. mes "be able to have no problem";
  1425. mes "with it. I've got faith in you~";
  1426. next;
  1427. mes "^3355FFYou present the token that";
  1428. mes "signifies that you passed";
  1429. mes "Nigirboran's test to Hullaris.^000000";
  1430. next;
  1431. mes "[Hullaris]";
  1432. mes "Ah, I was right after all.";
  1433. mes "I'm glad to see that you've";
  1434. mes "proven worthy of eating this";
  1435. mes "Comodo Cheese, or more";
  1436. mes "accurately, the Awakening";
  1437. mes "Stone. Here, let me get it...";
  1438. next;
  1439. mes "[Hullaris]";
  1440. mes "There you are...";
  1441. mes "Only brave and worthy";
  1442. mes "adventurers are allowed to";
  1443. mes "eat this. Understand that";
  1444. mes "eating Comodo Cheese is";
  1445. mes "a rare and coveted honor!";
  1446. next;
  1447. mes "^3355FFHullaris carefully";
  1448. mes "hands you a plate of";
  1449. mes "Comodo Cheese. You enjoy";
  1450. mes "the rich, smooth flavor of";
  1451. mes "each and every morsel...";
  1452. mes "It's sublimely delicious!^000000";
  1453. next;
  1454. mes "^3355FFAfter you finish eating the";
  1455. mes "Comodo Cheese, you feel";
  1456. mes "a subtle, yet definite energy";
  1457. mes "gently pulsing through your";
  1458. mes "body. You feel a powerful, yet";
  1459. mes "quiet confidence of being able";
  1460. mes "to accomplish anything.^000000";
  1461. set dmdswrd_Q,14;
  1462. next;
  1463. mes "[Hullaris]";
  1464. mes "Hahahah! So what";
  1465. mes "do you think? It's great,";
  1466. mes "isn't it? It's unreal, how";
  1467. mes "delicious it is. All other";
  1468. mes "foods can never match the";
  1469. mes "quality of Comodo Cheese~";
  1470. next;
  1471. mes "[Hullaris]";
  1472. mes "Now, I know that you probably";
  1473. mes "have things to do, but might";
  1474. mes "I suggest that you visit the";
  1475. mes "town of Al De Baran? There's";
  1476. mes "a man there that can tell you";
  1477. mes "about the Slate of Muriniel.";
  1478. next;
  1479. mes "[Hullaris]";
  1480. mes "You've already eaten the";
  1481. mes "Awakening Stone, so you may";
  1482. mes "as well obtain the other things";
  1483. mes "that you need to earn one of";
  1484. mes "the three forbidden swords.";
  1485. mes "It's just a thought...";
  1486. close;
  1487. }
  1488. }
  1489. else {
  1490. mes "[Hullaris]";
  1491. mes "Ah... Dance.";
  1492. mes "It's more than just a form";
  1493. mes "of entertainment. It's art,";
  1494. mes "it's seduction, it's battle,";
  1495. mes "and it's love. Only a true";
  1496. mes "Dancer can understand this...";
  1497. next;
  1498. mes "[Hullaris]";
  1499. mes "You know, Comodo is famous";
  1500. mes "for its Dance Academy and the";
  1501. mes "Dancers that have been trained";
  1502. mes "there. If you know any female";
  1503. mes "Archers, why don't you suggest";
  1504. mes "visiting the school to them?";
  1505. close;
  1506. }
  1507. }
  1508. beach_dun3,30,220,4 script Nigirboran#cmd 704,{
  1509. if (dmdswrd_Q >= 11 && dmdswrd_Q <= 14) {
  1510. switch(dmdswrd_Q) {
  1511. case 11:
  1512. mes "[Nigirboran]";
  1513. mes "You're the one that";
  1514. mes "Hullaris sent? So you're";
  1515. mes "here to earn the right to";
  1516. mes "eat the Awakening Stone...";
  1517. mes "Or Comodo Cheese, as it's";
  1518. mes "more commonly known.";
  1519. next;
  1520. mes "[Nigirboran]";
  1521. mes "Yes, it has many names...";
  1522. mes "But it's more than a mere";
  1523. mes "tasty treat--the Awakening";
  1524. mes "Stone can help you access";
  1525. mes "your true potential. But if you're not prepared... then you'll die.";
  1526. next;
  1527. mes "[Nigirboran]";
  1528. mes "If your mind and body";
  1529. mes "aren't sufficiently trained,";
  1530. mes "your body will reject the";
  1531. mes "Comodo Cheese and you";
  1532. mes "would die a slow, painful,";
  1533. mes "yet incredibly flavorful death.";
  1534. next;
  1535. mes "[Nigirboran]";
  1536. mes "But I'm sure that won't";
  1537. mes "happen to you! If Hullaris";
  1538. mes "sent you to me, you must";
  1539. mes "have a fighting chance, right?";
  1540. mes "So come back when you're";
  1541. mes "ready for the testing~";
  1542. set dmdswrd_Q,12;
  1543. close;
  1544. case 12:
  1545. mes "[Nigirboran]";
  1546. mes "Good, you have returned--";
  1547. mes "I'd expect nothing less of";
  1548. mes "a brave and daring adventurer.";
  1549. mes "Now hold still as I gauge your";
  1550. mes "body's internal energies and see^FFFFFF ^000000 if it can handle Comodo Cheese...";
  1551. next;
  1552. mes "[Nigirboran]";
  1553. mes "Alright.";
  1554. mes "Are you ready?";
  1555. mes "Now... Brace yourself!";
  1556. mes "Heeeeeyah! Hoooo-HAH!";
  1557. next;
  1558. if (JobLevel > 20 && BaseLevel > 25) {
  1559. switch(rand(1,3)) {
  1560. case 1:
  1561. mes "^3355FFA powerful current of";
  1562. mes "warmth immediately coarses";
  1563. mes "through your body from head";
  1564. mes "to toe, and you struggle to";
  1565. mes "keep yourself from writhing.^000000";
  1566. next;
  1567. mes "[Nigirboran]";
  1568. mes "Hmm... Your body seems";
  1569. mes "well trained, but your mind";
  1570. mes "is still reeling from the test.";
  1571. mes "If you ate the Comodo Cheese";
  1572. mes "now, you'd be reduced to an";
  1573. mes "incoherent invalid...";
  1574. next;
  1575. mes "[Nigirboran]";
  1576. mes "Go and train yourself";
  1577. mes "a little more, and try";
  1578. mes "to improve your mind's";
  1579. mes "sense of clarity. When";
  1580. mes "you feel ready, come";
  1581. mes "back to me once more.";
  1582. close;
  1583. case 2:
  1584. mes "^3355FFA powerful current of";
  1585. mes "warmth immediately coarses";
  1586. mes "through your body from head";
  1587. mes "to toe, and you struggle to";
  1588. mes "keep yourself from writhing.^000000";
  1589. next;
  1590. mes "[Nigirboran]";
  1591. mes "Huh. Your body is";
  1592. mes "strong, but your spirit";
  1593. mes "is weak. You need more";
  1594. mes "training. If you were to eat";
  1595. mes "the Comodo Cheese now...";
  1596. mes "You would evaporate.";
  1597. next;
  1598. mes "[Nigirboran]";
  1599. mes "But don't lose heart,";
  1600. mes "it's too early for you";
  1601. mes "to give up. Go out and";
  1602. mes "train some more, and then";
  1603. mes "come back to me when you";
  1604. mes "feel like you're ready.";
  1605. close;
  1606. case 3:
  1607. mes "^3355FFA powerful current of";
  1608. mes "warmth immediately coarses";
  1609. mes "through your body from head";
  1610. mes "to toe, and you struggle to";
  1611. mes "keep yourself from writhing.^000000";
  1612. next;
  1613. mes "[Nigirboran]";
  1614. mes "Yes... Yes...";
  1615. mes "Your mind, soul, and body";
  1616. mes "seem well trained. I think you";
  1617. mes "can eat the Comodo Cheese";
  1618. mes "without any ill effect. Good,";
  1619. mes "good, I think you're ready.";
  1620. next;
  1621. mes "[Nigirboran]";
  1622. mes "Here, take this little";
  1623. mes "token to Hullaris. That";
  1624. mes "will prove to her that";
  1625. mes "you've passed my little";
  1626. mes "test. Congratulations~";
  1627. next;
  1628. mes "^3355FFYou've received";
  1629. mes "a token button to";
  1630. mes "present to Hullaris";
  1631. mes "from Nigirboran.^000000";
  1632. set dmdswrd_Q,13;
  1633. next;
  1634. mes "[Nigirboran]";
  1635. mes "Ah, I almost forgot";
  1636. mes "to ask you. Why do you";
  1637. mes "seek the Comodo Cheese,";
  1638. mes "or the Awakening Stone?";
  1639. mes "Are you seeking one of";
  1640. mes "the 3 forbidden swords?";
  1641. next;
  1642. mes "[Nigirboran]";
  1643. mes "I don't know all the details,";
  1644. mes "but I do know that you'll need";
  1645. mes "the ^3355FFAwakening Stone^000000, the ^3355FFBook^000000";
  1646. mes "^3355FFof the Lamb^000000 and the ^3355FFSlate of^000000";
  1647. mes "^3355FFMurniel^000000 to even have a chance^FFFFFF ^000000 of obtaining one of those swords.";
  1648. next;
  1649. mes "[Nigirboran]";
  1650. mes "Let's see... After you";
  1651. mes "speak to Hullaris, you";
  1652. mes "should go to Al De Baran";
  1653. mes "and find someone named";
  1654. mes "^3355FFMeteurengut^000000 to learn about";
  1655. mes "the Slate of Muriniel.";
  1656. next;
  1657. mes "[Nigirboran]";
  1658. mes "Anyway, I wish you";
  1659. mes "the best of luck in";
  1660. mes "accomplishing your";
  1661. mes "goals. Godspeed...";
  1662. close;
  1663. }
  1664. }
  1665. else {
  1666. mes "^3355FFA torrent of warmth";
  1667. mes "coarses through your";
  1668. mes "entire body, and you";
  1669. mes "immediately faint from";
  1670. mes "the rush of energy.^000000";
  1671. next;
  1672. mes "[Nigirboran]";
  1673. mes "Goodness...!";
  1674. mes "Your mind and body";
  1675. mes "are far too weak to";
  1676. mes "handle the Comodo Cheese";
  1677. mes "now. You must seriously";
  1678. mes "train yourself much more...";
  1679. next;
  1680. mes "[Nigirboran]";
  1681. mes "After you've developed";
  1682. mes "some more strength, come";
  1683. mes "back to me. You can retake";
  1684. mes "this little test anytime~";
  1685. close;
  1686. }
  1687. case 13:
  1688. mes "[Nigirboran]";
  1689. mes "I don't know all the details,";
  1690. mes "but I do know that you'll need";
  1691. mes "the ^3355FFAwakening Stone^000000, the ^3355FFBook^000000";
  1692. mes "^3355FFof the Lamb^000000 and the ^3355FFSlate of^000000";
  1693. mes "^3355FFMurniel^000000 to even have a chance";
  1694. mes "of obtaining a forbidden sword.";
  1695. next;
  1696. mes "[Nigirboran]";
  1697. mes "Let's see... After you";
  1698. mes "speak to Hullaris, you";
  1699. mes "should go to Al De Baran";
  1700. mes "and find someone named";
  1701. mes "^3355FFMeteurengut^000000 to learn about";
  1702. mes "the Slate of Muriniel.";
  1703. next;
  1704. mes "[Nigirboran]";
  1705. mes "Anyway, I wish you";
  1706. mes "the best of luck in";
  1707. mes "accomplishing your";
  1708. mes "goals. Godspeed...";
  1709. close;
  1710. case 14:
  1711. mes "[Nigirboran]";
  1712. mes "Somewhere in ^3355FFAl De Baran^000000,";
  1713. mes "you'll find a man named";
  1714. mes "^3355FFMeteurengut^000000. He should be";
  1715. mes "able to help you learn more";
  1716. mes "about the Slate of Muriniel.";
  1717. close;
  1718. }
  1719. }
  1720. else {
  1721. mes "[Nigirboran]";
  1722. mes "Oh... Hello there.";
  1723. mes "I guess you could say";
  1724. mes "that I'm something of";
  1725. mes "a trainer here in Comodo.";
  1726. mes "My name is Nigirboran.";
  1727. mes "I know it's hard to say...";
  1728. next;
  1729. mes "[Nigirboran]";
  1730. mes "If Hullaris hasn't sent";
  1731. mes "you, then I don't think";
  1732. mes "I can be of any real help";
  1733. mes "for you. That seems to be";
  1734. mes "the case, so I'd appreciate";
  1735. mes "it if you'd let me train...";
  1736. close;
  1737. }
  1738. }
  1739. aldebaran,44,53,4 script Meteurengut#cmd 64,{
  1740. if (dmdswrd_Q >= 14 && dmdswrd_Q <= 17) {
  1741. switch(dmdswrd_Q) {
  1742. case 14:
  1743. mes "[Meteurengut]";
  1744. mes "Ah. Your body is surrounded";
  1745. mes "by the glow of one that has";
  1746. mes "eaten of the Awakening Stone.";
  1747. mes "That alone may prove your value";
  1748. mes "as an adventurer, but are you";
  1749. mes "free from your selfish desires?";
  1750. next;
  1751. mes "[Meteurengut]";
  1752. mes "Even just the smallest";
  1753. mes "taint of greed or jealousy";
  1754. mes "can prove to be a corruptive";
  1755. mes "influence when power is not";
  1756. mes "tempered by wisdom and a";
  1757. mes "sense of true compassion.";
  1758. next;
  1759. mes "[Meteurengut]";
  1760. mes "Others like you have come";
  1761. mes "before me in hopes of learning";
  1762. mes "about the Slate of Muriniel and";
  1763. mes "eventually obtaining one of the";
  1764. mes "three accursed blades. You are probably no different from them...";
  1765. next;
  1766. mes "[Meteurengut]";
  1767. mes "The Slate of Muriniel is an";
  1768. mes "alchemic artifact that can";
  1769. mes "help one access unimaginable";
  1770. mes "power, originally developed";
  1771. mes "by a master of alchemy that was";
  1772. mes "known as Rikaseh Sumarecon.";
  1773. next;
  1774. mes "[Meteurengut]";
  1775. mes "Sumarecon had two apprentices,";
  1776. mes "and after he had passed down the secrets of the Slate of Muriniel";
  1777. mes "to only one of his proteges, his other protege killed him and the";
  1778. mes "other student out of jealousy.";
  1779. next;
  1780. mes "[Meteurengut]";
  1781. mes "Sumarecon's secrets were";
  1782. mes "thought to be lost forever...";
  1783. mes "Fortunately, years later, an";
  1784. mes "Alchemist named Kuprite found";
  1785. mes "Sumarecon's secret documents";
  1786. mes "containing his knowledge.";
  1787. next;
  1788. mes "[Meteurengut]";
  1789. mes "Kuprite then taught these";
  1790. mes "secrets to a select group of";
  1791. mes "Alchemy students, one of which";
  1792. mes "was my ancestor, Burukesaemu.";
  1793. mes "And so, because of my lineage,";
  1794. mes "I have learned those secrets.";
  1795. next;
  1796. mes "[Meteurengut]";
  1797. mes "If you wish for me to";
  1798. mes "reproduce the Slate of";
  1799. mes "Muriniel for you, then";
  1800. mes "please bring me the items";
  1801. mes "I require to complete the";
  1802. mes "secret alchemic procedure.";
  1803. next;
  1804. mes "[Meteurengut]";
  1805. mes "I shall need";
  1806. mes "^3355FF1 Sapphire^000000,";
  1807. mes "^3355FF1 Shining Stone^000000,";
  1808. mes "^3355FF1 Rough Elunium^000000,";
  1809. mes "^3355FF1 Emerald^000000, and";
  1810. mes "^3355FF1 Blue Gemstone^000000.";
  1811. set dmdswrd_Q,15;
  1812. close;
  1813. case 15:
  1814. if (countitem(717) > 0 && countitem(726) > 0 && countitem(721) > 0 && countitem(640) > 0 && countitem(757) > 0) {
  1815. mes "[Meteurengut]";
  1816. mes "You've already found";
  1817. mes "all of the items I require to";
  1818. mes "create the Slate of Muriniel?";
  1819. mes "Fantastic. Now I can begin work";
  1820. mes "on this. However, there is one";
  1821. mes "more thing I must ask of you.";
  1822. delitem 717,1; //Blue_Gemstone
  1823. delitem 726,1; //Blue_Jewel
  1824. delitem 721,1; //Azure_Jewel
  1825. delitem 640,1; //Shining_Stone
  1826. delitem 757,1; //Elunium_Stone
  1827. set dmdswrd_Q,16;
  1828. next;
  1829. mes "[Meteurengut]";
  1830. mes "Would you please bring me";
  1831. mes "^3355FF1 Cobweb^000000? You can obtain";
  1832. mes "them by slaying spiders in";
  1833. mes "Muriniel Pass which is on the";
  1834. mes "way to Al De Baran from here.";
  1835. next;
  1836. mes "[Meteurengut]";
  1837. mes "I'd have asked for it";
  1838. mes "sooner, but I need to prepare";
  1839. mes "all of these stones, and I need";
  1840. mes "the freshest Cobwebs I can get.";
  1841. mes "I'll make sure that these stones^FFFFFF ^000000 are ready when you return.";
  1842. close;
  1843. }
  1844. mes "[Meteurengut]";
  1845. mes "If you wish for me to";
  1846. mes "reproduce the Slate of";
  1847. mes "Muriniel for you, then";
  1848. mes "please bring me the items";
  1849. mes "I require to complete the";
  1850. mes "secret alchemic procedure.";
  1851. next;
  1852. mes "[Meteurengut]";
  1853. mes "I shall need";
  1854. mes "^3355FF1 Sapphire^000000,";
  1855. mes "^3355FF1 Shining Stone^000000,";
  1856. mes "^3355FF1 Rough Elunium^000000,";
  1857. mes "^3355FF1 Emerald^000000, and";
  1858. mes "^3355FF1 Blue Gemstone^000000.";
  1859. close;
  1860. case 16:
  1861. if (countitem(1025) > 0) {
  1862. mes "[Meteurengut]";
  1863. mes "I see that you've brought";
  1864. mes "me a Cobweb. It's hard to";
  1865. mes "believe, but it's integreal to";
  1866. mes "creating the Slate of Muriniel.";
  1867. mes "Now, if you'll wait a moment,";
  1868. mes "I shall complete the slate...";
  1869. next;
  1870. delitem 1025,1; //Spiderweb
  1871. mes "*^3355FFClang Clang Clang!*";
  1872. mes "*Zaaaaaaaaaaaaaap*";
  1873. mes "*Ching tink t-t-t-tap*^000000";
  1874. set dmdswrd_Q,17;
  1875. next;
  1876. mes "[Meteurengut]";
  1877. mes "*Whew* It's finished.";
  1878. mes "Please take care of this";
  1879. mes "slate, and know that I am";
  1880. mes "entrusting you with an artifact";
  1881. mes "that can help you access power";
  1882. mes "beyond your imagination...";
  1883. next;
  1884. mes "^3355FFYou have received";
  1885. mes "the Slate of Muriniel.^000000";
  1886. next;
  1887. mes "[Meteurengut]";
  1888. mes "There. You have eaten of";
  1889. mes "the Awakening Stone and you";
  1890. mes "possess the Slate of Muriniel.";
  1891. mes "Now, you must try to obtain the";
  1892. mes "^3355FFBook of the Lamb^000000 if you are";
  1893. mes "questing for a doomed sword...";
  1894. next;
  1895. mes "[Meteurengut]";
  1896. mes "I know very little about";
  1897. mes "that artifact, and its secrets";
  1898. mes "are as well guarded as that of";
  1899. mes "the Slate of Muriniel. However,";
  1900. mes "I do know that a man in Morroc^FFFFFF ^000000 can create the Book of the Lamb...";
  1901. next;
  1902. mes "[Meteurengut]";
  1903. mes "If that man is still in";
  1904. mes "Morroc, then he will probably";
  1905. mes "recognize the subtle emanation";
  1906. mes "of the Awakening Stone and the";
  1907. mes "Slate of Muriniel from you. Best^FFFFFF ^000000 of luck to you, adventurer...";
  1908. close;
  1909. }
  1910. mes "[Meteurengut]";
  1911. mes "Ah, have you brought a";
  1912. mes "Cobweb? I know it sounds";
  1913. mes "strange, but I really need the";
  1914. mes "unique energy found only in";
  1915. mes "fresh Cobwebs to finish the";
  1916. mes "Slate of Muriniel for you...";
  1917. close;
  1918. case 17:
  1919. mes "[Meteurengut]";
  1920. mes "You've eaten of the";
  1921. mes "Awakening Stone and";
  1922. mes "now possess the Slate of";
  1923. mes "Muriniel. Now, all you must";
  1924. mes "do is obtain the Book of the";
  1925. mes "Lamb. I know little about it...";
  1926. next;
  1927. mes "[Meteurengut]";
  1928. mes "All I can tell you is that";
  1929. mes "there should be a man in";
  1930. mes "Morroc that can create it";
  1931. mes "for you. A man like that can";
  1932. mes "sense the Slate of Muriniel,";
  1933. mes "so he may call out to you...";
  1934. close;
  1935. }
  1936. }
  1937. else {
  1938. mes "[Meteurengut]";
  1939. mes "The ^3355FFSlate of Muriniel^000000";
  1940. mes "is an ancient artifact";
  1941. mes "that can only be created";
  1942. mes "by the power of Alchemy.";
  1943. mes "It is one of the best kept";
  1944. mes "secrets of my family...";
  1945. next;
  1946. mes "[Meteurengut]";
  1947. mes "I'm responsible for guarding";
  1948. mes "the secrets of its creation, but^FFFFFF ^000000 I must also share the power";
  1949. mes "of the slate with those that";
  1950. mes "prove themselves worthy of it.";
  1951. next;
  1952. mes "[Meteurengut]";
  1953. mes "After all, power is useless";
  1954. mes "if it is never used. However,";
  1955. mes "if power is never balanced with";
  1956. mes "wisdom and compassion, then";
  1957. mes "it will inevitably do more harm";
  1958. mes "than good in the very end...";
  1959. close;
  1960. }
  1961. }
  1962. morocc,201,30,4 script Zaka#cmd 99,{
  1963. if (dmdswrd_Q >= 17 && dmdswrd_Q <= 22) {
  1964. switch(dmdswrd_Q) {
  1965. case 17:
  1966. mes "[Zaka]";
  1967. mes "...You there! Hold it!";
  1968. mes "Yes, I can feel it from";
  1969. mes "you... The power of the";
  1970. mes "Awakening Stone... And...";
  1971. mes "The Slate of Muriniel?";
  1972. mes "Finally, you've come.";
  1973. next;
  1974. mes "[Zaka]";
  1975. mes "I'm fully aware that only";
  1976. mes "those that seek to own one";
  1977. mes "of the doomed swords would";
  1978. mes "trouble themselve to obtain";
  1979. mes "those items. All that is left for^FFFFFF ^000000 you is the Book of the Lamb...";
  1980. next;
  1981. mes "[Zaka]";
  1982. mes "I've been waiting for so";
  1983. mes "long for the opportunity to";
  1984. mes "create the Book of the Lamb.";
  1985. mes "If you really want the book,";
  1986. mes "I will help you so long as";
  1987. mes "you will help me.";
  1988. next;
  1989. mes "[Zaka]";
  1990. mes "However, creating the book";
  1991. mes "is a complicated process and";
  1992. mes "requires multiple stages of";
  1993. mes "preparation. Therefore, I shall";
  1994. mes "ask you to bring me the items";
  1995. mes "I require in separate batches.";
  1996. next;
  1997. mes "[Zaka]";
  1998. mes "Alright...";
  1999. mes "What was it now?";
  2000. mes "Ah, yes. The first thing";
  2001. mes "I need is ^3355FF2 Snake Scales^000000,";
  2002. mes "so please bring those soon.";
  2003. set dmdswrd_Q,18;
  2004. close;
  2005. case 18:
  2006. if (countitem(926) > 1) {
  2007. delitem 926,2; //Scale_Of_Snakes
  2008. set dmdswrd_Q,19;
  2009. mes "[Zaka]";
  2010. mes "Ah, you've brought";
  2011. mes "the Snake Scales? Good,";
  2012. mes "let me take them now and";
  2013. mes "begin work on the Book of";
  2014. mes "the Lamb. Now, I need you";
  2015. mes "to bring me ^3355FF1 Scale Shell^000000.";
  2016. next;
  2017. mes "[Zaka]";
  2018. mes "I know it would be more";
  2019. mes "convenient for you if I told";
  2020. mes "you everything I needed at";
  2021. mes "once, but actually, this way";
  2022. mes "is much more convenient for";
  2023. mes "me. I'll be waiting right here!";
  2024. close;
  2025. }
  2026. mes "[Zaka]";
  2027. mes "The first thing I'll";
  2028. mes "need to begin creating";
  2029. mes "the Book of the Lamb is";
  2030. mes "^3355FF2 Snake Scales^000000. Come back";
  2031. mes "to me once you get them,";
  2032. mes "alright? I'll be right here.";
  2033. close;
  2034. case 19:
  2035. if (countitem(936) > 0) {
  2036. mes "[Zaka]";
  2037. mes "Oh, nice! You've brought";
  2038. mes "this Scale Shell for me,";
  2039. mes "right? Great, great, this will";
  2040. mes "help enhance the book's";
  2041. mes "physical durability, but it";
  2042. mes "still needs magic durability...";
  2043. next;
  2044. mes "[Zaka]";
  2045. mes "Next, you need to bring";
  2046. mes "me ^3355FF1 Shining Shell^000000. Hurry";
  2047. mes "and bring you to me before";
  2048. mes "I finish this part of the process, okay? Wait, actually, I think";
  2049. mes "you can take your time...";
  2050. delitem 936,1; //Scales_Shell
  2051. set dmdswrd_Q,20;
  2052. close;
  2053. }
  2054. mes "[Zaka]";
  2055. mes "I'll be waiting right";
  2056. mes "here while you go and";
  2057. mes "look for a ^3355FFScale Shell^000000";
  2058. mes "that you can bring to me.";
  2059. mes "I'll need that in order to";
  2060. mes "finish this Book of the Lamb.";
  2061. close;
  2062. case 20:
  2063. if (countitem(954) > 0) {
  2064. mes "[Zaka]";
  2065. mes "Ah, you're just in time!";
  2066. mes "Have you got the Shining";
  2067. mes "Scale? Perfect. Now, there";
  2068. mes "is just one more item that";
  2069. mes "I want to ask you to bring me:";
  2070. mes "^3355FF1 Stinky Scale^000000. Easy, right?";
  2071. delitem 954,1; //Shining_Scales
  2072. set dmdswrd_Q,21;
  2073. next;
  2074. mes "[Zaka]";
  2075. mes "The energy of a Stinky";
  2076. mes "Scale can be used to";
  2077. mes "regulate the power of";
  2078. mes "incredibly potent artifacts.";
  2079. mes "Without that item, the Book";
  2080. mes "of the Lamb isn't much use...";
  2081. close;
  2082. }
  2083. mes "[Zaka]";
  2084. mes "If you want me to";
  2085. mes "finish this Book of";
  2086. mes "the Lamb, you need";
  2087. mes "to come back here with";
  2088. mes "^3355FF1 Shining Scale^000000. There's";
  2089. mes "no way to work around it...";
  2090. close;
  2091. case 21:
  2092. if (countitem(959) > 0) {
  2093. mes "[Zaka]";
  2094. mes "What's that sme--?";
  2095. mes "Oh, right. I asked you to";
  2096. mes "bring me a Stinky Scale.";
  2097. mes "Now I can finally complete";
  2098. mes "this Book of the Lamb! I've";
  2099. mes "been looking forward to this...";
  2100. next;
  2101. mes "^3355FFZaka completes";
  2102. mes "the creation of the";
  2103. mes "Book of the Lamb.^000000";
  2104. delitem 959,1; //Rotten_Scale
  2105. set dmdswrd_Q,22;
  2106. next;
  2107. mes "[Zaka]";
  2108. mes "What...?!";
  2109. mes "That's it? Well, um,";
  2110. mes "it's done. That felt";
  2111. mes "rather anticlimatic, but";
  2112. mes "I can finally see this";
  2113. mes "thing with my own eyes!";
  2114. next;
  2115. mes "[Zaka]";
  2116. mes "Alright, you've eaten of the";
  2117. mes "Awakening Stone, obtained the";
  2118. mes "Slate of Muriniel, and now have";
  2119. mes "the Book of the Lamb. You're";
  2120. mes "getting very close to owning";
  2121. mes "one of the doomed swords.";
  2122. next;
  2123. mes "[Zaka]";
  2124. mes "There is man that you";
  2125. mes "must find in Comodo named";
  2126. mes "^3355FFWon^000000. He will judge you, and";
  2127. mes "then give you the proof that";
  2128. mes "shows you are qualified to";
  2129. mes "be a doomed sword bearer.";
  2130. next;
  2131. mes "[Zaka]";
  2132. mes "He looks like a simple";
  2133. mes "man, but he is a true living";
  2134. mes "legend renown for his wisdom.";
  2135. mes "If you really want a doomed";
  2136. mes "sword, you need to speak to";
  2137. mes "Won and ask him to guide you.";
  2138. close;
  2139. }
  2140. mes "[Zaka]";
  2141. mes "The last thing that I need";
  2142. mes "to complete the Book of the";
  2143. mes "Lamb is ^3355FF1 Stinky Scale^000000. Please";
  2144. mes "bring that to me as soon as";
  2145. mes "you can. Thank you for being";
  2146. mes "patient, young adventurer.";
  2147. close;
  2148. case 22:
  2149. mes "[Zaka]";
  2150. mes "Now, you need to visit a";
  2151. mes "man named ^3355FFWon^000000 in Comodo";
  2152. mes "in order to get the proof that";
  2153. mes "shows that you're qualified to";
  2154. mes "possess a doomed sword.";
  2155. mes "Hopefully, you'll get it...";
  2156. close;
  2157. }
  2158. }
  2159. else {
  2160. mes "[Zaka]";
  2161. mes "Have you heard that swords";
  2162. mes "with the power to change the";
  2163. mes "world actually exist? It's true";
  2164. mes "that three swords contain this";
  2165. mes "immense power, but they are";
  2166. mes "also bound to powerful curses.";
  2167. next;
  2168. mes "[Zaka]";
  2169. mes "Therefore, the Mysteltainn,";
  2170. mes "Ogretooth, and Executioner";
  2171. mes "have all been sealed away.";
  2172. mes "Only a truly great adventurer";
  2173. mes "can release these doomed^FFFFFF ^000000 swords and actually wield them...";
  2174. close;
  2175. }
  2176. }
  2177. comodo,232,87,4 script Won#cmd 106,{
  2178. if (dmdswrd_Q >= 22 && dmdswrd_Q <= 24) {
  2179. switch(dmdswrd_Q) {
  2180. case 22:
  2181. mes "[Won]";
  2182. mes "Hmm...? It's been a while";
  2183. mes "since someone came here to";
  2184. mes "get the qualification to own a";
  2185. mes "doomed sword. Yeah, I know";
  2186. mes "that's why you're here...";
  2187. next;
  2188. mes "[Won]";
  2189. mes "To a man like me, the";
  2190. mes "presenses of the Book of the";
  2191. mes "Lamb, the Slate of Muriniel,";
  2192. mes "and one that has eaten of the";
  2193. mes "Awakening Stone are unmistakable. ^FFFFFF ^000000";
  2194. next;
  2195. mes "[Won]";
  2196. mes "Now, listen. I personally";
  2197. mes "don't care why you want a";
  2198. mes "doomed sword. If you abuse";
  2199. mes "its power, you'll pay the price";
  2200. mes "eventually. I'm only here to";
  2201. mes "make sure you're up to snuff.";
  2202. next;
  2203. mes "[Won]";
  2204. mes "Of course, I also want to";
  2205. mes "make sure that you don't bring";
  2206. mes "great suffering to the world";
  2207. mes "using a doomed sword. So I'm";
  2208. mes "going to check if you're, you";
  2209. mes "know, balanced and all that.";
  2210. next;
  2211. mes "[Won]";
  2212. mes "Alright, let me take";
  2213. mes "a look into your eyes...";
  2214. mes "Yeah, alright. You seem to";
  2215. mes "understand the value of the";
  2216. mes "Awakening Stone, Book of the^FFFFFF ^000000 Lamb, and the Slate of Muriniel.";
  2217. next;
  2218. mes "[Won]";
  2219. mes "Yeah, I can't sense any";
  2220. mes "ill intent from you at all.";
  2221. mes "That's very good. Huh, you";
  2222. mes "seem pretty experienced in battle, so I'm sure you have the stamina";
  2223. mes "to handle to a doomed sword...";
  2224. next;
  2225. mes "[Won]";
  2226. mes "Ah, but most importantly,";
  2227. mes "you don't strike me as crazy";
  2228. mes "at all. Alright, we're done here. Take this Stamp of Muriniel:";
  2229. mes "it's the official qualification";
  2230. mes "token to own a doomed sword.";
  2231. next;
  2232. mes "^3355FFYou receive the";
  2233. mes "Stamp of Muriniel.^000000";
  2234. set dmdswrd_Q,23;
  2235. next;
  2236. mes "[Won]";
  2237. mes "Mysteltainn, Executioner,";
  2238. mes "and Ogretooth... These are";
  2239. mes "the forbidden blades, the";
  2240. mes "doomed swords. Remember";
  2241. mes "that you cannot choose";
  2242. mes "which weapon you'll wield...";
  2243. next;
  2244. mes "[Won]";
  2245. mes "These swords have a will";
  2246. mes "of their own. The doomed";
  2247. mes "sword that finds you most";
  2248. mes "worthy of it will choose you.";
  2249. mes "You can understand that, right?";
  2250. next;
  2251. mes "[Won]";
  2252. mes "Now that you have this";
  2253. mes "qualification, I'm supposed";
  2254. mes "to direct you to the Sages";
  2255. mes "that can help lead you to";
  2256. mes "the doomed swords.";
  2257. next;
  2258. mes "[Won]";
  2259. mes "The first Sage that you";
  2260. mes "must visit is ^3355FFSage Yklah^000000";
  2261. mes "in the city of ^3355FFJuno^000000 in the";
  2262. mes "Schwaltzvalt Republic.";
  2263. mes "Your quest to obtain a";
  2264. mes "doomed sword isn't over yet...";
  2265. close;
  2266. case 23:
  2267. mes "[Won]";
  2268. mes "Now that you have this";
  2269. mes "qualification, I'm supposed";
  2270. mes "to direct you to the Sages";
  2271. mes "that can help lead you to";
  2272. mes "the doomed swords.";
  2273. next;
  2274. mes "[Won]";
  2275. mes "The first Sage that you";
  2276. mes "must visit is ^3355FFSage Yklah^000000";
  2277. mes "in the city of ^3355FFJuno^000000 in the";
  2278. mes "Schwaltzvalt Republic.";
  2279. mes "Your quest to obtain a";
  2280. mes "doomed sword isn't over yet...";
  2281. close;
  2282. case 24:
  2283. mes "1 2 3 4 5 6 7 8 9 10 1 2 3 4 5";
  2284. close;
  2285. }
  2286. }
  2287. else {
  2288. mes "[Won]";
  2289. mes "The visitors and even the";
  2290. mes "people that live here always";
  2291. mes "seem to be having such a good";
  2292. mes "time, just lounging in leisure.";
  2293. mes "It's hard to believe the War";
  2294. mes "of the Witch even happened...";
  2295. next;
  2296. mes "[Won]";
  2297. mes "But not everyone here in";
  2298. mes "Comodo can afford to relax";
  2299. mes "so easily. I, for one, have";
  2300. mes "the responsibility of seeking";
  2301. mes "out those that are worthy of,^FFFFFF ^000000 well, I don't know if I can say...";
  2302. next;
  2303. mes "[Won]";
  2304. mes "You just have to";
  2305. mes "trust that I've got an";
  2306. mes "incredibly important";
  2307. mes "job to do. I mean, sure,";
  2308. mes "it doesn't look like I'm doing";
  2309. mes "anything right now, but...";
  2310. close;
  2311. }
  2312. }