quests_comodo.txt 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243
  1. //===== eAthena Script =======================================
  2. //= Quest NPCs related to Comodo
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.2
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //= 'Cross Hat', 'Bulb Hairband', 'Striped Hairband', 'Blue Hairband' Quests.
  11. //= 'Mine Helmet', 'Parcel Hat', 'Money Loser's Grief',
  12. //= 'Phantom of the Opera Mask', 'Doomed Sword' (parts 1,2,3), Quests.
  13. //===== Additional Comments: =================================
  14. //= 1.1 Fixed exploits [Lupus]
  15. //= 1.2 Added more quest from cities/comodo.txt [Evera]
  16. //============================================================
  17. //============================================================================================//
  18. // Hair Ornament Girl
  19. //============================================================================================//
  20. // Cross Hat, Bulb Hairband, Striped Hairband, Blue Hairband
  21. //==================================================
  22. comodo.gat,227,158,4 script Hair Ornament Girl 700,{
  23. mes "[Hair Ornament Girl]";
  24. 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.";
  25. 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.";
  26. next;
  27. mes "[Hair Ornament Girl]";
  28. mes "Just by bringing me a few simple items, I can make you a gorgeous Hair Band! Here, take a look at these....";
  29. M_Menu:
  30. next;
  31. menu "-Cross Hat Hairband",-, "-Bulb Hairband",M_Bulb, "-Striped Hairband",M_Striped, "-Blue Hairband",M_Blue, "-End Conversation",M_End;
  32. set @BAND$, "Cross Hat Hairband";
  33. set @ITEMS$, " ^5555FF1 Rosary^000000 and ^5555FF500 Destroyed Armors^000000.";
  34. if(countitem(2608)>=1 && countitem(7069)>=500) set @GETBAND, 1;
  35. goto sL_0;
  36. M_Bulb:
  37. set @BAND$, "Bulb Hairband";
  38. set @ITEMS$, "^5555FF1 Slotted Circlet^000000 and ^5555FF20 Glass Beads^000000.";
  39. if(countitem(2233)>=1 && countitem(746)>=20) set @GETBAND, 2;
  40. goto sL_0;
  41. M_Striped:
  42. set @BAND$, "Striped Hairband";
  43. set @ITEMS$, "^5555FF1500 Worn-out Prison Uniforms^000000.";
  44. if(countitem(1099)>=1500) set @GETBAND, 3;
  45. goto sL_0;
  46. M_Blue:
  47. set @BAND$, "Blue Hairband";
  48. set @ITEMS$, "^5555FF1 Bandana^000000, ^5555FF1 Cobaltblue Dyestuffs^000000, and ^5555FF300 Anolian Skins^000000.";
  49. if(countitem(2211)>=1 && countitem(978)>=1 && countitem(7003)>=300) set @GETBAND, 4;
  50. sL_0:
  51. mes "[Hair Ornament Girl]";
  52. mes "So you're interested in the "+@BAND$+" huh? Here are the items you'll need for the "+@BAND$+":";
  53. mes @ITEMS$;
  54. next;
  55. if(@GETBAND > 0) goto sL_GetBand;
  56. mes "[Hair Ornament Girl]";
  57. mes "Bring me all of these items and I will be able to make you a "+@BAND$+".";
  58. goto M_Menu;
  59. sL_GetBand:
  60. mes "[Hair Ornament Girl]";
  61. mes "I see that you have enough items for a "+@BAND$+". Would you like me to make you one?";
  62. next;
  63. menu "Yes, I would.",-, "No thank you.",M_End;
  64. if(@GETBAND == 1) goto ssL_Cross;
  65. if(@GETBAND == 2) goto ssL_Bulb;
  66. if(@GETBAND == 3) goto ssL_Striped;
  67. if(@GETBAND == 4) goto ssL_Blue;
  68. ssL_Cross:
  69. if(countitem(2608)<1 || countitem(7069)<500) goto L_Cheater;
  70. delitem 2608,1;
  71. delitem 7069,500;
  72. getitem 5036,1;
  73. goto ssL_End;
  74. ssL_Bulb:
  75. if(countitem(2233)<1 || countitem(746)<20) goto L_Cheater;
  76. delitem 2233,1;
  77. delitem 746,20;
  78. getitem 5034,1;
  79. goto ssL_End;
  80. ssL_Striped:
  81. if(countitem(1099)<1500) goto L_Cheater;
  82. delitem 1099,1500;
  83. getitem 5049,1;
  84. goto ssL_End;
  85. ssL_Blue:
  86. if(countitem(2211)<1 || countitem(978)<1 || countitem(7003)<300) goto L_Cheater;
  87. delitem 2211,1;
  88. delitem 978,1;
  89. delitem 7003,300;
  90. getitem 5052,1;
  91. ssL_End:
  92. mes "[Hair Ornament Girl]";
  93. mes "Here is your "+@BAND$+". Thank you.";
  94. set @GETBAND, 0;
  95. close;
  96. L_Cheater:
  97. mes "[Hair Ornament Girl]";
  98. mes "Ooops... Where are these items?";
  99. close;
  100. M_End:
  101. mes "[Hair Ornament Girl]";
  102. mes "Hope to see you again soon.";
  103. close;
  104. }
  105. //===================================================================================================//
  106. // Mari Isac
  107. //===================================================================================================//
  108. // 'Mine Helmet', 'Parcel Hat', 'Money Loser's Grief', 'Phantom of the Opera Mask'
  109. //===============================================================//
  110. comodo.gat,274,137,5 script Mari Isac 702,{
  111. mes "[Mari Isac]";
  112. mes "I travel all over the world and get to hear many interesting stories from the people I meet.";
  113. mes "Sometimes they even teach me how to make special items";
  114. next;
  115. mes "[Mari Isac]";
  116. mes "Would you be interested in some of the items I've learned to make?";
  117. M_Menu:
  118. next;
  119. menu "Tell me about them.",M_0, "Make me one.",M_1;
  120. M_0:
  121. menu "-Mine Helmet",-, "-Parcel Hat",sM_Parcel, "-Money Loser's Grief",sM_Money, "-Phantom of the Opera Mask",sM_Phantom;
  122. mes "[Mari Isac]";
  123. mes "I learned how to make the Mine Helmet when I traveled to the old coal mines near Geffen.";
  124. next;
  125. mes "[Mari Isac]";
  126. mes "The 2 most important things a miner needs are light, and head protection.";
  127. mes "A very inventive miner was able to create something that dealt with both issues.";
  128. next;
  129. mes "[Mari Isac]";
  130. mes "He attached a light to his safety helmet and called it a Mine Helmet.";
  131. mes "This meant that miners no longer had to worry about carrying around lamps and could work more efficiently.";
  132. next;
  133. mes "[Mari Isac]";
  134. mes "Anyways, if you want me to make you a Mine Helmet you'll need to bring me these items:";
  135. mes "^5555FF1 Safety Helmet^000000,";
  136. mes "^5555FF1 Candle^000000,";
  137. mes "^5555FF1 Crystal Mirror^000000,";
  138. mes "^5555FF25 Steel^000000.";
  139. next;
  140. goto M_0;
  141. sM_Parcel:
  142. mes "[Mari Isac]";
  143. 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.";
  144. next;
  145. mes "[Mari Isac]";
  146. 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.";
  147. 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.";
  148. next;
  149. mes "[Mari Isac]";
  150. mes "Anyways, if you want me to make you a Parcel Hat, you'll need to bring me these items.";
  151. mes "^5555FF150 Fabric^000000,";
  152. mes "^5555FF100 Resin^000000,";
  153. mes "^5555FF1 Cobaltblue Dyestuffs^000000.";
  154. next;
  155. goto M_0;
  156. sM_Money:
  157. mes "[Mari Isac]";
  158. mes "I learned how to make the Money Loser's Grief when I traveled to Morroc.";
  159. next;
  160. mes "[Mari Isac]";
  161. mes "A long time ago an honest merchant got into a conflict with a crooked guild.";
  162. mes "Unlike the dirty guild, the merchant did not scam or cheat people.";
  163. next;
  164. mes "[Mari Isac]";
  165. mes "Because of this they attacked the merchants shop and took all of his goods.";
  166. next;
  167. mes "[Mari Isac]";
  168. mes "The merchant was devastated by the loss of his shop.";
  169. mes "In his sadness he used the bits and pieces that were left from his shop to create a new item.";
  170. next;
  171. mes "[Mari Isac]";
  172. 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.";
  173. next;
  174. mes "[Mari Isac]";
  175. 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.";
  176. next;
  177. mes "[Mari Isac]";
  178. mes "Anyways, if you want me to make you a Money Losers Grief, you'll need to bring me these items.";
  179. mes "^5555FF1 Circlet with a single slott^000000,";
  180. mes "^5555FF1 Gold^000000,";
  181. mes "^5555FF20 Steel^000000,";
  182. mes "^5555FF80 Feathers^000000,";
  183. mes "^5555FF800 Sticky Mucus^000000.";
  184. next;
  185. goto M_0;
  186. sM_Phantom:
  187. mes "[Mari Isac]";
  188. mes "I learned how to make the Phantom of the Opera Mask when I traveled to Al De Baran.";
  189. mes "The story behind this item is that of a man's pure love........";
  190. next;
  191. mes "[Mari Isac]";
  192. mes "There once was a man who was in love with a beautiful opera singer.";
  193. mes "Unfortunately the man had a terribly disfigured face which forced to him to wear a mask.";
  194. next;
  195. mes "[Mari Isac]";
  196. mes "He was ashamed of his appearance and could never bring himself to face the singer.";
  197. mes "The man instead, watched her from a far, admiring every nuance of her beauty and grace.";
  198. next;
  199. mes "[Mari Isac]";
  200. mes "He lurked in the bowles of the opera house and from time to time he would sing his sad love song.";
  201. mes "Many people heard it and believed that there was a phantom haunting the opera house.";
  202. next;
  203. mes "[Mari Isac]";
  204. mes "The singer also heard his song, and through it she was able to feel his pain and his love for her.";
  205. mes "The two eventually met, and when they did she was able to look past his appereance and accept him for who he was.";
  206. next;
  207. mes "[Mari Isac]";
  208. mes "Too this day, the tale of the masked 'phantom' is still romantacised.";
  209. next;
  210. mes "[Mari Isac]";
  211. mes "Anyways, if you want me to make you a Phantom of the Opera Mask, you'll need to bring me these items.";
  212. mes "^5555FF1 Opera Masque^000000,";
  213. mes "^5555FF50 Horrendous Hairs^000000.";
  214. goto M_0;
  215. M_1:
  216. menu "-Mine Helmet",-, "-Parcel Hat",sM_MakePar, "-Money Loser's Grief",sM_MakeMon, "-Phantom of the Opera Mask",sM_MakePhan;
  217. if(countitem(5009)<1 || countitem(5028)<1 || countitem(747)<1 || countitem(999)<25) goto ssL_NoItems;
  218. delitem 5009, 1;
  219. delitem 5028, 1;
  220. delitem 747, 1;
  221. delitem 999, 25;
  222. mes "[Mari Isac]";
  223. mes "Here you go. Enjoy your Mine Helmet!";
  224. getitem 5031,1;
  225. close;
  226. sM_MakePar:
  227. if(countitem(1059)<150 || countitem(907)<100 || countitem(978)<1) goto ssL_NoItems;
  228. delitem 1059, 150;
  229. delitem 907, 100;
  230. delitem 978, 1;
  231. mes "[Mari Isac]";
  232. mes "Here you go. Enjoy your Parcel Hat!";
  233. getitem 5023,1;
  234. close;
  235. sM_MakeMon:
  236. if(countitem(2233)<1 || countitem(969)<1 || countitem(999)<20 || countitem(949)<80 || countitem(938)<800) goto ssL_NoItems;
  237. delitem 2233, 1;
  238. delitem 969, 1;
  239. delitem 999, 20;
  240. delitem 949, 80;
  241. delitem 938, 800;
  242. mes "[Mari Isac]";
  243. mes "Here you go. Enjoy your Money Loser's Grief!";
  244. getitem 5021,1;
  245. close;
  246. sM_MakePhan:
  247. if(countitem(2281)<1 || countitem(1048)<50) goto ssL_NoItems;
  248. delitem 2281,1;
  249. delitem 1048, 50;
  250. mes "[Mari Isac]";
  251. mes "Here you go. Enjoy your Phantom of the Opera Mask!";
  252. getitem 5043, 1;
  253. close;
  254. ssL_NoItems:
  255. mes "[Mari Isac]";
  256. mes "You don't seem to have enough items for me to make that hat. Please come back when you do.";
  257. close;
  258. }
  259. //============================================================================//
  260. // Chief Quest (Doomed Swords Part 1)
  261. //============================================================================//
  262. //=======================================================
  263. comodo.gat,206,310,4 script Rochito 48,{
  264. if(dmdswrd_Q == 1) goto L_1;
  265. if(dmdswrd_Q == 2) goto L_2;
  266. if(dmdswrd_Q == 3) goto sL_2;
  267. if(dmdswrd_Q == 4) goto L_3;
  268. if(dmdswrd_Q == 5 || dmdswrd_Q == 6) goto sL_3;
  269. L_0:
  270. mes "[Rochito]";
  271. mes "Meat, meat, meat... I LOVE MEAT!! Eat, eat, eat... ALL I eat is MEAT!! I'm sooo obsessed with meat..... I'm... I.. I... I'm a MEAT MAN!!";
  272. emotion e_lv;
  273. next;
  274. mes "[Rochito]";
  275. mes "Comodo is meat heaven!! That's why BBQ camping in Comodo is sooooo AWESOME!!!";
  276. next;
  277. menu "Tell me more about BBQ Camping.",M_0, "End Conversation.",M_End;
  278. M_0:
  279. mes "[Rochito]";
  280. mes "The Komodoru, a native animal of Comodo, is famous because of it's delicious meat. Every part of the animal is tasty.";
  281. mes "However the tastiest part of the Komodoru, is the area around the spine. It's number one!";
  282. emotion e_no1;
  283. next;
  284. mes "[Rochito]";
  285. mes "Look at all of this meat in front of me! I don't know what to do with all of this meat! What should I do?? Oh no!...";
  286. emotion e_swt2;
  287. next;
  288. mes "[Rochito]";
  289. mes "Oh, I almost forgot!! You must try this Komodoru spine meat with Comodo's authentic BBQ seasoning.";
  290. mes "^5555FFKoserahserah^000000 is the name of the seasoning, and you should at least try it once before you leave.";
  291. next;
  292. mes "[Rochito]";
  293. mes "There is a rumor going around this camp ground that Koserahserah is soooo good that it might be addictive.";
  294. mes "It's possible that it may even cause a slight euphoria in those who try it.";
  295. next;
  296. mes "[Rochito]";
  297. mes "I'm not sure if that's true, but I do not that the seasoning is not allowed to be exported outside of Comodo.";
  298. mes "Luckily I'm a resident here so I can have as much as I want.";
  299. next;
  300. mes "[Rochito]";
  301. mes "Still, the authorities are worried about how Koserahserah should be regulated.";
  302. mes "The ^5555FFChief of Comodo^000000 is currently working on a some guidelines for it.";
  303. if(dmdswrd_Q == 0) set dmdswrd_Q, 1;
  304. close;
  305. M_End:
  306. close;
  307. L_1:
  308. mes "[Rochito]";
  309. mes "This Komodoru spine meat is delicious when seasoned with ^5555FFKoserahseah^000000, a local flavoring that is the pride of Comodo!!";
  310. mes "Would you like to try some?";
  311. next;
  312. mes "[Rochito]";
  313. mes "Oh, are you looking for the ^5555FFChief's^000000 house? Just go west of this camp ground to the village. You'll find his house there.";
  314. close;
  315. L_2:
  316. mes "[Rochito]";
  317. mes "We have a lot of time left on our vacation and I think we should spend the rest of it here, enjoying the Komodoru meat.";
  318. next;
  319. mes "[Rochito]";
  320. mes "In fact, we should just keep on having BBQ parties!";
  321. next;
  322. mes "^5533FF~ gave Rochito the Koserahserah ~^000000";
  323. next;
  324. mes "[Rochito]";
  325. mes "Oh my!! This is the special Comodo seasoning.... Koserahserah!! How did you manage to get this precious delicacy?";
  326. emotion e_gasp;
  327. next;
  328. mes "[Rochito]";
  329. mes "Oh... I see, I see. So it was given to you by my long time friend. Well, thank you so much.... thank you...";
  330. emotion e_thx;
  331. next;
  332. mes "[Rochito]";
  333. mes "Hey everybody! Tausupa has sent us some Koserahserah seasoning!!";
  334. next;
  335. mes "[Emralhandas]";
  336. mes "Our old friend?";
  337. next;
  338. mes "[Rochito]";
  339. mes "I don't know if we should take such a great gift....";
  340. next;
  341. mes "[Rockha]";
  342. mes ".........................";
  343. next;
  344. mes "[Rochito]";
  345. mes "We should give him something in return as a thank you. But what can we give him?...";
  346. mes "should we give him that wonderful ^5555FFWine^000000 we've been saving? It has a very nice aroma....";
  347. next;
  348. mes "[Rochito]";
  349. mes "May I ask a favor of you? If it is not too much trouble, would you take this to our dear friend.....";
  350. mes "I would deliver this in person but I'm a little busy with the BBQ and all.....";
  351. next;
  352. mes "[Rochito]";
  353. mes "Please. We would be very grateful if you could give this to him.";
  354. next;
  355. mes "^5555FF~ received 'Mureuchieligu Wine' ~^000000";
  356. set dmdswrd_Q, 3;
  357. close;
  358. sL_2:
  359. mes "[Rochito]";
  360. mes "Please do us a favor and deliver the wine to the chief. We would be very happy if you did.";
  361. close;
  362. L_3:
  363. mes "[Rochito]";
  364. mes "You've returned..... Oh! Thank you for the delivering the wine for us.";
  365. emotion e_thx;
  366. set dmdswrd_Q, 5;
  367. next;
  368. sL_3:
  369. mes "[Rochito]";
  370. mes "We are very proud of our courageous friend. It is because of him that we can live peacefully and travel safely.";
  371. next;
  372. mes "[Rochito]";
  373. mes "Oh, I just remembered something....";
  374. mes "We've been talking about Comodo's famous meat all this time, and I didn't even mention Comodo's world famous ^5555FFCheese^000000!";
  375. next;
  376. mes "[Rochito]";
  377. mes "I believe there is a cheese expert named ^5533FFTORUNA^000000 somewhere on this island.";
  378. mes "If your interested in the cheese you should go ask him about it.";
  379. if(dmdswrd_Q == 5) set dmdswrd_Q, 6;
  380. close;
  381. }
  382. //=======================================================
  383. comodo.gat,204,310,4 script Rockha 98,{
  384. if(dmdswrd_Q == 3) goto L_1;
  385. if(dmdswrd_Q == 4 || dmdswrd_Q==5) goto L_2;
  386. L_0:
  387. mes "[Rockha]";
  388. mes ". . . . . . . . . .";
  389. mes "My friends and I always wanted to have our BBQ eat out.....";
  390. mes ". . . . . . . . . .";
  391. next;
  392. menu "About the ^3355FFChief^000000.",M_0, "End Conversation.",M_End;
  393. M_0:
  394. mes "[Rockha]";
  395. mes "Yeah... I recently discovered that a friend I thought I lost during the ^FF4444'War with the Witch'^000000, is still alive.";
  396. mes "Now he's the ^5555FFChief of Comodo^000000....";
  397. next;
  398. mes "[Rockha]";
  399. mes "At the end of the war the witch was defeated and sealed in the ground beneath this village.";
  400. next;
  401. mes "[Rockha]";
  402. mes "It is rumored that the seasonings we get from our local plants somehow receive their unique qualities from the Witch's magical influence.";
  403. next;
  404. mes "[Rockha]";
  405. mes "Although my friend and I now live in different worlds, his new life hasn't changed him.";
  406. mes "Thankfully we can still be friends after all that's happened.";
  407. close;
  408. L_1:
  409. mes "[Rockha]";
  410. mes "Oh, and by the way.... Could you give him this message as well?";
  411. mes "Tell him, 'For as long as you have remembered us, we will not forget you. Friends forever.'.....";
  412. close;
  413. L_2:
  414. mes "[Rockha]";
  415. mes "Ha ha ha..... aaaahhh.... THIS is FRIENDSHIP!!";
  416. emotion e_heh;
  417. next;
  418. mes "[Rockha]";
  419. mes "Let us take a moment to make a toast to our good friend. Let us eat and drink until we can eat no more!!";
  420. next;
  421. mes "[Rockha]";
  422. mes "~!!Yippeeeeee!!~!!Wooohooooo!!~";
  423. close;
  424. mes "[Rockha]";
  425. mes "Thank you for your assistance. You have shown us that you are truly a good person. We now consider you as a friend.";
  426. next;
  427. mes "[Rockha]";
  428. mes "If you ever need any help, just come and look for me, ^3355FF'Rockha'^000000. We are forever in your debt.";
  429. close;
  430. }
  431. //=======================================================
  432. comodo.gat,209,314,4 script Rotute 82,{
  433. if(dmdswrd_Q==2 || dmdswrd_Q==3) goto L_1;
  434. if(dmdswrd_Q == 4 || dmdswrd_Q==5) goto L_2;
  435. L_0:
  436. mes "[Rotute]";
  437. mes "The quest for the ^5555FFSwords of Power^000000 has not yet been completed!";
  438. next;
  439. mes "[Rotute]";
  440. mes "Although four of the swords have been recovered by our team, there are rumors of a more powerful sword near ^5555FFGlastheim^000000.";
  441. mes "This has brought us yet another challenge.....";
  442. next;
  443. mes "[Rotute]";
  444. mes "We must find this new sword!! A new expedition has been planned to find this sword but I feel very anxious.";
  445. mes "If we succeed this will affect the whole world!! For my deceased father.....";
  446. next;
  447. mes "[Rotute]";
  448. mes "...... We MUST SUCCEED!!!!";
  449. emotion e_go;
  450. close;
  451. L_1:
  452. mes "[Rotute]";
  453. mes "Wow!! This is Comodo's famous seasoning!! The Captain's friend is truly a good person. To be this generous is unbelievable!";
  454. emotion e_gasp;
  455. next;
  456. mes "[Rotute]";
  457. mes "I can only hope that I find a friend that is as loyal as he on this quest.....";
  458. close;
  459. L_2:
  460. mes "[Rotute]";
  461. mes "It's strange.... this is only my first visit to Comodo and yet.... for some reason, it seems so familiar... like it's my home town.";
  462. next;
  463. mes "[Rotute]";
  464. mes "When this journey is over, I hope to visit this wonderful place again..... It feels like something is waiting for me here.";
  465. next;
  466. mes "[Rotute]";
  467. mes "Oh, and thanks so much for helping our captain.";
  468. emotion e_thx;
  469. close;
  470. }
  471. //=======================================================
  472. comodo.gat,209,305,4 script Emralhandas 70,{
  473. mes "[Emralhandas]";
  474. mes "Rockha, empty your glass so I can pour you a drink.";
  475. next;
  476. mes "[Emralhandas]";
  477. mes "Many years ago, during the War with the Witch, we dreamed of the day when we could live in peace.";
  478. mes "Today that dream has come true and it's all because of you my friends!!";
  479. emotion e_no1;
  480. next;
  481. menu "Ask about her friends....",M_0, "End Conversation",M_End;
  482. M_0:
  483. mes "[Emralhandas]";
  484. mes "Many years ago, heroes from every region of Rune Midgard were selected to embark upon a very unique and important quest.";
  485. next;
  486. mes "[Emralhandas]";
  487. mes "The goal was to find the ^5555FF4 rare 'Swords of Power'^000000!";
  488. mes "These 4 swords were said to be the most powerful weapons to have ever been made.";
  489. next;
  490. mes "[Emralhandas]";
  491. mes "After 10 hard years of searching, all 4 swords were found and brought together.";
  492. mes "Out of all of those who searched the swords, the four bravest were chosen to protect them.";
  493. next;
  494. mes "[Emralhandas]";
  495. mes "I, Emralhandas, was one of the four that were chosen.";
  496. next;
  497. mes "[Emralhandas]";
  498. mes "Of course there were many hardships that we had to endure before, and even after these swords were found........";
  499. next;
  500. mes "[Emralhandas]";
  501. mes "Our team of adventures consisted of myself, our ship's captain 'Rockha', our comrade 'Rochito', and the Chief of this town, 'Tausupa'.";
  502. next;
  503. mes "[Emralhandas]";
  504. mes "We had found the last sword and headed back to the island. Up to this point we had not even thought about the weapon's owner.";
  505. mes "As we left we began to have a bad feeling about what was going to happen next.";
  506. next;
  507. mes "[Emralhandas]";
  508. mes "When we returned to the island, we were confronted by ^790079'Mariposum'^000000, a powerful Witch who practiced the dark art of EVIL magic!!";
  509. next;
  510. mes "[Emralhandas]";
  511. mes "Her goal was to take over the world and plunge into a dark chaos!! We had to defend not only ourselves, but the future of humanity!!";
  512. mes "So it was here that me made our stand against this terrible evil!";
  513. emotion e_gasp;
  514. next;
  515. mes "[Emralhandas]";
  516. mes "A tremendous battle took place and many of our comrades fell that day... but their efforts were not in vain.";
  517. next;
  518. mes "[Emralhandas]";
  519. mes "With bloodshed and fierce determination we were able to defeat the witch and imprison her beneath the earth.";
  520. next;
  521. mes "[Emralhandas]";
  522. mes "Of all of those who risked their lives that day, one stood out amongst the rest and became the deciding factor in the witch's defeat.....";
  523. next;
  524. mes "[Emralhandas]";
  525. mes "It was ^5555FFTausupa^000000.";
  526. next;
  527. mes "[Emralhandas]";
  528. mes "Of course we are great full to all the brave warriors who fought and lost their lives that day.";
  529. mes "Especially to 'Rotute's' father who cannot be with us today, may he rest in peace.";
  530. next;
  531. mes "[Emralhandas]";
  532. mes "Rotute does not know about this yet, but hopefully he will find out about his father's heroism before this quest is complete......";
  533. close;
  534. M_End:
  535. mes "[Emralhandas]";
  536. mes "Our quest has not yet been completed. Rockha, we must eat all of the meat in Rune Midgard until there is none left!!";
  537. mes "We must eat and eat, for the pride of our Meat Club!!! (~hiccup~)";
  538. close;
  539. }
  540. // Chief's House =========================================================//
  541. cmd_in02.gat,32,140,4 script Chief Tausupa 49,{
  542. if(dmdswrd_Q == 1) goto L_1;
  543. if(dmdswrd_Q == 2) goto sL_1;
  544. if(dmdswrd_Q == 3) goto L_2;
  545. if(dmdswrd_Q == 4) goto sL_2;
  546. L_0:
  547. mes "[Chief Tausupa]";
  548. mes "Hello, I am the Chief of Comodo. You may call me Tausupa. Comodo is a place of pleasure, enjoyment, love, and beauty.";
  549. mes "Welcome, and have a pleasant and relaxing stay here.";
  550. next;
  551. menu "Ask about the ^5555FFCasino^000000.",M_0, "Ask about the ^790079Evil Witch^000000.",M_1, "End Conversation.",M_End;
  552. M_0:
  553. mes "[Chief Tausupa]";
  554. mes "The Casino is one of the many notable sites in Comodo. It would seem that you have some interest in it.";
  555. mes "The Casino uses it's own currency, a coin called the ^5555FF'Eulwo'^000000.";
  556. next;
  557. mes "[Chief Tausupa]";
  558. mes "There are a variety of games for you to enjoy there.";
  559. mes "The earnings you win can be used to purchase different items available only in the Casino.";
  560. next;
  561. mes "[Chief Tausupa]";
  562. mes "These earnings, which are in the form of Eulwo, cannot be exchanged for Zeny though.";
  563. close;
  564. M_1:
  565. mes "[Chief Tausupa]";
  566. mes ". . . . . . . . . .";
  567. mes "You must be from out of town. I'm not sure where you heard about it, but that story is old and most people have forgotten about it.";
  568. mes "It's really not worth mentioning. . . . . . . . . . . .";
  569. close;
  570. M_End:
  571. mes "[Chief Tausupa]";
  572. mes "If you haven't noticed, Comodo is located inside of a huge, natural, cave. No matter what time of day it is, you'll never see the sunlight.";
  573. next;
  574. mes "[Chief Tausupa]";
  575. mes "It is this unique 24 hour nightlife that attracts so many tourist to our town. Anyways, please enjoy your stay here.";
  576. close;
  577. L_1:
  578. mes "[Tausupa]";
  579. mes "..... Is that so? My long time friends have come back to Comodo and are at the Camp Grounds enjoying the BBQ huh?.......";
  580. next;
  581. mes "[Tausupa]";
  582. mes "It would seem that they are planning another expedition........";
  583. next;
  584. mes "[Tausupa]";
  585. mes "I have not seen my friends in a long time and the sound of going on another adventure with them is very exciting.... however......";
  586. next;
  587. mes "[Tausupa]";
  588. mes "~sigh~ Unfortunately I will not be able to go with them. I fear that if I leave, the evil witch will revive and wreak havoc on this world once again.";
  589. next;
  590. mes "[Tausupa]";
  591. mes "..... I have a favor I must ask of you.......";
  592. next;
  593. mes "[Tausupa]";
  594. mes "Can you take this special seasoning to my friends?";
  595. next;
  596. mes "^5555FF~ recieved Koserahserah ~^000000";
  597. set dmdswrd_Q, 2;
  598. next;
  599. sL_1:
  600. mes "[Chief Tausupa]";
  601. mes "Please take this seasoning to my friends at the BBQ camp grounds and give it to ^5555FFRochito^000000. Thank you.";
  602. close;
  603. L_2:
  604. mes "[Chief Tausupa]";
  605. mes "Were my friends happy? After you left, I had some time to think..... I should have delivered the seasoning personally......";
  606. mes "I should have gone to see them......";
  607. next;
  608. mes "[Chief Tausupa]";
  609. mes "But I am much too busy as the Chief of Comodo........ Maybe I should quit...........";
  610. mes "I really want to go on another quest with my good friends.... How did I end up like this?";
  611. next;
  612. mes "^5555FF~ you give him Mureuchieligu Wine and convey the message ~^000000";
  613. next;
  614. mes "[Chief Tausupa]";
  615. mes "..................";
  616. next;
  617. mes "[Chief Tausupa]";
  618. mes "That was a message from my friends? I think I understand now.... My friends are TRUE friends. They have been thinking of me all this time........";
  619. next;
  620. mes "[Chief Tausupa]";
  621. mes "I have made up my mind!";
  622. emotion e_ic;
  623. next;
  624. mes "[Chief Tausupa]";
  625. mes "Mureuchieligu Wine is made as soon as the grapes are picked. It is then bottled in the very same place and is left there to age.";
  626. mes "The wine spends the rest of its days aging in the same spot.";
  627. next;
  628. mes "[Chief Tausupa]";
  629. mes "Much like the wine, I have been aging away in the same place here in Comodo, and I must continue to stay here for it is my duty.";
  630. next;
  631. mes "[Chief Tausupa]";
  632. mes "I am thankful for my friends' advice. The gift they gave me had a great deal of meaning.";
  633. mes "Please tell my friends this, 'I will not avoid my destiny. On the contrary, I will fulfill it to the best of my ability'.";
  634. set dmdswrd_Q, 4;
  635. next;
  636. sL_2:
  637. mes "[Chief Tausupa]";
  638. mes "I would like to thank you for helping my friends and I. I am truly great full.";
  639. close;
  640. }
  641. //============================================================================//
  642. // Cheese Quest (Doomed Swords Part 2)
  643. //============================================================================//
  644. //=======================================================
  645. comodo.gat,88,97,4 script Cheese Expert TORUNA 109,{
  646. if(dmdswrd_Q == 7) goto sL_2;
  647. mes "[TORUNA]";
  648. mes "I hear that the cheese here is delicious. Every time I come here to visit, I ask for some of that popular cheese.";
  649. mes "But they always seem to be out! If I could just get a taste of that cheese...........";
  650. M_Menu:
  651. next;
  652. menu "Ask about the cave.",M_0, "Comodo is a town inside a cave?",M_1, "End Conversation.",M_End;
  653. M_0:
  654. mes "[TORUNA]";
  655. mes "It is a natural formation of limestone which was shaped by the erosive powers of fresh water with sea water.";
  656. next;
  657. mes "[TORUNA]";
  658. mes "The air and topsoil in the cave are rich in carbon-dioxide gas.";
  659. mes "This was caused by C02 gas leaking into the cave through cracks in the limestone over a period of many years.";
  660. next;
  661. mes "[TORUNA]";
  662. mes "Water from rainfall and ocean currents slowly eroded the limestone to carve out the cave.";
  663. next;
  664. mes "[TORUNA]";
  665. mes "Essentially a cave is formed when water finds cracks in some type of rock formation and erodes the rock to a point where a cave is formed.";
  666. mes "Of course this takes hundreds of years and a lot of water.";
  667. goto M_Menu;
  668. M_1:
  669. mes "[TORUNA]";
  670. mes "Yep. What you see here is really the inside of a gigantic cave.";
  671. mes "Most people don't realize this at first, and that's thanks to all of the towns people's hard work and dedication.";
  672. next;
  673. mes "[TORUNA]";
  674. mes "The people who settled here were very industrious and worked diligently to turn this cave into a place that they could call home.";
  675. next;
  676. mes "[TORUNA]";
  677. mes "They slowly chipped away at the limestone surfaces, to shape the interior of the cave into something much more eye pleasing.";
  678. mes "It was from these humble beginnings that the Comodo you see today, was founded.";
  679. next;
  680. if(dmdswrd_Q == 6) goto sL_1;
  681. mes "[TORUNA]";
  682. mes "Unfortunately that is only half the story.";
  683. next;
  684. mes "[TORUNA]";
  685. mes "The early settlers faced an even greater challenge when the ^790079Evil Witch, Meropusum^000000, arrived.";
  686. mes "She was determined to rule the world, and used the newly founded town of Comodo as her staging ground.";
  687. next;
  688. mes "[TORUNA]";
  689. mes "Led by a group of strong heroes, the town fought back against the witch and sealed her away. Many lives were lost in this war however.";
  690. next;
  691. mes "[TORUNA]";
  692. mes "The strongest of the heroes was chosen as the town's new leader, and under his leadership the town prospered.";
  693. next;
  694. mes "[TORUNA]";
  695. mes "Be aware though, that Meropusom is still alive. Although she has been sealed away, her evil powers can still be felt.";
  696. mes "Her minions still lurks in the shadows awaiting their master's return.";
  697. next;
  698. mes "[TORUNA]";
  699. mes "So be cautious when venturing into the unknown parts of Comodo. Anyway, so long and take care.";
  700. goto M_Menu;
  701. sL_1:
  702. mes "[TORUNA]";
  703. mes "Not only has this cave become a home for the people of Comodo, but it's unique environment has also helped in creating....";
  704. next;
  705. mes "[TORUNA]";
  706. mes "The world famous..... Comodo ^5533FFCheese^000000!!!";
  707. emotion e_ic;
  708. next;
  709. mes "[TORUNA]";
  710. mes "This special Cheese is simply DELICIOUS! You will understand how good the Cheese is once you try it.";
  711. emotion e_lv2;
  712. set dmdswrd_Q, 7;
  713. next;
  714. sL_2:
  715. mes "[TORUNA]";
  716. mes "You should go speak with the people at the ^009500Outdoor Bar^000000 near the camp grounds.";
  717. mes "I heard them talking about the ^5533FFCheese^000000, it is so popular.";
  718. close;
  719. M_End:
  720. mes "[TORUNA]";
  721. mes "The taste of Comodo Cheese is simply out of this world!! Just one taste and I guarantee that you won't be able to stop!";
  722. mes "It's so good you may even go GRAZY without it!";
  723. emotion e_lv;
  724. next;
  725. mes "[TORUNA]";
  726. mes "Oh if I could just have one piece.... I'd be so happy I'd dance all night on that ^5555FFHula Dancing Stage^000000!!";
  727. close;
  728. }
  729. //=======================================================
  730. comodo.gat,164,291,2 script Rakusa 73,{
  731. if(dmdswrd_Q == 7) goto L_1;
  732. if(dmdswrd_Q == 8) goto L_2;
  733. mes "[Rakusa]";
  734. mes "Comodo is often referred to as the town of 'recreation and relaxation'.......";
  735. next;
  736. mes "[Rakusa]";
  737. mes "This can be misleading however, for Comodo is not only the home of fun tourist attractions, but two very ^FF4444dangerous dungeons^000000 as well.";
  738. next;
  739. mes "[Rakusa]";
  740. mes "This area has unusually strong monsters. If you plan on entering the dungeons, be very well prepared and expect trouble.";
  741. mes "These dungeons are definitely not for the faint of heart!";
  742. close;
  743. L_1:
  744. mes "[Rakusa]";
  745. mes "That man sitting over there simply won't stop talking about that Comodo ^3355FF'Cheese'^000000.........";
  746. next;
  747. mes "[Rakusa]";
  748. mes "I just can't stop wondering about what kind of Cheese it is. I sure hope I will have the opportunity to try it someday.";
  749. set dmdswrd_Q, 8;
  750. next;
  751. L_2:
  752. mes "[Rakusa]";
  753. mes "It looks like ^5533FFKichiri^000000 isn't as interested in the Cheese as that other man is though...... actually he looks rather annoyed.........";
  754. next;
  755. mes "[Rakusa]";
  756. mes "Someone should check on Kichiri and make sure everything is all right......";
  757. close;
  758. }
  759. //=======================================================
  760. comodo.gat,169,284,4 script Kichiri 99,{
  761. mes "[Kichiri]";
  762. if(dmdswrd_Q == 8) goto L_1;
  763. if(dmdswrd_Q == 9) goto L_2;
  764. mes "In the heart of Comodo lies a performance stage. It's where a number of crazed residents put on shows for the tourists that come to visit.";
  765. mes "The shows are so popular that some tourist even come back to Comodo to see them again.";
  766. next;
  767. mes "[Kichiri]";
  768. mes "Many of the residents just dance and dance without much skill.";
  769. mes "But for the few who show some talent, there is the possibility of being recruited by the local ^5555FFDancers Guild^000000.";
  770. close;
  771. L_1:
  772. mes "The guy sitting near me just won't stop talking about Comodo ^5533FFCheese^000000...... It's going to drive me insane!";
  773. emotion e_pif;
  774. next;
  775. mes "[Kichiri]";
  776. mes "Yeah, right over there, the guy named ^3355FFMagatu^000000. Can you do something about it?";
  777. set dmdswrd_Q, 9;
  778. close;
  779. L_2:
  780. mes "I just want to have a quit time and have a few drinks, is this too much to ask for?";
  781. mes "Stupid drunk ^3355FF' Magatu '^000000..... always talking about ^5533FFCheese^000000......";
  782. emotion e_ag;
  783. close;
  784. }
  785. //=======================================================
  786. comodo.gat,163,280,4 script Magatu 55,{
  787. mes "[Magatu]";
  788. if(dmdswrd_Q == 9) goto L_1;
  789. if(dmdswrd_Q == 10) goto L_2;
  790. mes "Yes! That's it!! The irresistible smell of that amazing ^5533FFCheese^000000!! It's so delicious!.... Oh, I can't wait any longer......";
  791. emotion e_lv;
  792. next;
  793. mes "[Magatu]";
  794. mes "No matter what anyone else says..... Comodo Cheese is truly the BEST!!! Kekekeke!!";
  795. emotion e_no1;
  796. next;
  797. mes "[Magatu]";
  798. mes "Cheese! CHEESE!! WONDERFULL Comodo CHEESE!!!.... so.... tas... ty.... (~drooools~)";
  799. emotion e_lv;
  800. close;
  801. L_1:
  802. mes "What? You want to know some information regarding Comodo's special ^5533FFCheese^000000?";
  803. mes "I guess I could give you some inside information............";
  804. emotion e_what;
  805. next;
  806. mes "[Magatu]";
  807. mes "Okay, go to the ^009500Casino^000000 and look for a guy named ^5533FFManzi^000000. He should be somewhere on the first floor.";
  808. mes "He's got a huge scar on his face so he should be easy to spot.";
  809. next;
  810. mes "[Magatu]";
  811. mes "When you see him give him this Bottle Cap. Don't do anything else, just give him the bottle cap and he will give you some info on the Cheese....";
  812. next;
  813. mes "^3355FF- Received a Bottle Cap -^000000";
  814. set dmdswrd_Q, 10;
  815. close;
  816. L_2:
  817. mes "Oh yeah, I got to tell you my friend's name.....";
  818. next;
  819. mes "[Magatu]";
  820. mes "O? I already told you? Bah, I am so drunk....... ^5533FFManzi^000000... He’s in the ^009500Casino^000000, got it?";
  821. emotion e_hmm;
  822. close;
  823. }
  824. //======================================================
  825. cmd_in02.gat,189,99,4 script Manzi 85,{
  826. if(dmdswrd_Q == 10) goto L_1;
  827. if(dmdswrd_Q == 11) goto L_2;
  828. if(BaseJob == Job_Novice) goto L_Nov;
  829. mes "[Manzi]";
  830. mes "There have been some people who've bet too much and have lost their pecopeco and many other precious items.";
  831. mes "So be careful when you make your bets..... you might just loose the shirt off your back.......";
  832. close;
  833. L_Nov:
  834. mes "[Manzi]";
  835. mes "Stop bothering me you little kid. This place is for adults only, get out of here.";
  836. close;
  837. L_1:
  838. mes "[Manzi]";
  839. mes "Yes?..........";
  840. next;
  841. mes "^3355FF- You give him the Bottle Cap-^000000";
  842. next;
  843. mes "[Manzi]";
  844. mes "..........................";
  845. next;
  846. mes "[Mazi]";
  847. mes "Whoa! This is from my friend Magatu, you must be someone of great importance to him.";
  848. mes "Otherwise, he wouldn't have given you the Bottle Cap.";
  849. emotion e_ic;
  850. next;
  851. mes "[Manzi]";
  852. mes "I made a promise to Magatu that I'd help anybody who had one of his bottle caps find out more about the ^5533FFCheese^000000.........";
  853. next;
  854. mes "[Manzi]";
  855. mes "Only a selected few get the rare opportunity to taste the legendary Comodo Cheese you know.";
  856. next;
  857. mes "[Manzi]";
  858. mes "Well, I guess you could find out more about Comodo Cheese from a lady near the ^3355FF 'Hulla Stage' ^000000 located near the center of town.";
  859. next;
  860. mes "^3355FF- Received Shiny Coin -^000000";
  861. next;
  862. mes "[Manzi]";
  863. mes "Just tell her that Manzi from the casino sent you and show her that coin. She'll tell you all you need to know about the Cheese.";
  864. next;
  865. mes "[Manzi]";
  866. mes "By the way......... no else is listening this right?....... *whispers: that lady is actually in charge of the Comodo Cheese distribution*...........";
  867. set dmdswrd_Q, 11;
  868. close;
  869. L_2:
  870. mes "[Manzi]";
  871. mes "The cheese lady should be near the ^5533FFHulla Stage^000000. Just remember to show her the coin when you ask her about the cheese.";
  872. close;
  873. }
  874. //=======================================================
  875. comodo.gat,187,153,4 script Hullaris 701,{
  876. mes "[Hullaris]";
  877. if(dmdswrd_Q == 11) goto L_1;
  878. if(dmdswrd_Q == 12) goto L_2;
  879. if(dmdswrd_Q == 13) goto L_3;
  880. if(dmdswrd_Q == 14) goto L_4;
  881. mes "Hula Dance? Who says it's merely a hula dance?? It is much more than just some dance.";
  882. mes "To refer to Comodo's unique form of dancing as simply a hula dance, is just insulting!";
  883. emotion e_an;
  884. next;
  885. mes "[Hullaris]";
  886. mes "The Comodo Hula Dance was developed long ago. Legend has it that the dance was used to control the minds and bodies of others!";
  887. mes "Hula 'dance'?.... More like Hula 'communication'......";
  888. next;
  889. mes "[Hullaris]";
  890. mes "This form of 'communication' was capable of not only changing a persons mood, but of controlling a persons mind as well!";
  891. next;
  892. mes "[Hullaris]";
  893. mes "Hehehehehe...... If anyone can dance better than me.... LET EM COME OUT!! It is more than just dancing..........";
  894. mes "It is a form of 'COMMUNICATION'!!!";
  895. emotion e_gg;
  896. close;
  897. L_1:
  898. mes "Ah, such a great day...........";
  899. next;
  900. menu "Show her the Shiny Coin",-,"Don't show her the coin, but continue talking",M_End;
  901. mes "^3355FF- Shows lady the Shiny Coin -^000000";
  902. next;
  903. mes "[Hullaris]";
  904. mes "Hmm, that coin.... How did you know to come and look for me? Ah, I got it. Manzi must have told you about me.";
  905. emotion e_hmm;
  906. next;
  907. mes "[Hullaris]";
  908. mes "I presume you are also interested in the famous Comodo ^5533FFCheese^000000.";
  909. mes "Well you've come to the right place because you're talking to a real expert.";
  910. next;
  911. mes "[Hullaris]";
  912. mes "And let me tell you something about how rare Comodo Cheese is.......";
  913. mes "Some people will NEVER get to taste it in their entire lifetime.....";
  914. next;
  915. mes "[Hullaris]";
  916. mes "Before I go any further, I will need to clear up some of the misconceptions you may have about Comodo Cheese.";
  917. next;
  918. mes "[Hullaris]";
  919. mes "In reality, Comodo Cheese is NOT actually a cheese. It is actually a very powerful enchanted magical stone, know as.........";
  920. mes "The ^3355FFStone of Awakening^000000.";
  921. next;
  922. mes "[Hullaris]";
  923. mes "Because of the similarities in shape, form, and color, between the two, people have mistaken the stone to be cheese.";
  924. next;
  925. mes "[Hullaris]";
  926. mes "Legend has it that the user of the Stone of Awakening, could gain great knowledge and power much faster than normal people.";
  927. next;
  928. mes "[Hullaris]";
  929. mes "Many Wizards and Mages in the past have grown very powerful in very short time after consuming the Stone of Awakening.";
  930. next;
  931. mes "[Hullaris]";
  932. mes "Therefore, even though my close friend told you to come to me, I cannot just give you this rare item.";
  933. next;
  934. mes "[Hullaris]";
  935. mes "I am very sorry about this, but you will need to prove to me somehow that you are worthy of this stone.";
  936. next;
  937. mes "[Hullaris]";
  938. goto L_2;
  939. M_End:
  940. mes "[Hullaris]";
  941. mes "Hey! Don't look at me like that, get out of here!";
  942. emotion e_gasp;
  943. close;
  944. L_2:
  945. mes "Some sort of ^5533FFProof of Worthiness^000000 could be obtained through the wizard ^5533FF'Nigirboran'^000000.";
  946. mes "He is usually inside of the ^009500East Comodo Dungeon^000000.";
  947. next;
  948. mes "[Hullaris]";
  949. mes "Just tell Nigirboran everything I have told you and he will judge whether or not you are worthy of the Stone of Awakening.";
  950. mes "Best of luck to you.";
  951. set dmdswrd_Q, 12;
  952. close;
  953. L_3:
  954. mes "Your back........ do you have the ^5533FFProof of Worthiness^000000?";
  955. mes "I cannot give you the Stone of Awakening if you have not passed the test.";
  956. close;
  957. L_4:
  958. mes "How did the test go?";
  959. next;
  960. mes "^3355FF~ Shows Hullaris ~^000000";
  961. mes "^3355FF~ Proof of Worthiness ~^000000";
  962. next;
  963. mes "[Hullaris]";
  964. mes "Ah, you did it! I knew you would pass the test. No I mean it.";
  965. mes "There was something about you that gave me confidence in your abilities.";
  966. next;
  967. mes "[Hullaris]";
  968. mes "Anyway, here is the Stone of Awakening as promised.........";
  969. next;
  970. mes "^3355FF~ you received the Stone of Awakening ~^000000";
  971. mes "^3355FF~ you quickly eat it. . . . . ~^000000";
  972. next;
  973. mes "^3355FF~ Munch . .Munch . . ~^000000";
  974. next;
  975. mes "^3355FF~ Tastes like some sort of mushroom... ~^000000";
  976. mes "^3355FF~ it is somewhat sour... ~^000000";
  977. next;
  978. mes "^3355FF~ somehow you feel more confident... ~^000000";
  979. mes "^3355FF~ and more courageous now! ~^000000";
  980. next;
  981. mes "[Hullaris]";
  982. mes "What do you think? The taste and smell are indescribable huh? From the way you look I can tell that it was worth the effort to find.";
  983. next;
  984. mes "[Hullaris]";
  985. mes "You are now one of the few who have been privileged enough to taste Comodo's special 'Cheese', heh heh heh.....";
  986. mes "Well have fun here in Comodo.";
  987. set dmdswrd_Q,15;
  988. close;
  989. }
  990. //=========================================================
  991. beach_dun3.gat,30,220,4 script Wizard Nigirboran 704,{
  992. mes "[Nigirboran]";
  993. if(dmdswrd_Q == 12) goto L_1;
  994. if(dmdswrd_Q == 13) goto L_2;
  995. if(dmdswrd_Q == 14) goto L_3;
  996. if(dmdswrd_Q == 15) goto L_4;
  997. mes ". . . . . . . . . . . . . . .";
  998. next;
  999. mes "[Nigirboran]";
  1000. mes "I am Nigirboran, a Wizard in training...";
  1001. next;
  1002. mes "[Nigirboran]";
  1003. mes "If you don't have anything to say, please do not bother me, I am very busy.";
  1004. close;
  1005. L_1:
  1006. mes ". . . . . Hmm. . . . . .";
  1007. next;
  1008. mes "[Nigirboran]";
  1009. mes "Hullaris told you to come didn't she? Let me introduce myself. I am Nigirboran, a Wizard in training.";
  1010. next;
  1011. mes "[Nigirboran]";
  1012. mes "It is true that Comodo ^5533FFCheese^000000 is actually the ^5533FF'Stone of Awakening' or the 'Stone of Wisdom'^000000.";
  1013. mes "It's unfortunate that so many people think of this great stone as nothing more than a tasty snack.";
  1014. next;
  1015. mes "[Nigirboran]";
  1016. mes "A long time ago, real Comodo cheese was actually made from Payon's poisonous mushrooms, Aldebaran's singing plants, and Morroc's cactus juice.";
  1017. next;
  1018. mes "[Nigirboran]";
  1019. mes "The cheese was aged for a minimum of 3 years before it could be eaten. If anyone ate the cheese before it had a chance to properly age....";
  1020. next;
  1021. mes "[Nigirboran]";
  1022. mes "The posion and magic from the cheese would melt their insides instantly............";
  1023. next;
  1024. mes "[Nigirboran]";
  1025. mes "That's why Hullaris sent you here. She wants to see if you can withstand those strong poisons.";
  1026. next;
  1027. mes "[Nigirboran]";
  1028. mes "Are you willing to risk your life just to prove yourself to Hullaris?";
  1029. next;
  1030. menu "Sure, why not.",-, "...... Uh... no....",M_End;
  1031. set dmdswrd_Q, 13;
  1032. mes "[Nigirboran]";
  1033. goto L_2;
  1034. M_End:
  1035. mes "[Nigirboran]";
  1036. mes "Very well then.";
  1037. close;
  1038. L_2:
  1039. mes "Very good, then let us begin the test.";
  1040. percentheal 100, 100;
  1041. next;
  1042. mes "[Nigirboran]";
  1043. mes "You will be given some real Comodo cheese to eat. If you are strong enough you will have no problems with the cheese.";
  1044. next;
  1045. mes "[Nigirboran]";
  1046. mes "If you start to feel noxious and start having hallucinations, that means you have succumb to the poison and are not worthy of the Stone of Awakening.";
  1047. next;
  1048. mes "[Nigirboran]";
  1049. mes "Ready?";
  1050. next;
  1051. mes "^3355FF~ you are given a piece of funky cheese ~";
  1052. mes ". . . . . . . . . . . . .^000000";
  1053. next;
  1054. mes "^3355FF~ you are given a piece of funky cheese ~";
  1055. mes ". . . . . . . . . . . . .";
  1056. mes "~ you swallow it ~";
  1057. mes ". . . . . . . . . . . . .^000000";
  1058. next;
  1059. mes "^3355FF~ you are given a piece of funky cheese ~";
  1060. mes ". . . . . . . . . . . . .";
  1061. mes "~ you swallow it ~";
  1062. mes ". . . . . . . . . . . . .";
  1063. mes "~ it tastes nasty!!! ~^000000";
  1064. next;
  1065. mes "^3355FF~ your body is overcome with a wave of heat ~";
  1066. mes "~ you feel the poison racing through your body ~^000000";
  1067. sc_start SC_Poison,900000,1;
  1068. next;
  1069. mes "^5533FF. . . . . . . . . . . . . . .^000000";
  1070. next;
  1071. sc_end SC_Poison;
  1072. if(BaseLevel < 25) goto L_LowLvl;
  1073. set @TEMP, rand(3);
  1074. if(@TEMP == 2) goto R_2;
  1075. if(@TEMP == 1) goto R_1;
  1076. R_0:
  1077. mes "^3355FF~ your body seems fine but.....but...but.... ~^000000";
  1078. next;
  1079. mes "^3355FF~ your body seems fine but.....but...but.... ~";
  1080. mes "~ You see pink elephants everywhere!! ~^000000";
  1081. next;
  1082. mes "[Nigirboran]";
  1083. mes "Tsk tsk. Although your body didn't seem to have any ill effects from the poison.... your mind was not as fortunate.";
  1084. next;
  1085. mes "[Nigirboran]";
  1086. mes "Hahaha... pink elephants.... reminds me of a bad acid trip I once had... er..... forget what I just said.";
  1087. emotion e_heh;
  1088. next;
  1089. mes "[Nigirboran]";
  1090. mes "If you cannot handle a little piece of cheese, there is absolutely no way you will be able to handle the Stone of Awakening.";
  1091. next;
  1092. mes "[Nigirboran]";
  1093. mes "If you feel up to it, you may try again later. The fact that you're still alive is a good sign.";
  1094. close;
  1095. R_1:
  1096. mes "^3355FF~ now you feel extremely cold and dizzy.... ~";
  1097. mes "~ your body feels weak and you are getting drowsy.... ~^000000";
  1098. sc_start SC_Sleep,900000,1;
  1099. next;
  1100. mes "[Nigirboran]";
  1101. mes "Hmm.... well the good news is you didn't have any hallucinations. Your body however, reacted poorly and you fell asleep.";
  1102. sc_end SC_Sleep;
  1103. next;
  1104. mes "[Nigirboran]";
  1105. mes "If you cannot handle a little piece of cheese, there is absolutely no way you will be able to handle the Stone of Awakening.";
  1106. next;
  1107. mes "[Nigirboran]";
  1108. mes "If you feel up to it, you may try again later. The fact that you're still alive is a good sign.";
  1109. close;
  1110. R_2:
  1111. mes "^3355FF~ you now feel a very strange, soothing sensation........ ~";
  1112. mes "~ your body feels at ease and your mind is clear... ~^000000";
  1113. next;
  1114. mes "[Nigirboran]";
  1115. mes "Hmm?.... Wow! Now that's rare!! You don't seem to have any ill effects from the posion.";
  1116. mes "You must be in top shape both mentally and physically.";
  1117. emotion e_ic;
  1118. next;
  1119. mes "[Nigirboran]";
  1120. mes "You have proved that you are worthy of the ^5533FFStone of Awakening^000000. Take this.......";
  1121. next;
  1122. mes "~ received ^5533FF'Proof of Worthiness'^000000 ~";
  1123. next;
  1124. mes "[Nigirboran]";
  1125. mes "Just show this to Hullaris and she will give you the Stone of Awakening.";
  1126. set dmdswrd_Q, 14;
  1127. next;
  1128. mes "[Nigirboran]";
  1129. mes "Oh, by the way, why did you choose to look for the Stone in the first place?";
  1130. next;
  1131. mes "[Nigirboran]";
  1132. mes "I surely hope its not because of the temptations of the three Doomed Swords...";
  1133. mes "....Huh? You don't know what the three Doomed Swords are?";
  1134. next;
  1135. mes "[Nigirboran]";
  1136. mes "Legend has it that the one who wields the three Doomed Swords";
  1137. mes "^3355FF- Executioner -^000000";
  1138. mes "^3355FF- Mysteltain-^000000";
  1139. mes "^3355FF- Grimtooth -^000000";
  1140. mes "could conquer the whole world with ease.";
  1141. next;
  1142. mes "[Nigirboran]";
  1143. mes "To summon these three Doomed Swords, the user is also required to possess";
  1144. mes "both the ^3355FF` Tablet of Power '^000000 and";
  1145. mes "^3355FF` Book of the Tiresome Sheep'^000000.";
  1146. close;
  1147. L_LowLvl:
  1148. mes "^3355FF~ it is unbearable and causes you to faint ~^000000";
  1149. next;
  1150. warp "beach_dun3.gat",32,214;
  1151. doevent "Wizard Nigirboran::OnFainted";
  1152. end;
  1153. OnFainted:
  1154. mes "[Nigirboran]";
  1155. mes "~ Sigh ~ You are simply not strong enough to withstand the poison.";
  1156. mes "Maybe if you had a ^5533FFBase level of at least 25^000000, you could withstand the poison....";
  1157. close;
  1158. L_3:
  1159. mes "Go see Hullaris for the Stone of Awakening. Good luck to you.";
  1160. close;
  1161. L_4:
  1162. mes "Look for ^3355FFMoet Leng Good^000000 somewhere";
  1163. mes "inside ^3355FFAldebaran^000000";
  1164. mes "regarding information about the 'Tablet of Power'";
  1165. close;
  1166. }