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