1 | //===== eAthena Script ======================================= |
---|
2 | //= Old Blue Box Quest |
---|
3 | //===== By =================================================== |
---|
4 | //= Celesta, Lupus |
---|
5 | //===== Version ============================================== |
---|
6 | //= 1.8 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena SVN |
---|
9 | //===== Description: ========================================= |
---|
10 | // [Aegis COnversion] |
---|
11 | //= Old Blue Box quest (?) |
---|
12 | //= Officially this quest gave an OBB in exhange for a the |
---|
13 | //= required items unlimitedly, however this was changed by |
---|
14 | //= Gravity, who claimed this behavior as a bug. |
---|
15 | //= The exact purpose of this quest is undetermined, but |
---|
16 | //= Gravity claimed that another quest would eventually |
---|
17 | //= branch from this one. |
---|
18 | //===== Additional Comments: ================================= |
---|
19 | //= 1.7 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] |
---|
20 | //= 1.8 Added missing checkweights. [L0ne_W0lf] |
---|
21 | //============================================================ |
---|
22 | |
---|
23 | alberta,43,244,0 script Tourist#thai 99,{ |
---|
24 | if (checkweight(1201,1) == 0) { |
---|
25 | mes "- Wait a moment! -"; |
---|
26 | mes "- Currently you're carrying -"; |
---|
27 | mes "- too many items with you. -"; |
---|
28 | mes "- Please enlighten your weight -"; |
---|
29 | mes "- and try again. -"; |
---|
30 | close; |
---|
31 | } |
---|
32 | if (thai_head >= 1 && thai_head <= 5) { |
---|
33 | switch(thai_head) { |
---|
34 | case 1: |
---|
35 | set .@th_rand,rand(1,100); |
---|
36 | if (.@th_rand > 6 && .@th_rand < 20) { |
---|
37 | mes "[Tourist]"; |
---|
38 | mes "..........."; |
---|
39 | next; |
---|
40 | mes "[Tourist]"; |
---|
41 | mes "You're that meanie..."; |
---|
42 | next; |
---|
43 | mes "[Tourist]"; |
---|
44 | mes "..........."; |
---|
45 | next; |
---|
46 | mes "[Tourist]"; |
---|
47 | mes "..........."; |
---|
48 | next; |
---|
49 | mes "[Tourist]"; |
---|
50 | mes "..........."; |
---|
51 | next; |
---|
52 | mes "[Tourist]"; |
---|
53 | mes "Aren't you...?"; |
---|
54 | next; |
---|
55 | mes "[Tourist]"; |
---|
56 | mes "..........."; |
---|
57 | next; |
---|
58 | mes "[Tourist]"; |
---|
59 | mes "..........."; |
---|
60 | next; |
---|
61 | mes "[Tourist]"; |
---|
62 | mes "..........."; |
---|
63 | next; |
---|
64 | mes "[Tourist]"; |
---|
65 | mes "Alright, alright, but you don't have to be mean."; |
---|
66 | set thai_head,2; |
---|
67 | close; |
---|
68 | } |
---|
69 | mes "[Tourist]"; |
---|
70 | mes "..........."; |
---|
71 | next; |
---|
72 | mes "[Tourist]"; |
---|
73 | mes "I didn't think you were that"; |
---|
74 | mes "mean. Scram, I ain't in the mood"; |
---|
75 | mes "to talk to you."; |
---|
76 | close; |
---|
77 | case 2: |
---|
78 | mes "[Tourist]"; |
---|
79 | mes ".........."; |
---|
80 | next; |
---|
81 | switch(select("So do you have business in Lutie?:You don't want to go to Lutie for a tour.:What made you come over here?")) { |
---|
82 | case 1: |
---|
83 | mes "[Tourist]"; |
---|
84 | mes "Yes."; |
---|
85 | mes "Well, actually..."; |
---|
86 | next; |
---|
87 | mes "[Tourist]"; |
---|
88 | mes "I wanted to give my girlfriend"; |
---|
89 | mes "some well baked cookies."; |
---|
90 | mes "Sadly, in my hometown of"; |
---|
91 | mes "Morroc, we don't have fancy"; |
---|
92 | mes "foods like that."; |
---|
93 | next; |
---|
94 | mes "[Tourist]"; |
---|
95 | mes "I've been asking all these"; |
---|
96 | mes "merchants about it, and I was"; |
---|
97 | mes "told that I could only get them"; |
---|
98 | mes "in Lutie...that's my story."; |
---|
99 | next; |
---|
100 | mes "[Tourist]"; |
---|
101 | mes "Now I'm running out of money and"; |
---|
102 | mes "food...I can't stay here much longer..."; |
---|
103 | next; |
---|
104 | if (select("Do you want me to help you?:Well, good luck with everything.") == 1) { |
---|
105 | set thai_head,3; |
---|
106 | mes "[Tourist]"; |
---|
107 | mes "Thank god! Thank you so much."; |
---|
108 | mes "I knew you would help me~!"; |
---|
109 | next; |
---|
110 | mes "[Tourist]"; |
---|
111 | mes "Umm..."; |
---|
112 | mes "Before we talk about that help..."; |
---|
113 | mes "Er, hmmmm..."; |
---|
114 | mes "Well, you know I'm pretty"; |
---|
115 | mes "much starving to death now..."; |
---|
116 | next; |
---|
117 | mes "[Tourist]"; |
---|
118 | mes "Could you please get me some Meat?"; |
---|
119 | mes "I know I'm asking you too much,"; |
---|
120 | mes "but I'm pretty much penniless"; |
---|
121 | mes "so I don't really have much"; |
---|
122 | mes "of a choice..."; |
---|
123 | close; |
---|
124 | } |
---|
125 | set thai_head,1; |
---|
126 | mes "[Tourist]"; |
---|
127 | mes "........."; |
---|
128 | mes "How could you be so cold"; |
---|
129 | mes "hearted after hearing my story?"; |
---|
130 | mes "...You're pretty mean!"; |
---|
131 | close; |
---|
132 | case 2: |
---|
133 | mes "[Tourist]"; |
---|
134 | mes "...Oh really? Hmm...people said I"; |
---|
135 | mes "could only get the well baked"; |
---|
136 | mes "cookie in Lutie."; |
---|
137 | next; |
---|
138 | mes "[Tourist]"; |
---|
139 | mes "I wanted to give my girlfriend"; |
---|
140 | mes "some well baked cookies."; |
---|
141 | mes "Sadly, in my hometown of"; |
---|
142 | mes "Morroc, we don't have fancy"; |
---|
143 | mes "foods like that."; |
---|
144 | next; |
---|
145 | mes "[Tourist]"; |
---|
146 | mes "I've been asking all these"; |
---|
147 | mes "merchants about it, and I was"; |
---|
148 | mes "told that I could only get them"; |
---|
149 | mes "in Lutie...that's my story."; |
---|
150 | next; |
---|
151 | mes "[Tourist]"; |
---|
152 | mes "Now I'm running out of money and"; |
---|
153 | mes "food...I can't stay here much longer..."; |
---|
154 | next; |
---|
155 | if (select("Do you want me to help you?:Well, good luck with everything.") == 1) { |
---|
156 | set thai_head,3; |
---|
157 | mes "[Tourist]"; |
---|
158 | mes "Thank god! Thank you so much."; |
---|
159 | mes "I knew you would help me~!"; |
---|
160 | next; |
---|
161 | mes "[Tourist]"; |
---|
162 | mes "Umm..."; |
---|
163 | mes "Before we talk about that help..."; |
---|
164 | mes "Er, hmmmm..."; |
---|
165 | mes "Well, you know I'm pretty"; |
---|
166 | mes "much starving to death now..."; |
---|
167 | next; |
---|
168 | mes "[Tourist]"; |
---|
169 | mes "Could you please get me some Meat?"; |
---|
170 | mes "I know I'm asking you too much,"; |
---|
171 | mes "but I'm pretty much penniless"; |
---|
172 | mes "so I don't really have much"; |
---|
173 | mes "of a choice..."; |
---|
174 | close; |
---|
175 | } |
---|
176 | set thai_head,1; |
---|
177 | mes "[Tourist]"; |
---|
178 | mes "........."; |
---|
179 | mes "How could you be so cold"; |
---|
180 | mes "hearted after hearing my story?"; |
---|
181 | mes "...You're pretty mean!"; |
---|
182 | close; |
---|
183 | case 3: |
---|
184 | mes "[Tourist]"; |
---|
185 | mes "I was told that I could only find"; |
---|
186 | mes "the entrance to Lutie in"; |
---|
187 | mes "Al De Baran..."; |
---|
188 | next; |
---|
189 | mes "[Tourist]"; |
---|
190 | mes "So I came here after searching"; |
---|
191 | mes "for Al De Baran...almost"; |
---|
192 | mes "killing myself when I passed the desert...*Sob*"; |
---|
193 | close; |
---|
194 | } |
---|
195 | case 3: |
---|
196 | if (countitem(517) == 0) { |
---|
197 | mes "[Tourist]"; |
---|
198 | mes "I see...I can understand that you"; |
---|
199 | mes "can't help me. It's alright..."; |
---|
200 | mes "It's not like I have the right"; |
---|
201 | mes "to demand anything of you..."; |
---|
202 | mes "But..."; |
---|
203 | next; |
---|
204 | mes "[Tourist]"; |
---|
205 | mes "*Sob*...so... hungry..."; |
---|
206 | close; |
---|
207 | } |
---|
208 | set .@th_rand,rand(1,100); |
---|
209 | if (.@th_rand > 0 && .@th_rand < 10) { |
---|
210 | if (countitem(517) == 10) { |
---|
211 | mes "[Tourist]"; |
---|
212 | mes "Ah...thanks! Thank you so much!"; |
---|
213 | delitem 517,10; //Meat |
---|
214 | next; |
---|
215 | } |
---|
216 | else if (countitem(517) < 10) { |
---|
217 | mes "[Tourist]"; |
---|
218 | mes "I appreciate that you're"; |
---|
219 | mes "helping me out of the"; |
---|
220 | mes "goodness of your heart,"; |
---|
221 | mes "but..."; |
---|
222 | next; |
---|
223 | mes "[Tourist]"; |
---|
224 | mes "What are you..."; |
---|
225 | mes "Cheap?! You can feed"; |
---|
226 | mes "a starving man more"; |
---|
227 | mes "than this...bring me"; |
---|
228 | mes "more Meat!"; |
---|
229 | close; |
---|
230 | } |
---|
231 | else if (countitem(517) > 10) { |
---|
232 | mes "[Tourist]"; |
---|
233 | mes "I appreciate you bringing"; |
---|
234 | mes "all this for me but..."; |
---|
235 | next; |
---|
236 | mes "[Tourist]"; |
---|
237 | mes "Geez, you want I should"; |
---|
238 | mes "choke myself to death?"; |
---|
239 | mes "I can't eat all of this!"; |
---|
240 | mes "Bring me less Meat, yeah?"; |
---|
241 | close; |
---|
242 | } |
---|
243 | } |
---|
244 | else if (.@th_rand > 11 && .@th_rand < 80) { |
---|
245 | if (countitem(517) == 20) { |
---|
246 | mes "[Tourist]"; |
---|
247 | mes "Ah...thanks! Thank you so much!"; |
---|
248 | delitem 517,20; //Meat |
---|
249 | next; |
---|
250 | } |
---|
251 | else if (countitem(517) < 20) { |
---|
252 | mes "[Tourist]"; |
---|
253 | mes "I appreciate that you're"; |
---|
254 | mes "helping me out of the"; |
---|
255 | mes "goodness of your heart,"; |
---|
256 | mes "but..."; |
---|
257 | next; |
---|
258 | mes "[Tourist]"; |
---|
259 | mes "What are you..."; |
---|
260 | mes "Cheap?! You can feed"; |
---|
261 | mes "a starving man more"; |
---|
262 | mes "than this...bring me"; |
---|
263 | mes "more Meat!"; |
---|
264 | close; |
---|
265 | } |
---|
266 | else if (countitem(517) > 20) { |
---|
267 | mes "[Tourist]"; |
---|
268 | mes "I appreciate you bringing"; |
---|
269 | mes "all this for me but..."; |
---|
270 | next; |
---|
271 | mes "[Tourist]"; |
---|
272 | mes "Geez, you want I should"; |
---|
273 | mes "choke myself to death?"; |
---|
274 | mes "I can't eat all of this!"; |
---|
275 | mes "Bring me less Meat, yeah?"; |
---|
276 | close; |
---|
277 | } |
---|
278 | } |
---|
279 | else { |
---|
280 | if (countitem(517) == 40) { |
---|
281 | mes "[Tourist]"; |
---|
282 | mes "Ah...thanks! Thank you so much!"; |
---|
283 | delitem 517,40; //Meat |
---|
284 | next; |
---|
285 | } |
---|
286 | else if (countitem(517) < 40) { |
---|
287 | mes "[Tourist]"; |
---|
288 | mes "I appreciate that you're"; |
---|
289 | mes "helping me out of the"; |
---|
290 | mes "goodness of your heart,"; |
---|
291 | mes "but..."; |
---|
292 | next; |
---|
293 | mes "[Tourist]"; |
---|
294 | mes "What are you..."; |
---|
295 | mes "Cheap?! You can feed"; |
---|
296 | mes "a starving man more"; |
---|
297 | mes "than this...bring me"; |
---|
298 | mes "more Meat!"; |
---|
299 | close; |
---|
300 | } |
---|
301 | else if (countitem(517) > 40) { |
---|
302 | mes "[Tourist]"; |
---|
303 | mes "Geez, you want I should"; |
---|
304 | mes "choke myself to death?"; |
---|
305 | mes "I can't eat all of this!"; |
---|
306 | mes "Bring me less Meat, yeah?"; |
---|
307 | close; |
---|
308 | } |
---|
309 | } |
---|
310 | set thai_head,4; |
---|
311 | mes "^3355FFHe seemed to have been"; |
---|
312 | mes "starving for a long time."; |
---|
313 | mes "He ate all the meat I gave him"; |
---|
314 | mes "and it was all gone in a flash.^000000"; |
---|
315 | if (countitem(538) > 0) { |
---|
316 | mes "^0000FF...Oh my! He took my cookies without even asking and ate all of those too!!^000000"; |
---|
317 | delitem 538,countitem(538); //Well_Baked_Cookie |
---|
318 | } |
---|
319 | next; |
---|
320 | mes "[Tourist]"; |
---|
321 | mes "*Phew*...thanks."; |
---|
322 | mes "At long last..."; |
---|
323 | mes "I feel stuffed."; |
---|
324 | mes "...Oh. Right."; |
---|
325 | mes "My girlfriend."; |
---|
326 | next; |
---|
327 | mes "[Tourist]"; |
---|
328 | mes "Er...about the well-baked"; |
---|
329 | mes "cookie I told you about? Um... I"; |
---|
330 | mes "know I'm being rude and selfish"; |
---|
331 | mes "...But I don't think I can find"; |
---|
332 | mes "it on my own."; |
---|
333 | next; |
---|
334 | mes "[Tourist]"; |
---|
335 | mes "So, could you bring me ^0000FF20 Well-baked Cookies^000000?"; |
---|
336 | next; |
---|
337 | mes "[Tourist]"; |
---|
338 | mes "Although I shouldn't be asking for"; |
---|
339 | mes "any more favors, and you'd have"; |
---|
340 | mes "to go through all this trouble..."; |
---|
341 | mes "while I'd be safe over here..."; |
---|
342 | next; |
---|
343 | mes "[Tourist]"; |
---|
344 | mes "I really want to make my"; |
---|
345 | mes "girlfriend happy. Everything"; |
---|
346 | mes "would be worth it for"; |
---|
347 | mes "that smile on her face..."; |
---|
348 | mes "I just can't pass this chance up!"; |
---|
349 | next; |
---|
350 | mes "[Tourist]"; |
---|
351 | mes "Haven't you been in love...?"; |
---|
352 | mes "Surely you understand the"; |
---|
353 | mes "sway that this woman has"; |
---|
354 | mes "over me! Otherwise...I'd be"; |
---|
355 | mes "selling jewels...anything"; |
---|
356 | mes "other than this."; |
---|
357 | next; |
---|
358 | mes "[Tourist]"; |
---|
359 | mes "I'm begging you, since you're"; |
---|
360 | mes "stronger and less delicate"; |
---|
361 | mes "than me, please bring me"; |
---|
362 | mes "^0000FF20 Well-baked Cookies^000000!"; |
---|
363 | mes "For me, it's impossible!!"; |
---|
364 | close; |
---|
365 | case 4: |
---|
366 | if (countitem(538) > 19) { |
---|
367 | mes "[Tourist]"; |
---|
368 | mes "Ah~!! Thank you so much!!"; |
---|
369 | mes "There really are many good"; |
---|
370 | mes "people like you in this world."; |
---|
371 | next; |
---|
372 | set thai_head,5; |
---|
373 | delitem 538,20; //Well_Baked_Cookie |
---|
374 | mes "[Tourist]"; |
---|
375 | mes "I appreciate what you've done for"; |
---|
376 | mes "me...now I can see her smile with"; |
---|
377 | mes "happiness."; |
---|
378 | next; |
---|
379 | mes "[Tourist]"; |
---|
380 | mes "Hmm, there is still one problem"; |
---|
381 | mes "left for me though...How do I"; |
---|
382 | mes "get back home to Morroc??"; |
---|
383 | mes "Well, if it can make my girl"; |
---|
384 | mes "happy..."; |
---|
385 | next; |
---|
386 | mes "[Tourist]"; |
---|
387 | mes "...I'll get around to it."; |
---|
388 | mes "Sooner or later. Man,"; |
---|
389 | mes "that desert's really big,"; |
---|
390 | mes "you know?"; |
---|
391 | close; |
---|
392 | } |
---|
393 | mes "[Tourist]"; |
---|
394 | mes "I see...I can understand that you"; |
---|
395 | mes "can't help me. It's alright..."; |
---|
396 | mes "It's not like I have the right"; |
---|
397 | mes "to demand anything of you..."; |
---|
398 | mes "But..."; |
---|
399 | close; |
---|
400 | case 5: |
---|
401 | mes "[Tourist]"; |
---|
402 | mes "Thank you so much!"; |
---|
403 | next; |
---|
404 | mes "[Tourist]"; |
---|
405 | mes "Hmm...I wanna pay you back..."; |
---|
406 | mes "And you're an adventurer..."; |
---|
407 | mes "But I don't got any like..."; |
---|
408 | mes "magic armor or those"; |
---|
409 | mes "cards you guys are"; |
---|
410 | mes "always playing with..."; |
---|
411 | next; |
---|
412 | mes "[Tourist]"; |
---|
413 | mes "Hmmm..."; |
---|
414 | mes "....I got it!"; |
---|
415 | mes "Sooner or later, you"; |
---|
416 | mes "wanna visit some sort"; |
---|
417 | mes "of wise man or..."; |
---|
418 | mes "...something, right?"; |
---|
419 | next; |
---|
420 | mes "[Tourist]"; |
---|
421 | mes "Visit my pal ^649664Jacob^000000 in"; |
---|
422 | mes "Morroc. Tell him that I"; |
---|
423 | mes "introduced you. He knows"; |
---|
424 | mes "about a wise man..."; |
---|
425 | mes "Though, he isn't one"; |
---|
426 | mes "himself..."; |
---|
427 | next; |
---|
428 | mes "[Tourist]"; |
---|
429 | mes "Ah, sorry, I haven't even told"; |
---|
430 | mes "you my name. My name is..."; |
---|
431 | mes "^0000FFPandger Mayer^000000."; |
---|
432 | next; |
---|
433 | mes "[Tourist]"; |
---|
434 | mes "So yeah, tell my pal Jacob"; |
---|
435 | mes "that Pandger Mayer introduced you."; |
---|
436 | next; |
---|
437 | mes "[Tourist]"; |
---|
438 | mes "So...you tell 'em:"; |
---|
439 | mes "^0000FFPandger Mayer introduced you^000000"; |
---|
440 | mes "Exactly like that~"; |
---|
441 | mes "^0000FFPandger Mayer introduced you^000000"; |
---|
442 | mes "^FF0000Don't forget it~^000000"; |
---|
443 | next; |
---|
444 | mes "[Tourist]"; |
---|
445 | mes "Sorry I can't pay you back with"; |
---|
446 | mes "more than this, though. Kinda"; |
---|
447 | mes "stinks, huh?"; |
---|
448 | next; |
---|
449 | mes "[Tourist]"; |
---|
450 | mes "Here, take this as an extra"; |
---|
451 | mes "token of my gratitute."; |
---|
452 | mes "This doohickey has been"; |
---|
453 | mes "pretty handy in sticky"; |
---|
454 | mes "situations..."; |
---|
455 | next; |
---|
456 | mes "[Tourist]"; |
---|
457 | mes "Hopefully, it'll be useful."; |
---|
458 | set .@now_weight,MaxWeight-Weight; |
---|
459 | if (.@now_weight < 500) { |
---|
460 | mes "Umm...it seems you're carrying too much stuff with you."; |
---|
461 | mes "Doncha want me to help you?"; |
---|
462 | close; |
---|
463 | } |
---|
464 | set thai_head,6; |
---|
465 | getitem 1205,1; //Cutter_ |
---|
466 | next; |
---|
467 | mes "[Tourist]"; |
---|
468 | mes "Heh...once gain, thanks for"; |
---|
469 | mes "the help. Take care, guy."; |
---|
470 | close; |
---|
471 | } |
---|
472 | } |
---|
473 | else if (thai_head > 5) { |
---|
474 | switch(rand(1,3)) { |
---|
475 | case 1: |
---|
476 | mes "[Tourist]"; |
---|
477 | mes "Hey, thanks a bunch for your"; |
---|
478 | mes "help. Anyways...now I remember"; |
---|
479 | mes "I gotta go back through the"; |
---|
480 | mes "desert again...*Sigh*"; |
---|
481 | mes "Yeah, I better get back..."; |
---|
482 | next; |
---|
483 | mes "[Tourist]"; |
---|
484 | mes "...no matter how hard it is."; |
---|
485 | mes "But...yeah. It's gonna be pretty"; |
---|
486 | mes "hard. Crossing the desert..."; |
---|
487 | mes "alone. By myself...crud."; |
---|
488 | close; |
---|
489 | case 2: |
---|
490 | mes "[Tourist]"; |
---|
491 | mes "Hey, thanks a bunch for your"; |
---|
492 | mes "help....I ain't sure if I"; |
---|
493 | mes "can make it back to Morroc"; |
---|
494 | mes "in one piece..."; |
---|
495 | next; |
---|
496 | mes "[Tourist]"; |
---|
497 | mes "But I better go back"; |
---|
498 | mes "to my girlfriend. That's"; |
---|
499 | mes "the point of me coming"; |
---|
500 | mes "here in the first place,"; |
---|
501 | mes "anyway."; |
---|
502 | close; |
---|
503 | case 3: |
---|
504 | mes "[Tourist]"; |
---|
505 | mes "Hey, thanks a bunch for your"; |
---|
506 | mes "help. Man...Morroc is a long"; |
---|
507 | mes "way off, isn't it? Aw nuts..."; |
---|
508 | mes "I guess if I was crazy"; |
---|
509 | mes "enough to come here because"; |
---|
510 | mes "of my girlfriend..."; |
---|
511 | next; |
---|
512 | mes "[Tourist]"; |
---|
513 | mes "I'm crazy enough to walk all"; |
---|
514 | mes "way back to Morroc..."; |
---|
515 | mes "..."; |
---|
516 | mes "...unless..."; |
---|
517 | mes "You'll gimme a piggy-back ride?"; |
---|
518 | next; |
---|
519 | mes "[Tourist]"; |
---|
520 | mes "...kidding. I'm not that"; |
---|
521 | mes "big of a jerk, I guess."; |
---|
522 | mes "Try not to look so"; |
---|
523 | mes "surprised!"; |
---|
524 | close; |
---|
525 | } |
---|
526 | } |
---|
527 | else { |
---|
528 | if (JobLevel < 36) { |
---|
529 | mes "[Tourist]"; |
---|
530 | mes "Where am I...?"; |
---|
531 | mes "...Who am I?"; |
---|
532 | next; |
---|
533 | mes "[Tourist]"; |
---|
534 | mes "........."; |
---|
535 | next; |
---|
536 | mes "[Tourist]"; |
---|
537 | mes "....."; |
---|
538 | next; |
---|
539 | mes "[Tourist]"; |
---|
540 | mes "........."; |
---|
541 | next; |
---|
542 | mes "[Tourist]"; |
---|
543 | mes "Mahahahahahaha!!"; |
---|
544 | next; |
---|
545 | mes "[Tourist]"; |
---|
546 | mes "*Drools*...I love chocolate!"; |
---|
547 | next; |
---|
548 | mes "[Tourist]"; |
---|
549 | mes "Wait..."; |
---|
550 | mes "I have a girlfriend..."; |
---|
551 | mes "and...and..."; |
---|
552 | mes "cookies...?"; |
---|
553 | mes "I feel sooo lost..."; |
---|
554 | next; |
---|
555 | mes "^3355FFWe don't talk to crazy people~^000000"; |
---|
556 | close; |
---|
557 | } |
---|
558 | mes "[Tourist]"; |
---|
559 | mes "Where am I?"; |
---|
560 | mes "*Sob*...I guess I got lost..."; |
---|
561 | mes "Hey, where is this!?"; |
---|
562 | next; |
---|
563 | switch(select("Ignore him.:This is Alberta.:This is Al De Baran.")) { |
---|
564 | case 1: |
---|
565 | mes "[Tourist]"; |
---|
566 | mes ".........."; |
---|
567 | close; |
---|
568 | case 2: |
---|
569 | mes "[Tourist]"; |
---|
570 | mes "Ah...I see. So this is"; |
---|
571 | mes "Alberta...crud. I'm"; |
---|
572 | mes "supposed to go to ^0000FFLutie^000000..."; |
---|
573 | next; |
---|
574 | mes "[Tourist]"; |
---|
575 | mes "Hey, thanks for letting me know."; |
---|
576 | mes "Now at least I know where I am."; |
---|
577 | mes "Geez...they got boats here"; |
---|
578 | mes "that go everywhere, yeah?"; |
---|
579 | next; |
---|
580 | mes "[Tourist]"; |
---|
581 | mes "Oh right, everywhere...but Lutie."; |
---|
582 | mes "Man, this stinks."; |
---|
583 | close2; |
---|
584 | set thai_head,2; |
---|
585 | end; |
---|
586 | case 3: |
---|
587 | mes "[Tourist]"; |
---|
588 | mes "Oh...oh right!"; |
---|
589 | mes "Yeah, Al De Baran..."; |
---|
590 | mes "Guess I'm not lost"; |
---|
591 | mes "after all."; |
---|
592 | next; |
---|
593 | mes "[Tourist]"; |
---|
594 | mes "I was told that I can see a ^FF0000Clock Tower^000000 in Al De Baran."; |
---|
595 | mes "Can you tell me where I can find the ^FF0000Clock Tower^000000?"; |
---|
596 | next; |
---|
597 | if (select("It's in the center of the town.:Eh, I think I gave you the wrong town name.") == 1) { |
---|
598 | mes "[Tourist]"; |
---|
599 | mes ".............."; |
---|
600 | mes "You know, I'm beginning"; |
---|
601 | mes "to feel like..."; |
---|
602 | mes "you're pullin' my"; |
---|
603 | mes "chain..."; |
---|
604 | set thai_head,1; |
---|
605 | close; |
---|
606 | } |
---|
607 | mes "[Tourist]"; |
---|
608 | mes "Hah~!...I knew it! Well, it's"; |
---|
609 | mes "pretty hard to admit when"; |
---|
610 | mes "you do something wrong."; |
---|
611 | mes "Thanks for being honest, pal."; |
---|
612 | close; |
---|
613 | } |
---|
614 | } |
---|
615 | } |
---|
616 | |
---|
617 | morocc,230,150,0 script Jacob#thai 50,{ |
---|
618 | if (thai_head >= 6 && thai_head <= 11) { |
---|
619 | switch (thai_head) { |
---|
620 | case 6: |
---|
621 | mes "[Tommy]"; |
---|
622 | mes "Wahhhh~~~!!"; |
---|
623 | mes "Dad~~ let me have a Munak~~~!"; |
---|
624 | mes "Waaahhhh!"; |
---|
625 | next; |
---|
626 | mes "[Tommy]"; |
---|
627 | mes "I want Munak, Munakkkk~~!!"; |
---|
628 | mes "Other people have a Munak, why can't I~~?"; |
---|
629 | next; |
---|
630 | mes "[Tommy]"; |
---|
631 | mes "Munak Munak Munak Munak~~~!"; |
---|
632 | next; |
---|
633 | mes "[Jacob]"; |
---|
634 | mes "Er...Ummm..."; |
---|
635 | next; |
---|
636 | mes "[Tommy]"; |
---|
637 | mes "Munak Munak Munak Munak~~~!"; |
---|
638 | next; |
---|
639 | mes "[Jacob]"; |
---|
640 | mes "Tommy, daddy is kind of busy right now..."; |
---|
641 | next; |
---|
642 | mes "[Tommy]"; |
---|
643 | mes "Munak Munak Munak Munak~~~!"; |
---|
644 | next; |
---|
645 | mes "[Jacob]"; |
---|
646 | mes "*Sigh*...alright...alright. If you want it that bad..."; |
---|
647 | next; |
---|
648 | mes "[Jacob]"; |
---|
649 | mes "Gosh...being a dad is not an easy"; |
---|
650 | mes "thing to do...Hmmm? Do you have any business with me?"; |
---|
651 | mes " "; |
---|
652 | mes "[Tommy]"; |
---|
653 | mes "^FF0000Munak Munak Munak Munak!!^000000"; |
---|
654 | next; |
---|
655 | input .@input$; |
---|
656 | if (.@input$ != "Pandger Mayer introduced you") { |
---|
657 | mes "["+strcharinfo(0)+"]"; |
---|
658 | mes ""+.@input$+""; |
---|
659 | next; |
---|
660 | mes "[Jacob]"; |
---|
661 | mes "....Sorry, what did you say? I have no idea what you're talking about."; |
---|
662 | close; |
---|
663 | } |
---|
664 | mes "["+strcharinfo(0)+"]"; |
---|
665 | mes "Pandger Mayer introduced you."; |
---|
666 | next; |
---|
667 | mes "[Jacob]"; |
---|
668 | mes "Oh, you mean that guy in love?"; |
---|
669 | mes "Last time I saw him, he was"; |
---|
670 | mes "leaving to find cookies somewhere..."; |
---|
671 | next; |
---|
672 | mes "[Jacob]"; |
---|
673 | mes "There is only one reason he could have mentioned my name to you..."; |
---|
674 | mes " "; |
---|
675 | mes " "; |
---|
676 | mes "[Tommy]"; |
---|
677 | mes "^FF0000Munak Munak Munak Munak!!^000000"; |
---|
678 | next; |
---|
679 | mes "[Jacob]"; |
---|
680 | mes "......"; |
---|
681 | mes "*Sigh* For now, I have a favor to"; |
---|
682 | mes "ask of you. Could you bring me"; |
---|
683 | mes "^0000FF1 No Recipient^000000?"; |
---|
684 | set thai_head,7; |
---|
685 | next; |
---|
686 | mes "[Jacob]"; |
---|
687 | mes "I need this kid to calm down first..."; |
---|
688 | mes " "; |
---|
689 | mes " "; |
---|
690 | mes "[Tommy]"; |
---|
691 | mes "^FF0000Munak Munak Munak Munak!!^000000"; |
---|
692 | close; |
---|
693 | case 7: |
---|
694 | if (countitem(636) > 0) { |
---|
695 | delitem 636,1; //No_Recipient |
---|
696 | mes "[Tommy]"; |
---|
697 | mes "^FF0000Munak Munak Munak Munak!!^000000"; |
---|
698 | next; |
---|
699 | mes "[Jacob]"; |
---|
700 | mes "Oh, thank you so much..."; |
---|
701 | mes "Let me calm this kid down"; |
---|
702 | mes "first. Sorry my little boy is being so loud."; |
---|
703 | next; |
---|
704 | mes "[Jacob]"; |
---|
705 | mes "Tommy, Tommy?"; |
---|
706 | next; |
---|
707 | mes "[Tommy]"; |
---|
708 | mes "^FF0000Moo^9F0000naah^5F0000ahhh^3F0000ahhh^000000kkk!!..Err?"; |
---|
709 | mes "What's this, Daddy?"; |
---|
710 | next; |
---|
711 | mes "[Jacob]"; |
---|
712 | mes "This is called No Recipient~"; |
---|
713 | mes "With this, I can get you a Munak~"; |
---|
714 | next; |
---|
715 | mes "[Tommy]"; |
---|
716 | mes "Are you serious, Daddy?!"; |
---|
717 | next; |
---|
718 | mes "[Jacob]"; |
---|
719 | mes "Yes, I am~"; |
---|
720 | mes "Have you ever heard me lie?"; |
---|
721 | next; |
---|
722 | mes "[Tommy]"; |
---|
723 | mes "......."; |
---|
724 | mes "I know you always lie to Mommy."; |
---|
725 | next; |
---|
726 | mes "[Jacob]"; |
---|
727 | mes ".........."; |
---|
728 | mes "No no no no no...that's not"; |
---|
729 | mes "considered lying, Tommy."; |
---|
730 | mes "I am just trying to make it sound better to Mommy~"; |
---|
731 | next; |
---|
732 | mes "[Tommy]"; |
---|
733 | mes "......."; |
---|
734 | next; |
---|
735 | mes "^3355FFHe looks at his father in"; |
---|
736 | mes "doubt. Kids are too smart"; |
---|
737 | mes "to lie to nowadays...^000000"; |
---|
738 | next; |
---|
739 | mes "[Tommy]"; |
---|
740 | if (Sex) |
---|
741 | mes "So, mister, do you think my Daddy can catch a Munak with this?"; |
---|
742 | else |
---|
743 | mes "So, lady, do you think my Daddy can catch a Munak with this?"; |
---|
744 | next; |
---|
745 | switch(select("Yes.:...not sure.:No, ^FF0000never^000000.")) { |
---|
746 | case 1: |
---|
747 | mes "[Tommy]"; |
---|
748 | mes "Heh!! I knew my Daddy"; |
---|
749 | mes "wouldn't tell me a lie!! Thank you!!"; |
---|
750 | next; |
---|
751 | mes "[Jacob]"; |
---|
752 | mes "(...*Phew!* Thank you~)"; |
---|
753 | set thai_head,9; |
---|
754 | close; |
---|
755 | case 2: |
---|
756 | mes "[Tommy]"; |
---|
757 | if (Sex) |
---|
758 | mes "So tell me, mister. Did he lie to me, then?"; |
---|
759 | else |
---|
760 | mes "So tell me, lady. Did he lie to me, then?"; |
---|
761 | next; |
---|
762 | mes "[Jacob]"; |
---|
763 | mes "Wait...wait, Tommy, that's not true..."; |
---|
764 | mes "(^0000FFGosh, why are you doing this to me, help me already!!^000000)"; |
---|
765 | next; |
---|
766 | mes "[Tommy]"; |
---|
767 | mes "Can we catch a Munak with this or"; |
---|
768 | mes "not, huh? Tell meeeeehhhh~~~!"; |
---|
769 | next; |
---|
770 | switch(select("Yes, we can.:No, we can't.")) { |
---|
771 | case 1: |
---|
772 | mes "[Tommy]"; |
---|
773 | mes "Heh heh! I knew it!"; |
---|
774 | mes "Thank you~!!!"; |
---|
775 | next; |
---|
776 | mes "[Tommy]"; |
---|
777 | mes "Now I can have a Munak!"; |
---|
778 | next; |
---|
779 | mes "[Jacob]"; |
---|
780 | mes "(...*Phew* Thank you~)"; |
---|
781 | set thai_head,9; |
---|
782 | close; |
---|
783 | case 2: |
---|
784 | set thai_head,8; |
---|
785 | mes "[Tommy]"; |
---|
786 | mes "I knew it!! Daddy, you're a liar!!"; |
---|
787 | next; |
---|
788 | mes "[Tommy]"; |
---|
789 | mes "I hate you...I hate you!!!"; |
---|
790 | mes "I wish Baphomet would take you somewhere and eat you!!"; |
---|
791 | next; |
---|
792 | mes "[Jacob]"; |
---|
793 | mes "Shoot...Tommy, Tommy..."; |
---|
794 | mes "Listen to me...."; |
---|
795 | next; |
---|
796 | mes "[Tommy]"; |
---|
797 | mes "I don't wanna listen to you!!!"; |
---|
798 | mes "I hate yoooooouhhhh!!"; |
---|
799 | next; |
---|
800 | mes "[Jacob]"; |
---|
801 | mes "....You."; |
---|
802 | mes ""; |
---|
803 | next; |
---|
804 | mes "[Jacob]"; |
---|
805 | mes "I don't want to see your ugly face"; |
---|
806 | mes "around here any more..."; |
---|
807 | mes "Leave~!"; |
---|
808 | mes "How could you do this to me, huh?"; |
---|
809 | next; |
---|
810 | mes "[Tommy]"; |
---|
811 | mes "I hate yoooooouhhhh!!"; |
---|
812 | mes " "; |
---|
813 | mes " "; |
---|
814 | mes "[Jacob]"; |
---|
815 | mes "Tommy...Tommy please..."; |
---|
816 | mes "Will you let me explain...?"; |
---|
817 | set thai_head,8; |
---|
818 | close; |
---|
819 | } |
---|
820 | case 3: |
---|
821 | set thai_head,8; |
---|
822 | mes "[Tommy]"; |
---|
823 | mes "I knew it!! Daddy, you're a liar!!"; |
---|
824 | next; |
---|
825 | mes "[Tommy]"; |
---|
826 | mes "I hate you...I hate you!!!"; |
---|
827 | mes "I wish Baphomet will take you somewhere and eat you!!"; |
---|
828 | next; |
---|
829 | mes "[Jacob]"; |
---|
830 | mes "Shoot...Tommy, Tommy..."; |
---|
831 | mes "Listen to me...."; |
---|
832 | next; |
---|
833 | mes "[Tommy]"; |
---|
834 | mes "I don't wanna listen to you!!!"; |
---|
835 | mes "I hate yoooooouhhhh!!"; |
---|
836 | next; |
---|
837 | mes "[Jacob]"; |
---|
838 | mes "....You."; |
---|
839 | next; |
---|
840 | mes "[Jacob]"; |
---|
841 | mes "I don't want to see"; |
---|
842 | mes "your ugly face any more."; |
---|
843 | mes "Leave!"; |
---|
844 | mes "How could you do this to me, huh?"; |
---|
845 | next; |
---|
846 | mes "[Tommy]"; |
---|
847 | mes "I hate yoooooouhhhh!!"; |
---|
848 | mes "[Jacob]"; |
---|
849 | mes "Tommy...Tommy, please..."; |
---|
850 | mes "Will you let me explain...?"; |
---|
851 | set thai_head,8; |
---|
852 | close; |
---|
853 | } |
---|
854 | } |
---|
855 | mes "[Tommy]"; |
---|
856 | mes "^FF0000Munak Munak Munak Munak!!^000000"; |
---|
857 | next; |
---|
858 | mes "[Jacob]"; |
---|
859 | mes "*Sigh*...that's my boy. Please get me a No Recipient as soon as you can!"; |
---|
860 | close; |
---|
861 | case 8: |
---|
862 | if (rand(1,1000) == 792) { |
---|
863 | mes "[Tommy]"; |
---|
864 | mes "^FF0000Munak Munak Munak Munak!!^000000"; |
---|
865 | next; |
---|
866 | mes "[Jacob]"; |
---|
867 | mes "....*Sigh* Okay."; |
---|
868 | mes "I will give you a chance"; |
---|
869 | mes "to make up for your mistake."; |
---|
870 | mes "Please get me a No Recipient as soon as you can."; |
---|
871 | set thai_head,7; |
---|
872 | close; |
---|
873 | } |
---|
874 | mes "[Jacob]"; |
---|
875 | mes "....I don't want to talk to YOU"; |
---|
876 | mes "anymore. Get outta here~!"; |
---|
877 | mes "It's your fault my little"; |
---|
878 | mes "boy thinks I'm a big liar!"; |
---|
879 | close; |
---|
880 | case 9: |
---|
881 | mes "[Jacob]"; |
---|
882 | mes "*Phew* Now I can leave him alone."; |
---|
883 | mes "Kids nowadays are so impatient...I am worried about my son."; |
---|
884 | next; |
---|
885 | mes "[Jacob]"; |
---|
886 | mes "However, I can't do anything"; |
---|
887 | mes "about his temper...I think"; |
---|
888 | mes "he's just too young to know"; |
---|
889 | mes "what he's doing."; |
---|
890 | next; |
---|
891 | mes "[Jacob]"; |
---|
892 | mes "I'm having a hard time trying to"; |
---|
893 | mes "be a good parent, and I'm"; |
---|
894 | mes "beginning to appreciate my"; |
---|
895 | mes "own parents' efforts to raise me."; |
---|
896 | next; |
---|
897 | mes "[Jacob]"; |
---|
898 | mes "Respect your parents while they're"; |
---|
899 | mes "still alive. It's too late to be"; |
---|
900 | mes "sorry after you've lost them."; |
---|
901 | next; |
---|
902 | mes "[Jacob]"; |
---|
903 | mes "I was a wild kid as well...my"; |
---|
904 | mes "parents had a hard time raising"; |
---|
905 | mes "me. I'm ashamed of what I've done"; |
---|
906 | mes "when I was young..."; |
---|
907 | next; |
---|
908 | mes "[Jacob]"; |
---|
909 | mes "Those days, my parents couldn't"; |
---|
910 | mes "afford to feed me three meals a"; |
---|
911 | mes "day. And there were many"; |
---|
912 | mes "creditors that always came"; |
---|
913 | mes "to our house early"; |
---|
914 | mes "early in the morning."; |
---|
915 | next; |
---|
916 | mes "[Jacob]"; |
---|
917 | mes "Have you every heard about"; |
---|
918 | mes "distraint-papers? As soon"; |
---|
919 | mes "as those creditors put that"; |
---|
920 | mes "distraint-paper on any of my"; |
---|
921 | mes "things,it would no longer be"; |
---|
922 | mes "mine."; |
---|
923 | next; |
---|
924 | mes "[Jacob]"; |
---|
925 | mes "I hated my parents for not providing me with a sweet home,"; |
---|
926 | mes "and I became rebellious."; |
---|
927 | mes "But, no matter how bad I was,"; |
---|
928 | mes "Even in those difficult circumstances..."; |
---|
929 | next; |
---|
930 | mes "[Jacob]"; |
---|
931 | mes "They never gave up on me."; |
---|
932 | mes "Later, they told me that I was their one and only hope..."; |
---|
933 | mes "even though I was more of a burden than anything else at the moment."; |
---|
934 | next; |
---|
935 | mes "[Tommy]"; |
---|
936 | mes "Daddy, do you realize you've told"; |
---|
937 | mes "that story hundreds of times already? *Piff~*"; |
---|
938 | mes "Stop it already~"; |
---|
939 | next; |
---|
940 | mes "^3355FFTommy was jumping and running"; |
---|
941 | mes "around like a crazy rabbit and"; |
---|
942 | mes "eventually bumped against me.^000000"; |
---|
943 | next; |
---|
944 | mes "[Jacob]"; |
---|
945 | mes "...Tommy, respect your dad."; |
---|
946 | mes "This is the story of your father's life."; |
---|
947 | next; |
---|
948 | mes "[Jacob]"; |
---|
949 | mes "A.aa.aand.!!!"; |
---|
950 | next; |
---|
951 | mes "[Jacob]"; |
---|
952 | mes "How many times have I told you"; |
---|
953 | mes "to behave in front of other people?!"; |
---|
954 | next; |
---|
955 | mes "[Jacob]"; |
---|
956 | if (Sex) |
---|
957 | mes "Say you're sorry to him!"; |
---|
958 | else |
---|
959 | mes "Say you're sorry to her!"; |
---|
960 | next; |
---|
961 | mes "[Tommy]"; |
---|
962 | mes "*Piff~*"; |
---|
963 | next; |
---|
964 | mes "[Jacob]"; |
---|
965 | mes "I don't hear it~!!"; |
---|
966 | next; |
---|
967 | mes "[Tommy]"; |
---|
968 | mes "...I'm sorry...*bows head*"; |
---|
969 | set thai_head,10; |
---|
970 | close; |
---|
971 | case 10: |
---|
972 | set .@rem,rand(1,11); |
---|
973 | if (.@rem == 1) { |
---|
974 | mes "[Jacob]"; |
---|
975 | mes "Ah~ yes! Didn't you say Pandger Mayer introduced me to you?"; |
---|
976 | mes "He wouldn't introduce me to just anyone. Oh, you must be"; |
---|
977 | mes "...an adventurer."; |
---|
978 | next; |
---|
979 | mes "[Jacob]"; |
---|
980 | mes "Right."; |
---|
981 | mes "I have something to tell you."; |
---|
982 | next; |
---|
983 | mes "[Jacob]"; |
---|
984 | mes "When you go west from Morroc, and"; |
---|
985 | mes "pass through a cave, you will"; |
---|
986 | mes "arrive at a town called Comodo."; |
---|
987 | next; |
---|
988 | mes "[Jacob]"; |
---|
989 | mes "When you get there, you will see an old man named ^0000FFElder Creek^000000."; |
---|
990 | mes "As a Sage, he has gained the respect of many."; |
---|
991 | next; |
---|
992 | mes "[Jacob]"; |
---|
993 | mes "People say that many adventurers"; |
---|
994 | mes "are visiting this man for some"; |
---|
995 | mes "reason. Why don't you go talk to him and see if he has some wisdom for you?"; |
---|
996 | set thai_head,11; |
---|
997 | close; |
---|
998 | } |
---|
999 | else if (.@rem > 1 && .@remrem < 7) { |
---|
1000 | mes "[Jacob]"; |
---|
1001 | mes "Respect your parents when they're"; |
---|
1002 | mes "still alive. It's too late to be sorry after you've lost them."; |
---|
1003 | next; |
---|
1004 | mes "["+strcharinfo(0)+"]"; |
---|
1005 | mes "(Hmmm...I just know that there's more that this guy can tell me...)"; |
---|
1006 | close; |
---|
1007 | } |
---|
1008 | else { |
---|
1009 | mes "[Jacob]"; |
---|
1010 | mes "When you have a kid,"; |
---|
1011 | mes "don't forget to teach them"; |
---|
1012 | mes "this one thing:"; |
---|
1013 | next; |
---|
1014 | mes "[Jacob]"; |
---|
1015 | mes "'^0000FFBe good to other people.^000000'"; |
---|
1016 | mes "'^0000FFTry to be in someone else's shoes before judging that person.^000000'"; |
---|
1017 | mes "Do you understand?"; |
---|
1018 | next; |
---|
1019 | set name,PcName; |
---|
1020 | mes "["+strcharinfo(0)+"]"; |
---|
1021 | mes "(There's more this guy can tell me, I just know it...)"; |
---|
1022 | close; |
---|
1023 | } |
---|
1024 | case 11: |
---|
1025 | mes "[Jacob]"; |
---|
1026 | mes "Now, why don't you visit the Sage?"; |
---|
1027 | mes "And I thank you for your kindness."; |
---|
1028 | next; |
---|
1029 | mes "[Jacob]"; |
---|
1030 | mes "He's in Comodo, if you didn't"; |
---|
1031 | mes "catch that. An adventurer like you should be able to get there with no problem."; |
---|
1032 | close; |
---|
1033 | } |
---|
1034 | } |
---|
1035 | else if (thai_head > 11) { |
---|
1036 | mes "[Jacob]"; |
---|
1037 | mes "Thank you for the favour you did"; |
---|
1038 | mes "for me...although we couldn't"; |
---|
1039 | mes "catch a Munak in the end..."; |
---|
1040 | next; |
---|
1041 | mes "[Jacob]"; |
---|
1042 | mes "It seems he learned something"; |
---|
1043 | mes "through the experience."; |
---|
1044 | mes "He no longer demands something"; |
---|
1045 | mes "I cannot do for him, or"; |
---|
1046 | mes "misbehaves."; |
---|
1047 | next; |
---|
1048 | mes "[Jacob]"; |
---|
1049 | mes "That was another favor you did for me, even if you didn't mean to. Thank you."; |
---|
1050 | close; |
---|
1051 | } |
---|
1052 | else { |
---|
1053 | mes "[Jacob]"; |
---|
1054 | mes "*Yawns*...."; |
---|
1055 | mes "Today is such a boring day~."; |
---|
1056 | mes "I guess I'd better go take a walk"; |
---|
1057 | mes "with my son. Do you want to walk with me?"; |
---|
1058 | next; |
---|
1059 | mes "[Jacob's son]"; |
---|
1060 | mes "I'm happy to hear that, daddy~"; |
---|
1061 | close; |
---|
1062 | } |
---|
1063 | } |
---|
1064 | |
---|
1065 | comodo,68,195,0 script Old Man#thai 120,{ |
---|
1066 | if (checkweight(1201,1) == 0) { |
---|
1067 | mes "- Wait a moment! -"; |
---|
1068 | mes "- Currently you're carrying -"; |
---|
1069 | mes "- too many items with you. -"; |
---|
1070 | mes "- Please enlighten your weight -"; |
---|
1071 | mes "- and try again. -"; |
---|
1072 | close; |
---|
1073 | } |
---|
1074 | if (thai_head >= 11 && thai_head <= 15) { |
---|
1075 | switch(thai_head) { |
---|
1076 | case 11: |
---|
1077 | mes "[Elder Creek]"; |
---|
1078 | mes "Good day, adventurer."; |
---|
1079 | mes "What kind of business"; |
---|
1080 | mes "do you have with me?"; |
---|
1081 | next; |
---|
1082 | mes "[Elder Creek]"; |
---|
1083 | mes "Are you seeking fortune or"; |
---|
1084 | mes "mental relief? If not, do"; |
---|
1085 | mes "you wish to finish something"; |
---|
1086 | mes "you've started?"; |
---|
1087 | next; |
---|
1088 | mes "[Elder Creek]"; |
---|
1089 | mes "Answer me, adventurer!"; |
---|
1090 | next; |
---|
1091 | switch(select("I seek fortune!:I seek...wisdom.:I want to finish what I've started.")) { |
---|
1092 | case 1: |
---|
1093 | mes "[Elder Creek]"; |
---|
1094 | mes "You're honest...!"; |
---|
1095 | mes "However, I suggest that you try not to be enamored with wealth."; |
---|
1096 | next; |
---|
1097 | mes "[Elder Creek]"; |
---|
1098 | mes "Do you know the exact meaning"; |
---|
1099 | mes "of the old saying..."; |
---|
1100 | mes "^0000FFToo much is as bad as too little^000000?"; |
---|
1101 | mes "I will give you what you want if"; |
---|
1102 | mes "you answer the way I expect you to."; |
---|
1103 | next; |
---|
1104 | switch(select("It's necessary to have a lot!:Too dumb to see the future.:Too much of a good thing can be bad.:Cringe to the powerful.")) { |
---|
1105 | case 1: |
---|
1106 | mes "[Elder Creek]"; |
---|
1107 | mes "..."; |
---|
1108 | mes "Get out of my sight,"; |
---|
1109 | mes "you greedy fool."; |
---|
1110 | set thai_head,12; |
---|
1111 | close; |
---|
1112 | case 2: |
---|
1113 | mes "[Elder Creek]"; |
---|
1114 | mes "Bah! The more ignorant they are, the more arrogantly they act!"; |
---|
1115 | mes "Did you think that I would accept just any meaning?"; |
---|
1116 | mes "Take care, you ignorant fool."; |
---|
1117 | set thai_head,12; |
---|
1118 | close; |
---|
1119 | case 3: |
---|
1120 | mes "[Elder Creek]"; |
---|
1121 | mes "That's right. You know it pretty"; |
---|
1122 | mes "well. That adage serves as a lesson in greed."; |
---|
1123 | next; |
---|
1124 | mes "[Elder Creek]"; |
---|
1125 | mes "There is a man I've known for a"; |
---|
1126 | mes "long time...he was so greedy for"; |
---|
1127 | mes "money and fortune, he didn't care what other people thought of him."; |
---|
1128 | next; |
---|
1129 | mes "[Elder Creek]"; |
---|
1130 | mes "Consequently, people around him"; |
---|
1131 | mes "didn't like him at all. In the end, he lost his friends due to his greed."; |
---|
1132 | next; |
---|
1133 | mes "[Elder Creek]"; |
---|
1134 | mes "Of course, this rule applies to"; |
---|
1135 | mes "you as well. That sort of thing is a universal principle, after all."; |
---|
1136 | set thai_head,13; |
---|
1137 | close; |
---|
1138 | case 4: |
---|
1139 | mes "[Elder Creek]"; |
---|
1140 | mes "....."; |
---|
1141 | mes "Did you think that I would accept just any meaning??"; |
---|
1142 | mes "Take care, you ignorant fool."; |
---|
1143 | set thai_head,12; |
---|
1144 | close; |
---|
1145 | } |
---|
1146 | case 2: |
---|
1147 | mes "[Elder Creek]"; |
---|
1148 | mes "I see. I have been trying to help"; |
---|
1149 | mes "other people who need advice in"; |
---|
1150 | mes "order to improve their lives."; |
---|
1151 | next; |
---|
1152 | mes "[Elder Creek]"; |
---|
1153 | mes "Since you need my advice"; |
---|
1154 | mes "as well, I will try to"; |
---|
1155 | mes "impart my wisdom in a"; |
---|
1156 | mes "way that you will understand."; |
---|
1157 | next; |
---|
1158 | mes "[Elder Creek]"; |
---|
1159 | mes "Now, tell me what is bothering right now."; |
---|
1160 | next; |
---|
1161 | switch(select("Boy/girlfriend issue.:Financial problem.:Bored to death.:Career issue.:I want money.:Give me items, old man.")) { |
---|
1162 | case 1: |
---|
1163 | mes "[Elder Creek]"; |
---|
1164 | mes "I'm envious of you! Still, young"; |
---|
1165 | mes "folk like you are lucky to"; |
---|
1166 | mes "have such problems...sadly,"; |
---|
1167 | mes "no one but yourself can really"; |
---|
1168 | mes "help you in those kinds of"; |
---|
1169 | mes "situations..."; |
---|
1170 | next; |
---|
1171 | mes "[Elder Creek]"; |
---|
1172 | mes "However, the advice I can give you"; |
---|
1173 | mes "is this: Be honest with your"; |
---|
1174 | mes "beloved. One lie leads to"; |
---|
1175 | mes "another lie in no time."; |
---|
1176 | next; |
---|
1177 | mes "[Elder Creek]"; |
---|
1178 | mes "If you treat the person you love"; |
---|
1179 | mes "as special to you, that person"; |
---|
1180 | mes "will eventually come to"; |
---|
1181 | mes "understand your feelings..."; |
---|
1182 | next; |
---|
1183 | mes "[Elder Creek]"; |
---|
1184 | mes "And, remember this..."; |
---|
1185 | mes "Everyone has a different way of showing that they love someone."; |
---|
1186 | mes "So...don't be discouraged if your feelings aren't returned."; |
---|
1187 | next; |
---|
1188 | mes "[Elder Creek]"; |
---|
1189 | mes "But still, I believe being honest"; |
---|
1190 | mes "is the best way to gain your"; |
---|
1191 | mes "true love."; |
---|
1192 | next; |
---|
1193 | mes "[Elder Creek]"; |
---|
1194 | mes "....well, that is all I can tell"; |
---|
1195 | mes "you. I hope you will be happy"; |
---|
1196 | mes "with that nugget of wisdom."; |
---|
1197 | close2; |
---|
1198 | set thai_head,14; |
---|
1199 | end; |
---|
1200 | case 2: |
---|
1201 | mes "[Elder Creek]"; |
---|
1202 | mes "...yes, everybody has their own"; |
---|
1203 | mes "financial problems. However, think of it in this way:"; |
---|
1204 | next; |
---|
1205 | mes "[Elder Creek]"; |
---|
1206 | mes "Money is important to make"; |
---|
1207 | mes "a living, but it's not what life is all about."; |
---|
1208 | next; |
---|
1209 | mes "[Elder Creek]"; |
---|
1210 | mes "Some may have the life goal of"; |
---|
1211 | mes "making fortunes, but I don't think it's the happiest way of living."; |
---|
1212 | next; |
---|
1213 | mes "[Elder Creek]"; |
---|
1214 | mes "As you see, there are powerful"; |
---|
1215 | mes "people in this world who can control our lives. But oftentimes..."; |
---|
1216 | next; |
---|
1217 | mes "[Elder Creek]"; |
---|
1218 | mes "They are too greedy to be in that"; |
---|
1219 | mes "position and they don't have"; |
---|
1220 | mes "their priorities straight."; |
---|
1221 | mes "Instead of improving the world, they use their power to only help themselves."; |
---|
1222 | next; |
---|
1223 | mes "[Elder Creek]"; |
---|
1224 | mes "If I were them, I wouldn't want to"; |
---|
1225 | mes "rule the world in that way."; |
---|
1226 | next; |
---|
1227 | mes "[Elder Creek]"; |
---|
1228 | mes "Don't you think we need somebody who can change this world??"; |
---|
1229 | next; |
---|
1230 | mes "[Elder Creek]"; |
---|
1231 | mes ".....I apologize for being short"; |
---|
1232 | mes "tempered. I just wanted to let"; |
---|
1233 | mes "you know that money is not everything. But, it is something you need to live."; |
---|
1234 | next; |
---|
1235 | mes "[Elder Creek]"; |
---|
1236 | mes "I'm aware that greedy people"; |
---|
1237 | mes "ridicule this belief, saying"; |
---|
1238 | mes "that it is a poor man's effort"; |
---|
1239 | mes "to protect his pride."; |
---|
1240 | next; |
---|
1241 | mes "[Elder Creek]"; |
---|
1242 | mes "But, I still believe I am right."; |
---|
1243 | mes "After all...I am a Sage."; |
---|
1244 | mes "I hope you will be happy with my wise advice."; |
---|
1245 | close2; |
---|
1246 | set thai_head,14; |
---|
1247 | end; |
---|
1248 | case 3: |
---|
1249 | mes "[Elder Creek]"; |
---|
1250 | mes "Yes, we always need to be"; |
---|
1251 | mes "entertained. But...it"; |
---|
1252 | mes "seems you may not be satisfied with anything."; |
---|
1253 | next; |
---|
1254 | mes "[Elder Creek]"; |
---|
1255 | mes "It's all about the various tastes"; |
---|
1256 | mes "and interests people will have."; |
---|
1257 | mes "Things other people enjoy might not"; |
---|
1258 | mes "displease you. Also, if your"; |
---|
1259 | mes "mind is unwilling to be happy,"; |
---|
1260 | mes "you will not enjoy life."; |
---|
1261 | next; |
---|
1262 | mes "[Elder Creek]"; |
---|
1263 | mes "Here's an example of having"; |
---|
1264 | mes "the right frame of mind."; |
---|
1265 | mes "Let's say we're cleaning"; |
---|
1266 | mes "the street for the town,"; |
---|
1267 | mes "which can be hard, grueling work..."; |
---|
1268 | next; |
---|
1269 | mes "[Elder Creek]"; |
---|
1270 | mes "You're always covered in dust."; |
---|
1271 | mes "In the summer, your body is"; |
---|
1272 | mes "sticky with sweat..."; |
---|
1273 | mes "In the winter, you'll be"; |
---|
1274 | mes "be out in the freezing cold..."; |
---|
1275 | next; |
---|
1276 | mes "[Elder Creek]"; |
---|
1277 | mes "However, even so, it will be different to someone with a different perspective."; |
---|
1278 | next; |
---|
1279 | mes "[Elder Creek]"; |
---|
1280 | mes "Ideally, we should try"; |
---|
1281 | mes "to find joy in making"; |
---|
1282 | mes "other people happy."; |
---|
1283 | mes "By cleaning the street, we can"; |
---|
1284 | mes "give others a reason to smile."; |
---|
1285 | next; |
---|
1286 | mes "[Elder Creek]"; |
---|
1287 | mes "Tourists passing through the street"; |
---|
1288 | mes "can enjoy its cleanliness..."; |
---|
1289 | mes "Overall, it makes the entire community look good."; |
---|
1290 | next; |
---|
1291 | mes "[Elder Creek]"; |
---|
1292 | mes "If your parents see you cleaning"; |
---|
1293 | mes "the street, they will be proud of"; |
---|
1294 | mes "their child."; |
---|
1295 | mes "...But now, I think I'm beginning to make no sense."; |
---|
1296 | next; |
---|
1297 | mes "[Elder Creek]"; |
---|
1298 | mes "Oh well, I apologize."; |
---|
1299 | mes "Just try to think positively."; |
---|
1300 | mes "With the right attitude, eventually you will find something to enjoy."; |
---|
1301 | next; |
---|
1302 | mes "[Elder Creek]"; |
---|
1303 | mes "Haha~ I can see you're just"; |
---|
1304 | mes "clicking the 'next' button on these"; |
---|
1305 | mes "windows, because you're sick and tired of this NPC conversation."; |
---|
1306 | next; |
---|
1307 | mes "[Elder Creek]"; |
---|
1308 | mes "....anyway, that is all."; |
---|
1309 | mes "I hope you will be happy"; |
---|
1310 | mes "with my wise advice."; |
---|
1311 | close2; |
---|
1312 | set thai_head,14; |
---|
1313 | end; |
---|
1314 | case 4: |
---|
1315 | mes "[Elder Creek]"; |
---|
1316 | mes "That's an agonizing thought for every young person."; |
---|
1317 | mes "But you have a lot time to think about what you want to do in the future."; |
---|
1318 | next; |
---|
1319 | mes "[Elder Creek]"; |
---|
1320 | mes "Experience more in many different"; |
---|
1321 | mes "places, and read as many books"; |
---|
1322 | mes "as you can. Focus on broadening your perspective."; |
---|
1323 | next; |
---|
1324 | mes "[Elder Creek]"; |
---|
1325 | mes "Then, you will realize what you really want to do."; |
---|
1326 | mes "....that's all I can say."; |
---|
1327 | mes "I hope you will be happy with my wise advice."; |
---|
1328 | close2; |
---|
1329 | set thai_head,14; |
---|
1330 | end; |
---|
1331 | case 5: |
---|
1332 | mes "[Elder Creek]"; |
---|
1333 | mes "...."; |
---|
1334 | mes "I see, you chose the wrong answer in the first place."; |
---|
1335 | next; |
---|
1336 | mes "[Elder Creek]"; |
---|
1337 | mes "I believe this will be a lesson to be more honest with yourself."; |
---|
1338 | mes "Choose the right answer next time!"; |
---|
1339 | close; |
---|
1340 | case 6: |
---|
1341 | mes "[Elder Creek]"; |
---|
1342 | mes "You rascal!"; |
---|
1343 | next; |
---|
1344 | mes "[Elder Creek]"; |
---|
1345 | mes "Get out of my sight immediately! I don't talk to trash!"; |
---|
1346 | set thai_head,12; |
---|
1347 | close; |
---|
1348 | } |
---|
1349 | case 3: |
---|
1350 | mes "[Elder Creek]"; |
---|
1351 | mes "Yes, you need to see things to the end."; |
---|
1352 | close; |
---|
1353 | } |
---|
1354 | case 12: |
---|
1355 | if (rand(1,1000) == 792) { |
---|
1356 | mes "[Elder Creek]"; |
---|
1357 | mes "....*Sigh* Okay."; |
---|
1358 | mes "I forgive you."; |
---|
1359 | set thai_head,11; |
---|
1360 | close; |
---|
1361 | } |
---|
1362 | mes "[Elder Creek]"; |
---|
1363 | mes "I do not wish to continue this conversation with you."; |
---|
1364 | mes "Get out of my sight immediately!"; |
---|
1365 | close; |
---|
1366 | case 13: |
---|
1367 | mes "[Elder Creek]"; |
---|
1368 | mes "...I was just testing you"; |
---|
1369 | mes "in order to give you something"; |
---|
1370 | mes "special. I'm the only person in the world that can give you this..."; |
---|
1371 | next; |
---|
1372 | mes "[Elder Creek]"; |
---|
1373 | mes "I had to check if you are the right person as I initially thought."; |
---|
1374 | mes "....Hmm."; |
---|
1375 | next; |
---|
1376 | mes "[Elder Creek]"; |
---|
1377 | mes "But you don't expect me to give something special without any compensation, do you?"; |
---|
1378 | mes "Would you bring the items I want?"; |
---|
1379 | next; |
---|
1380 | mes "[Elder Creek]"; |
---|
1381 | mes "It's not a hard thing to do."; |
---|
1382 | mes "That is..."; |
---|
1383 | next; |
---|
1384 | mes "[Elder Creek]"; |
---|
1385 | mes "10 Brigan,"; |
---|
1386 | mes "15 Clam Shell,"; |
---|
1387 | mes "10 Crab Shell"; |
---|
1388 | mes "and 50 Cyfar."; |
---|
1389 | next; |
---|
1390 | mes "[Elder Creek]"; |
---|
1391 | mes "Well, I am collecting those as my hobby."; |
---|
1392 | next; |
---|
1393 | mes "[Elder Creek]"; |
---|
1394 | mes "I have no doubt that you will be able to gather them all."; |
---|
1395 | next; |
---|
1396 | mes "[Elder Creek]"; |
---|
1397 | mes "Do me this favor, young man."; |
---|
1398 | set thai_head,15; |
---|
1399 | close; |
---|
1400 | case 14: |
---|
1401 | if (rand(1,30) == 5) { |
---|
1402 | mes "[Elder Creek]"; |
---|
1403 | mes "....hmm. I see you want more."; |
---|
1404 | mes "Come back later."; |
---|
1405 | set thai_head,13; |
---|
1406 | close; |
---|
1407 | } |
---|
1408 | mes "[Elder Creek]"; |
---|
1409 | mes "Is there any business left between"; |
---|
1410 | mes "us? Tell me, young adventurer..."; |
---|
1411 | next; |
---|
1412 | mes "^3355FFYou feel there may be something you missed.^000000"; |
---|
1413 | close; |
---|
1414 | case 15: |
---|
1415 | if (countitem(7054) > 9 && countitem(965) > 14 && countitem(964) > 9 && countitem(7053) > 49) { |
---|
1416 | mes "[Elder Creek]"; |
---|
1417 | mes "I see you know how the world"; |
---|
1418 | mes "works. When you need something"; |
---|
1419 | mes "from someone, you must give"; |
---|
1420 | mes "in order to receive."; |
---|
1421 | mes "Thank you for your kindness."; |
---|
1422 | delitem 7054,10; //Brigan |
---|
1423 | delitem 965,15; //Clam_Shell |
---|
1424 | delitem 964,10; //Crap_Shell |
---|
1425 | delitem 7053,50; //Cyfar |
---|
1426 | next; |
---|
1427 | set thai_head,16; |
---|
1428 | getitem 603,1; //Old_Blue_Box |
---|
1429 | mes "[Elder Creek]"; |
---|
1430 | mes "Please, take this first."; |
---|
1431 | mes "If you would, please go talk to my"; |
---|
1432 | mes "grandson later. He seemed to witness something horrible a while ago..."; |
---|
1433 | next; |
---|
1434 | mes "[Elder Creek]"; |
---|
1435 | mes "I have no idea what he saw,"; |
---|
1436 | mes "because the shock took away"; |
---|
1437 | mes "his ability to speak."; |
---|
1438 | mes "When he recovers, I will tell you."; |
---|
1439 | next; |
---|
1440 | mes "[Elder Creek]"; |
---|
1441 | mes "In fact, the items I have asked"; |
---|
1442 | mes "for will be used to cure"; |
---|
1443 | mes "his condition. I don't"; |
---|
1444 | mes "really collect these as a"; |
---|
1445 | mes "hobby..."; |
---|
1446 | next; |
---|
1447 | mes "[Elder Creek]"; |
---|
1448 | mes "I am sorry to cause you"; |
---|
1449 | mes "much trouble for my own good."; |
---|
1450 | close; |
---|
1451 | } |
---|
1452 | mes "[Elder Creek]"; |
---|
1453 | mes "Remember, when you want something,"; |
---|
1454 | mes "especially when it's special, you"; |
---|
1455 | mes "should always offer something in exchange."; |
---|
1456 | next; |
---|
1457 | mes "[Elder Creek]"; |
---|
1458 | mes "I want..."; |
---|
1459 | next; |
---|
1460 | mes "[Elder Creek]"; |
---|
1461 | mes "10 Brigan,"; |
---|
1462 | mes "15 Clam Shell,"; |
---|
1463 | mes "10 Crab Shell and"; |
---|
1464 | mes "50 Cyfar."; |
---|
1465 | close; |
---|
1466 | } |
---|
1467 | } |
---|
1468 | else if (thai_head > 15) { |
---|
1469 | mes "[Elder Creek]"; |
---|
1470 | mes "Feel free to come back anytime..."; |
---|
1471 | mes "And if you need advice, I am more than willing to help you."; |
---|
1472 | next; |
---|
1473 | mes "[Elder Creek]"; |
---|
1474 | mes "Do you wish for me to give you advice, adventurer?"; |
---|
1475 | next; |
---|
1476 | if (select("Yes.:No.") == 1) { |
---|
1477 | mes "[Elder Creek]"; |
---|
1478 | mes "Now, tell me what bothers you at the moment."; |
---|
1479 | next; |
---|
1480 | switch(select("Boy/girlfriend issue.:Financial problem.:Bored to death.:Career issue.:Give me items, old man.")) { |
---|
1481 | case 1: |
---|
1482 | mes "[Elder Creek]"; |
---|
1483 | mes "I'm envious of you! Still, young"; |
---|
1484 | mes "folk like you are lucky to"; |
---|
1485 | mes "have such problems...sadly,"; |
---|
1486 | mes "no one but yourself can really"; |
---|
1487 | mes "help you in those kinds of"; |
---|
1488 | mes "situations..."; |
---|
1489 | next; |
---|
1490 | mes "[Elder Creek]"; |
---|
1491 | mes "However, the advice I can give you"; |
---|
1492 | mes "is this: Be honest with your"; |
---|
1493 | mes "beloved. One lie leads to"; |
---|
1494 | mes "another lie in no time."; |
---|
1495 | next; |
---|
1496 | mes "[Elder Creek]"; |
---|
1497 | mes "If you treat the person you love"; |
---|
1498 | mes "as special to you, that person"; |
---|
1499 | mes "will eventually come to"; |
---|
1500 | mes "understand your feelings..."; |
---|
1501 | next; |
---|
1502 | mes "[Elder Creek]"; |
---|
1503 | mes "And, remember this..."; |
---|
1504 | mes "Everyone has a different way of showing that they love someone."; |
---|
1505 | mes "So...don't be discouraged if your feelings aren't returned."; |
---|
1506 | next; |
---|
1507 | mes "[Elder Creek]"; |
---|
1508 | mes "But still, I believe being honest"; |
---|
1509 | mes "is the best way to gain your"; |
---|
1510 | mes "true love."; |
---|
1511 | next; |
---|
1512 | mes "[Elder Creek]"; |
---|
1513 | mes "....well, that is all I can tell"; |
---|
1514 | mes "you. I hope you will be happy"; |
---|
1515 | mes "with that nugget of wisdom."; |
---|
1516 | close; |
---|
1517 | case 2: |
---|
1518 | mes "[Elder Creek]"; |
---|
1519 | mes "...yes, everybody has their own"; |
---|
1520 | mes "financial problems. However, think of it in this way:"; |
---|
1521 | next; |
---|
1522 | mes "[Elder Creek]"; |
---|
1523 | mes "Money is important to make"; |
---|
1524 | mes "a living, but it's not what life is all about."; |
---|
1525 | next; |
---|
1526 | mes "[Elder Creek]"; |
---|
1527 | mes "Some may have the life goal of"; |
---|
1528 | mes "making fortunes, but I don't think it's the happiest way of living."; |
---|
1529 | next; |
---|
1530 | mes "[Elder Creek]"; |
---|
1531 | mes "As you see, there are powerful"; |
---|
1532 | mes "people in this world who can control our lives. But oftentimes..."; |
---|
1533 | next; |
---|
1534 | mes "[Elder Creek]"; |
---|
1535 | mes "They are too greedy to be in that"; |
---|
1536 | mes "position and they don't have"; |
---|
1537 | mes "their priorities straight."; |
---|
1538 | mes "Instead of improving the world, they use their power to only help themselves."; |
---|
1539 | next; |
---|
1540 | mes "[Elder Creek]"; |
---|
1541 | mes "If I were them, I wouldn't want to"; |
---|
1542 | mes "rule the world in that way."; |
---|
1543 | next; |
---|
1544 | mes "[Elder Creek]"; |
---|
1545 | mes "Don't you think we need somebody who can change this world??"; |
---|
1546 | next; |
---|
1547 | mes "[Elder Creek]"; |
---|
1548 | mes ".....I apologize for being short"; |
---|
1549 | mes "tempered. I just wanted to let"; |
---|
1550 | mes "you know that money is not everything. But, it is something you need to live."; |
---|
1551 | next; |
---|
1552 | mes "[Elder Creek]"; |
---|
1553 | mes "I'm aware that greedy people"; |
---|
1554 | mes "ridicule this belief, saying"; |
---|
1555 | mes "that it is a poor man's effort"; |
---|
1556 | mes "to protect his pride."; |
---|
1557 | next; |
---|
1558 | mes "[Elder Creek]"; |
---|
1559 | mes "But, I still believe I am right."; |
---|
1560 | mes "After all...I am a Sage."; |
---|
1561 | mes "I hope you will be happy with my wise advice."; |
---|
1562 | close; |
---|
1563 | case 3: |
---|
1564 | mes "[Elder Creek]"; |
---|
1565 | mes "Yes, we always need to be"; |
---|
1566 | mes "entertained. But...it seems"; |
---|
1567 | mes "you may not be satisfied"; |
---|
1568 | mes "with anything."; |
---|
1569 | next; |
---|
1570 | mes "[Elder Creek]"; |
---|
1571 | mes "It's all about the various tastes"; |
---|
1572 | mes "and interests people will have."; |
---|
1573 | mes "Things other people enjoy might"; |
---|
1574 | mes "displease you. Also, if your"; |
---|
1575 | mes "mind is unwilling to be happy,"; |
---|
1576 | mes "you will not enjoy life."; |
---|
1577 | next; |
---|
1578 | mes "[Elder Creek]"; |
---|
1579 | mes "Here's an example of having"; |
---|
1580 | mes "the right frame of mind."; |
---|
1581 | mes "Let's say we're cleaning"; |
---|
1582 | mes "the street for the town,"; |
---|
1583 | mes "which can be hard, grueling work..."; |
---|
1584 | next; |
---|
1585 | mes "[Elder Creek]"; |
---|
1586 | mes "You're always covered in dust."; |
---|
1587 | mes "In the summer, your body is"; |
---|
1588 | mes "sticky with sweat..."; |
---|
1589 | mes "In the winter, you'll be"; |
---|
1590 | mes "be out in the freezing cold..."; |
---|
1591 | next; |
---|
1592 | mes "[Elder Creek]"; |
---|
1593 | mes "However, even so, it will be different to someone with a different perspective."; |
---|
1594 | next; |
---|
1595 | mes "[Elder Creek]"; |
---|
1596 | mes "Ideally, we should try"; |
---|
1597 | mes "to find joy in making"; |
---|
1598 | mes "other people happy."; |
---|
1599 | mes "By cleaning the street, we can"; |
---|
1600 | mes "give others a reason to smile."; |
---|
1601 | next; |
---|
1602 | mes "[Elder Creek]"; |
---|
1603 | mes "Tourists passing through the"; |
---|
1604 | mes "street can enjoy its"; |
---|
1605 | mes "cleanliness..."; |
---|
1606 | mes "Overall, it makes the entire community look good."; |
---|
1607 | next; |
---|
1608 | mes "[Elder Creek]"; |
---|
1609 | mes "If your parents see you cleaning"; |
---|
1610 | mes "the street, they will be proud of"; |
---|
1611 | mes "their child."; |
---|
1612 | mes "...But now, I think I'm beginning to make no sense."; |
---|
1613 | next; |
---|
1614 | mes "[Elder Creek]"; |
---|
1615 | mes "Oh well, I apologize."; |
---|
1616 | mes "Just try to think positively."; |
---|
1617 | mes "With the right attitude, eventually you will find something to enjoy."; |
---|
1618 | next; |
---|
1619 | mes "[Elder Creek]"; |
---|
1620 | mes "Haha~ I can see you're just"; |
---|
1621 | mes "clicking the 'next' button on"; |
---|
1622 | mes "these windows, because you're sick and tired of this NPC conversation."; |
---|
1623 | next; |
---|
1624 | mes "[Elder Creek]"; |
---|
1625 | mes "....anyway, that is all."; |
---|
1626 | mes "I hope you will be happy"; |
---|
1627 | mes "with my wise advice."; |
---|
1628 | close; |
---|
1629 | case 4: |
---|
1630 | mes "[Elder Creek]"; |
---|
1631 | mes "That's an agonizing thought for every young person."; |
---|
1632 | mes "But you have a lot time to think about what you want to do in the future."; |
---|
1633 | next; |
---|
1634 | mes "[Elder Creek]"; |
---|
1635 | mes "Experience more in many different"; |
---|
1636 | mes "places, and read as many books"; |
---|
1637 | mes "as you can. Focus on broadening your perspective."; |
---|
1638 | next; |
---|
1639 | mes "[Elder Creek]"; |
---|
1640 | mes "Then, you will realize what you really want to do."; |
---|
1641 | mes "....that's all I can say."; |
---|
1642 | mes "I hope you will be happy with my wise advice."; |
---|
1643 | close; |
---|
1644 | case 5: |
---|
1645 | mes "[Elder Creek]"; |
---|
1646 | mes "You rascal!"; |
---|
1647 | next; |
---|
1648 | mes "[Elder Creek]"; |
---|
1649 | mes "Get out of my sight immediately! I don't talk to trash!"; |
---|
1650 | close2; |
---|
1651 | warp "comodo",196,255; |
---|
1652 | end; |
---|
1653 | } |
---|
1654 | } |
---|
1655 | mes "[Elder Creek]"; |
---|
1656 | mes "I hope you will enjoy your life. Remember, time flies and you live only once."; |
---|
1657 | close; |
---|
1658 | } |
---|
1659 | else { |
---|
1660 | mes "[Elder Creek]"; |
---|
1661 | mes "I have been helping people by giving them advice to improve their lives."; |
---|
1662 | next; |
---|
1663 | mes "[Elder Creek]"; |
---|
1664 | mes "Since you need my help as well, I shall endeavor to impart some wisdom."; |
---|
1665 | next; |
---|
1666 | mes "[Elder Creek]"; |
---|
1667 | mes "Now tell me, what bothers you right now?"; |
---|
1668 | next; |
---|
1669 | switch(select("Boy/girlfriend issue.:Financial problem.:Bored to death.:Career issue.:Give me items, old man.")) { |
---|
1670 | case 1: |
---|
1671 | mes "[Elder Creek]"; |
---|
1672 | mes "I'm envious of you! Still, young"; |
---|
1673 | mes "folk like you are lucky to"; |
---|
1674 | mes "have such problems...sadly,"; |
---|
1675 | mes "no one but yourself can really"; |
---|
1676 | mes "help you in those kinds of"; |
---|
1677 | mes "situations..."; |
---|
1678 | next; |
---|
1679 | mes "[Elder Creek]"; |
---|
1680 | mes "However, the advice I can give you"; |
---|
1681 | mes "is this: Be honest with your"; |
---|
1682 | mes "beloved. One lie leads to"; |
---|
1683 | mes "another lie in no time."; |
---|
1684 | next; |
---|
1685 | mes "[Elder Creek]"; |
---|
1686 | mes "If you treat the person you love"; |
---|
1687 | mes "as special to you, that person"; |
---|
1688 | mes "will eventually come to"; |
---|
1689 | mes "understand your feelings..."; |
---|
1690 | next; |
---|
1691 | mes "[Elder Creek]"; |
---|
1692 | mes "And, remember this..."; |
---|
1693 | mes "Everyone has a different way of showing that they love someone."; |
---|
1694 | mes "So...don't be discouraged if your feelings aren't returned."; |
---|
1695 | next; |
---|
1696 | mes "[Elder Creek]"; |
---|
1697 | mes "But still, I believe being honest"; |
---|
1698 | mes "is the best way to gain your"; |
---|
1699 | mes "true love."; |
---|
1700 | next; |
---|
1701 | mes "[Elder Creek]"; |
---|
1702 | mes "....well, that is all I can tell"; |
---|
1703 | mes "you. I hope you will be happy"; |
---|
1704 | mes "with that nugget of wisdom."; |
---|
1705 | close; |
---|
1706 | case 2: |
---|
1707 | mes "[Elder Creek]"; |
---|
1708 | mes "...yes, everybody has their own"; |
---|
1709 | mes "financial problems. However, think of it in this way:"; |
---|
1710 | next; |
---|
1711 | mes "[Elder Creek]"; |
---|
1712 | mes "Money is important to make"; |
---|
1713 | mes "a living, but it's not what life is all about."; |
---|
1714 | next; |
---|
1715 | mes "[Elder Creek]"; |
---|
1716 | mes "Some may have the life goal of"; |
---|
1717 | mes "making fortunes, but I don't think it's the happiest way of living."; |
---|
1718 | next; |
---|
1719 | mes "[Elder Creek]"; |
---|
1720 | mes "As you see, there are powerful"; |
---|
1721 | mes "people in this world who can control our lives. But oftentimes..."; |
---|
1722 | next; |
---|
1723 | mes "[Elder Creek]"; |
---|
1724 | mes "They are too greedy to be in that"; |
---|
1725 | mes "position and they don't have"; |
---|
1726 | mes "their priorities straight."; |
---|
1727 | mes "Instead of improving the world, they use their power to only help themselves."; |
---|
1728 | next; |
---|
1729 | mes "[Elder Creek]"; |
---|
1730 | mes "If I were them, I wouldn't want to"; |
---|
1731 | mes "rule the world in that way."; |
---|
1732 | next; |
---|
1733 | mes "[Elder Creek]"; |
---|
1734 | mes "Don't you think we need somebody who can change this world??"; |
---|
1735 | next; |
---|
1736 | mes "[Elder Creek]"; |
---|
1737 | mes ".....I apologize for being short"; |
---|
1738 | mes "tempered. I just wanted to let"; |
---|
1739 | mes "you know that money is not everything. But, it is something you need to live."; |
---|
1740 | next; |
---|
1741 | mes "[Elder Creek]"; |
---|
1742 | mes "I'm aware that greedy people"; |
---|
1743 | mes "ridicule this belief, saying"; |
---|
1744 | mes "that it is a poor man's effort"; |
---|
1745 | mes "to protect his pride."; |
---|
1746 | next; |
---|
1747 | mes "[Elder Creek]"; |
---|
1748 | mes "But, I still believe I am right."; |
---|
1749 | mes "After all...I am a Sage."; |
---|
1750 | mes "I hope you will be happy with my wise advice."; |
---|
1751 | close; |
---|
1752 | case 3: |
---|
1753 | mes "[Elder Creek]"; |
---|
1754 | mes "Yes, we always need to be"; |
---|
1755 | mes "entertained. But...it seems"; |
---|
1756 | mes "you may not be satisfied"; |
---|
1757 | mes "with anything."; |
---|
1758 | next; |
---|
1759 | mes "[Elder Creek]"; |
---|
1760 | mes "It's all about the various tastes"; |
---|
1761 | mes "and interests people will have."; |
---|
1762 | mes "Things other people enjoy might"; |
---|
1763 | mes "displease you. Also, if your"; |
---|
1764 | mes "mind is unwilling to be happy,"; |
---|
1765 | mes "you will not enjoy life."; |
---|
1766 | next; |
---|
1767 | mes "[Elder Creek]"; |
---|
1768 | mes "Here's an example of having"; |
---|
1769 | mes "the right frame of mind."; |
---|
1770 | mes "Let's say we're cleaning"; |
---|
1771 | mes "the street for the town,"; |
---|
1772 | mes "which can be hard, grueling work..."; |
---|
1773 | next; |
---|
1774 | mes "[Elder Creek]"; |
---|
1775 | mes "You're always covered in dust."; |
---|
1776 | mes "In the summer, your body is"; |
---|
1777 | mes "sticky with sweat..."; |
---|
1778 | mes "In the winter, you'll be"; |
---|
1779 | mes "be out in the freezing cold..."; |
---|
1780 | next; |
---|
1781 | mes "[Elder Creek]"; |
---|
1782 | mes "However, even so, it will be different to someone with a different perspective."; |
---|
1783 | next; |
---|
1784 | mes "[Elder Creek]"; |
---|
1785 | mes "Ideally, we should try"; |
---|
1786 | mes "to find joy in making"; |
---|
1787 | mes "other people happy."; |
---|
1788 | mes "By cleaning the street, we can"; |
---|
1789 | mes "give others a reason to smile."; |
---|
1790 | next; |
---|
1791 | mes "[Elder Creek]"; |
---|
1792 | mes "Tourists passing through the"; |
---|
1793 | mes "street can enjoy its"; |
---|
1794 | mes "cleanliness..."; |
---|
1795 | mes "Overall, it makes the entire community look good."; |
---|
1796 | next; |
---|
1797 | mes "[Elder Creek]"; |
---|
1798 | mes "If your parents see you cleaning"; |
---|
1799 | mes "the street, they will be proud of"; |
---|
1800 | mes "their child."; |
---|
1801 | mes "...But now, I think I'm beginning to make no sense."; |
---|
1802 | next; |
---|
1803 | mes "[Elder Creek]"; |
---|
1804 | mes "Oh well, I apologize."; |
---|
1805 | mes "Just try to think positively."; |
---|
1806 | mes "With the right attitude, eventually you will find something to enjoy."; |
---|
1807 | next; |
---|
1808 | mes "[Elder Creek]"; |
---|
1809 | mes "Haha~ I can see you're just"; |
---|
1810 | mes "clicking the 'next' button on"; |
---|
1811 | mes "these windows, because you're sick and tired of this NPC conversation."; |
---|
1812 | next; |
---|
1813 | mes "[Elder Creek]"; |
---|
1814 | mes "....anyway, that is all."; |
---|
1815 | mes "I hope you will be happy"; |
---|
1816 | mes "with my wise advice."; |
---|
1817 | close; |
---|
1818 | case 4: |
---|
1819 | mes "[Elder Creek]"; |
---|
1820 | mes "That's an agonizing thought for every young person."; |
---|
1821 | mes "But you have a lot time to think about what you want to do in the future."; |
---|
1822 | next; |
---|
1823 | mes "[Elder Creek]"; |
---|
1824 | mes "Experience more in many different"; |
---|
1825 | mes "places, and read as many books"; |
---|
1826 | mes "as you can. Focus on broadening your perspective."; |
---|
1827 | next; |
---|
1828 | mes "[Elder Creek]"; |
---|
1829 | mes "Then, you will realize what you really want to do."; |
---|
1830 | mes "....that's all I can say."; |
---|
1831 | mes "I hope you will be happy with my wise advice."; |
---|
1832 | close; |
---|
1833 | case 5: |
---|
1834 | mes "[Elder Creek]"; |
---|
1835 | mes "You rascal!"; |
---|
1836 | next; |
---|
1837 | mes "[Elder Creek]"; |
---|
1838 | mes "Get out of my sight immediately! I don't talk to trash!"; |
---|
1839 | close2; |
---|
1840 | warp "comodo",196,255; |
---|
1841 | end; |
---|
1842 | } |
---|
1843 | } |
---|
1844 | } |
---|
1845 | |
---|
1846 | morocc,230,148,0 script Tommy#thai 716,{ |
---|
1847 | if (thai_head == 6 && thai_head == 11) { |
---|
1848 | switch(thai_head) { |
---|
1849 | case 6: |
---|
1850 | mes "[Tommy]"; |
---|
1851 | mes "Wahhhhhh~~~!!"; |
---|
1852 | mes "Daddy~~ let me have a Munak~~~!"; |
---|
1853 | mes "Waaaahhhh...."; |
---|
1854 | next; |
---|
1855 | mes "[Tommy]"; |
---|
1856 | mes "I want my Munak~~!!"; |
---|
1857 | mes "Other people have one, why can't I have one too?!"; |
---|
1858 | next; |
---|
1859 | mes "[Tommy]"; |
---|
1860 | mes "Munak Munak Munak Munak~~~"; |
---|
1861 | next; |
---|
1862 | mes "[Jacob]"; |
---|
1863 | mes "Umm..Tommy..."; |
---|
1864 | next; |
---|
1865 | mes "[Tommy]"; |
---|
1866 | mes "Munak Munak Munak Munak~~~"; |
---|
1867 | next; |
---|
1868 | mes "[Jacob]"; |
---|
1869 | mes "Tommy, your daddy is kind of busy now..."; |
---|
1870 | next; |
---|
1871 | mes "[Tommy]"; |
---|
1872 | mes "Munak Munak Munak Munak!"; |
---|
1873 | next; |
---|
1874 | mes "[Jacob]"; |
---|
1875 | mes "Sigh...alright, alright..."; |
---|
1876 | close; |
---|
1877 | case 7: |
---|
1878 | mes "[Tommy]"; |
---|
1879 | mes "*cries*...I want Munak!....*cries*"; |
---|
1880 | mes "My friends all have Munak, and I don't have it..."; |
---|
1881 | mes "Waaaahhhhh~~"; |
---|
1882 | close; |
---|
1883 | case 8: |
---|
1884 | mes "[Tommy]"; |
---|
1885 | mes "Daddy, I hate you!!"; |
---|
1886 | mes "I hate all of you!!!"; |
---|
1887 | next; |
---|
1888 | mes "[Tommy]"; |
---|
1889 | mes "Waaaahhh~~~!"; |
---|
1890 | mes "I don't care what anybody's telling"; |
---|
1891 | mes "me! I'll be bad because I hate everyone!"; |
---|
1892 | close; |
---|
1893 | case 9: |
---|
1894 | mes "[Tommy]"; |
---|
1895 | mes "Heh~!"; |
---|
1896 | mes "I'm so happy~"; |
---|
1897 | mes "We're gonna get a Munak~!"; |
---|
1898 | mes "Heh heh heh~!"; |
---|
1899 | close; |
---|
1900 | case 10: |
---|
1901 | mes "[Tommy]"; |
---|
1902 | mes "Heh~!"; |
---|
1903 | mes "I am so happy~"; |
---|
1904 | mes "We're gonna get a Munak~!"; |
---|
1905 | mes "Heh heh heh~!"; |
---|
1906 | close; |
---|
1907 | case 11: |
---|
1908 | mes "[Tommy]"; |
---|
1909 | mes "Heh~!"; |
---|
1910 | mes "I like you~ "; |
---|
1911 | mes "Cuz now we're gonna"; |
---|
1912 | mes "get a Munak~"; |
---|
1913 | mes "So happy! *smiles*"; |
---|
1914 | close; |
---|
1915 | } |
---|
1916 | } |
---|
1917 | else if (thai_head > 11) { |
---|
1918 | mes "[Tommy]"; |
---|
1919 | mes "Daddy...I won't ask you for something that's too hard for you."; |
---|
1920 | next; |
---|
1921 | mes "[Tommy]"; |
---|
1922 | mes "I saw you're huffing and puffing when we went to catch a Munak."; |
---|
1923 | mes "I'm so sorry that I gave you a hard time, daddy..."; |
---|
1924 | next; |
---|
1925 | mes "[Tommy]"; |
---|
1926 | mes "I will be good from now on."; |
---|
1927 | mes "I will be nice to my Daddy, to you and to anyone."; |
---|
1928 | next; |
---|
1929 | mes "[Tommy]"; |
---|
1930 | mes "My dad told me that I will be a good kid if I don't behave bad sometimes."; |
---|
1931 | close; |
---|
1932 | } |
---|
1933 | else { |
---|
1934 | mes "[Tommy]"; |
---|
1935 | mes "I hate to see my daddy resting in his room all day in the weekends."; |
---|
1936 | mes "But I am so happy today because my daddy and I will take a walk together!!"; |
---|
1937 | close; |
---|
1938 | } |
---|
1939 | } |
---|
1940 | |
---|
1941 | //============================================================ |
---|
1942 | // Old changelog |
---|
1943 | //============================================================ |
---|
1944 | //= Official OBB Quest. You can pass it any times you want. |
---|
1945 | //= 1.6 Updated, fixed, optimized and translated into English [Lupus] |
---|
1946 | //= 1.6a Halved the required items to make an obb, thanks to marquis007 [MasterOfMuppets] |
---|
1947 | //============================================================ |
---|