quests_comodo.txt 48 KB

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