1 | //===== eAthena Script ======================================= |
---|
2 | //= Star Gladiator Job Quest |
---|
3 | //===== By: ================================================== |
---|
4 | //= Celestria, Samuray22 |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.2 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena SVN |
---|
9 | //===== Description: ========================================= |
---|
10 | //= [Aegis Conversion] |
---|
11 | //= Job Change quest for Star Gladiator class. |
---|
12 | //===== Additional Comments: ================================= |
---|
13 | //= 1.1 Updated to the Aegis Standards. [Samuray22] |
---|
14 | //= 1.1a Corrected a minor error respect to the header. [Samuray22] |
---|
15 | //= 1.1b Corrected NPC name length warning. [L0ne_W0lf] |
---|
16 | //= 1.1c Changed item names to item IDs. [Samuray22] |
---|
17 | //= 1.2 Another round of updates to the script. [L0ne_W0lf] |
---|
18 | //= Removes the use of labels, and correcets other errors. |
---|
19 | //============================================================ |
---|
20 | |
---|
21 | payon,215,102,3 script Moohyun#job_star 828,3,3,{ |
---|
22 | if (Class == Job_Taekwon) { |
---|
23 | if (STGL_Q == 0) { |
---|
24 | mes "[Moohyun]"; |
---|
25 | if (Sex) |
---|
26 | mes "Hey, Taekwon Boy!"; |
---|
27 | else |
---|
28 | mes "Hey, Taekwon Girl!"; |
---|
29 | mes "Come here for a minute."; |
---|
30 | mes "I've got a proposition"; |
---|
31 | mes "for you if you'll listen!"; |
---|
32 | next; |
---|
33 | if (select( "Sure.","No, thanks!") == 1) { |
---|
34 | mes "[Moohyun]"; |
---|
35 | mes "Alright, kid."; |
---|
36 | mes "What's your name?"; |
---|
37 | next; |
---|
38 | mes "[" + strcharinfo(0) + "]"; |
---|
39 | mes "" + strcharinfo(0) + "."; |
---|
40 | next; |
---|
41 | mes "[Moohyun]"; |
---|
42 | mes "Geez, you're so direct."; |
---|
43 | mes "A little warmth, a little"; |
---|
44 | mes "friendliness wouldn't kill"; |
---|
45 | mes "you, now would it? Anyway,"; |
---|
46 | mes "have you given any thought"; |
---|
47 | mes "as to what you want to be?"; |
---|
48 | next; |
---|
49 | mes "[Moohyun]"; |
---|
50 | mes "If your heart isn't already"; |
---|
51 | mes "set on it, why don't you become"; |
---|
52 | mes "a ^4D4DFFwarrior of the Sun, the Moon,^FFFFFF ^4D4DFF and the Stars^000000? Just consider it."; |
---|
53 | next; |
---|
54 | mes "[" + strcharinfo(0) + "]"; |
---|
55 | mes "Warrior of the wha--?"; |
---|
56 | mes "I've never heard of that"; |
---|
57 | mes "job. But I do know I can"; |
---|
58 | mes "change jobs to a Soul"; |
---|
59 | mes "Linker or Taekwon Master."; |
---|
60 | next; |
---|
61 | mes "[Moohyun]"; |
---|
62 | mes "Yeah. Yeah, that's right."; |
---|
63 | mes "Taekwon Masters are warriors"; |
---|
64 | mes "of the Sun, Moon, and Stars, and wield the power of the cosmos!"; |
---|
65 | mes "Cool, huh? Anyway, interested"; |
---|
66 | mes "in being a Taekwon Master?"; |
---|
67 | next; |
---|
68 | if (select("Yes, I am!:No, not so much.") == 1) { |
---|
69 | if (JobLevel > 39) { |
---|
70 | mes "[Moohyun]"; |
---|
71 | mes "Great, great~ I knew you'd"; |
---|
72 | mes "see things my way. Alright,"; |
---|
73 | mes "you seem to be ready enough."; |
---|
74 | mes "All you need now is someone"; |
---|
75 | mes "who can train you to become"; |
---|
76 | mes "a Taekwon Master."; |
---|
77 | next; |
---|
78 | mes "[Moohyun]"; |
---|
79 | mes "Would you like to ^4D4dffchange"; |
---|
80 | mes "your job to Taekwon Master^000000?"; |
---|
81 | mes "If you do, I'll introduce you to somebody who can help"; |
---|
82 | mes "you accomplish that goal."; |
---|
83 | next; |
---|
84 | if (select("Yes, I do.","Let me think about it...") == 1) { |
---|
85 | mes "[Moohyun]"; |
---|
86 | mes "Excellent! Now, as you may"; |
---|
87 | mes "have guessed, Taekwon Masters"; |
---|
88 | mes "aren't organized into an official guild. So it's tough for all of us"; |
---|
89 | mes "to gather, but we also have fewer rules and greater freedom."; |
---|
90 | next; |
---|
91 | mes "[Moohyun]"; |
---|
92 | mes "Who's around now...? Umm..."; |
---|
93 | mes "Ah, you should visit ^4D4DFFMoogang^000000."; |
---|
94 | mes "He's one of the few Taekwon"; |
---|
95 | mes "Masters interested in receiving"; |
---|
96 | mes "new students, so he'll be sure"; |
---|
97 | mes "to guide you in your training."; |
---|
98 | next; |
---|
99 | mes "[Moohyun]"; |
---|
100 | mes "Alright, you can find Moogang"; |
---|
101 | mes "in Comodo, supposedly at the"; |
---|
102 | mes "place that's closest to the sky.^FFFFFF ^000000 In the meantime, I'll write a"; |
---|
103 | mes "letter of recommendation that"; |
---|
104 | mes "I'll send to him for you."; |
---|
105 | set STGL_Q,1; |
---|
106 | close; |
---|
107 | } |
---|
108 | mes "[Moohyun]"; |
---|
109 | mes "That's fine. Changing your"; |
---|
110 | mes "job is an important decision,"; |
---|
111 | mes "so you should consider everything carefully. But let me assure you"; |
---|
112 | mes "that you'll never regret becoming an awesome warrior of the cosmos!"; |
---|
113 | close; |
---|
114 | } |
---|
115 | mes "[Moohyun]"; |
---|
116 | mes "Great, great~"; |
---|
117 | mes "But first,you"; |
---|
118 | mes "gotta be at least Job Level 40"; |
---|
119 | mes "before you can begin Taekwon"; |
---|
120 | mes "Master training. Otherwise, "; |
---|
121 | mes "it'll go over your head."; |
---|
122 | next; |
---|
123 | mes "[Moohyun]"; |
---|
124 | mes "I know you can do it,"; |
---|
125 | mes "and it shouldn't take"; |
---|
126 | mes "too long. Promise me"; |
---|
127 | mes "you'll come back so that"; |
---|
128 | mes "I can help you become"; |
---|
129 | mes "a great Taekwon Master~"; |
---|
130 | close; |
---|
131 | } |
---|
132 | mes "[Moohyun]"; |
---|
133 | mes "Really? Well, I still"; |
---|
134 | mes "think you're better suited"; |
---|
135 | mes "to being a Taekwon Master"; |
---|
136 | mes "than a Soul Linker. But the"; |
---|
137 | mes "decision is ultimately yours."; |
---|
138 | next; |
---|
139 | mes "[Moohyun]"; |
---|
140 | mes "Well, if you change your"; |
---|
141 | mes "mind, just come back to"; |
---|
142 | mes "me and let me know. I know"; |
---|
143 | mes "you'd make a great Taekwon"; |
---|
144 | mes "Master if you really tried."; |
---|
145 | close; |
---|
146 | } |
---|
147 | mes "[Moohyun]"; |
---|
148 | mes "Aw, don't be like that."; |
---|
149 | mes "It doesn't cost you a zeny"; |
---|
150 | mes "to listen to my spiel. Come"; |
---|
151 | mes "on, just hear me out..."; |
---|
152 | close; |
---|
153 | } |
---|
154 | else if (STGL_Q == 1) { |
---|
155 | mes "[Moohyun]"; |
---|
156 | mes "I've already sent him my"; |
---|
157 | mes "letter of recommendation"; |
---|
158 | mes "for you, so go ahead and"; |
---|
159 | mes "visit Moogang in Comodo."; |
---|
160 | mes "He'll start training you to"; |
---|
161 | mes "become a Taekwon Master."; |
---|
162 | close; |
---|
163 | } |
---|
164 | else if (STGL_Q == 7) { |
---|
165 | mes "[Moohyun]"; |
---|
166 | mes "So how's the testing"; |
---|
167 | mes "coming along? Oh hey, you"; |
---|
168 | mes "look worried. Are you in"; |
---|
169 | mes "some kind of trouble?"; |
---|
170 | next; |
---|
171 | if (select("No, I'm fine.:About Beeryu's riddle...") == 1) { |
---|
172 | mes "[Moohyun]"; |
---|
173 | mes "It's alright to be independent"; |
---|
174 | mes "and solve problems on your"; |
---|
175 | mes "own, but you should elicit help"; |
---|
176 | mes "when you really need it. There"; |
---|
177 | mes "is no shame in being unable to"; |
---|
178 | mes "accomplish something alone..."; |
---|
179 | close; |
---|
180 | } |
---|
181 | mes "[Moohyun]"; |
---|
182 | mes "Ah, that. Beeryu has"; |
---|
183 | mes "given you that riddle"; |
---|
184 | mes "to solve. Well, first of"; |
---|
185 | mes "all, you have to bring him"; |
---|
186 | mes "something very important,"; |
---|
187 | mes "but it isn't a material object."; |
---|
188 | next; |
---|
189 | mes "[Moohyun]"; |
---|
190 | mes "You have to demonstrate"; |
---|
191 | mes "something for him. Now tell"; |
---|
192 | mes "me, when you face difficulty in"; |
---|
193 | mes "life, obstacles to your goals,"; |
---|
194 | mes "how do you respond? What"; |
---|
195 | mes "does your heart feel, man?"; |
---|
196 | next; |
---|
197 | mes "[Moohyun]"; |
---|
198 | mes "I know that Beeryu asked you"; |
---|
199 | mes "to prove your patience to him,"; |
---|
200 | mes "but this is the most important"; |
---|
201 | mes "factor behind patience. What"; |
---|
202 | mes "do you say to yourself when"; |
---|
203 | mes "your life seems hopeless?"; |
---|
204 | next; |
---|
205 | if (select("I will not give up!:I... I don't know?") == 1) { |
---|
206 | mes "[" + strcharinfo(0) + "]"; |
---|
207 | mes "I will not give up!"; |
---|
208 | mes "I'll make my dreams"; |
---|
209 | mes "come true, no matter"; |
---|
210 | mes "how long it may take!"; |
---|
211 | next; |
---|
212 | mes "[Moohyun]"; |
---|
213 | mes "Yes, that's it!"; |
---|
214 | mes "When your resolution"; |
---|
215 | mes "is backed by an iron will,"; |
---|
216 | mes "you will have the patience"; |
---|
217 | mes "to weather out all things."; |
---|
218 | mes "Show Beeryu your resolve..."; |
---|
219 | next; |
---|
220 | mes "[Moohyun]"; |
---|
221 | mes "Great, I think you're"; |
---|
222 | mes "ready now. Please go"; |
---|
223 | mes "talk to Moogang and head"; |
---|
224 | mes "back to the Moon Room. Soon,"; |
---|
225 | mes "maybe we'll be able to greet"; |
---|
226 | mes "each other as Taekwon Masters!"; |
---|
227 | set STGL_Q,8; |
---|
228 | close; |
---|
229 | } |
---|
230 | mes "[Moohyun]"; |
---|
231 | mes "You... You don't know?"; |
---|
232 | mes "If you'd face obstacles"; |
---|
233 | mes "head on and directly confront"; |
---|
234 | mes "your fears, your enemies, and"; |
---|
235 | mes "all of life's challenges, then the answer should come naturally."; |
---|
236 | next; |
---|
237 | mes "[Moohyun]"; |
---|
238 | mes "Hmm..."; |
---|
239 | mes "Why don't you contemplate"; |
---|
240 | mes "the value of courage for"; |
---|
241 | mes "a little while? Yes, that"; |
---|
242 | mes "might be useful for now."; |
---|
243 | close; |
---|
244 | } |
---|
245 | else if (STGL_Q == 8) { |
---|
246 | mes "[Moohyun]"; |
---|
247 | mes "Great, I think you're"; |
---|
248 | mes "ready now. Please go"; |
---|
249 | mes "talk to Moogang and head"; |
---|
250 | mes "back to the Moon Room. Soon,"; |
---|
251 | mes "maybe we'll be able to greet"; |
---|
252 | mes "each other as Taekwon Masters!"; |
---|
253 | close; |
---|
254 | } |
---|
255 | mes "[Moohyun]"; |
---|
256 | mes "So, how have you"; |
---|
257 | mes "been doing? I got"; |
---|
258 | mes "faith that you'll become"; |
---|
259 | mes "a great Taekwon Master, so"; |
---|
260 | mes "I'm expecting great things."; |
---|
261 | close; |
---|
262 | } |
---|
263 | else if (BaseJob == Job_Star_Gladiator) { |
---|
264 | mes "[Moohyun]"; |
---|
265 | mes "Hey, how have you"; |
---|
266 | mes "been doing? Attuned"; |
---|
267 | mes "with nature and all"; |
---|
268 | mes "that, I see. Heh heh,"; |
---|
269 | mes "isn't the cosmos such"; |
---|
270 | mes "a wonderful thing?"; |
---|
271 | close; |
---|
272 | } |
---|
273 | else if (Class== Job_Novice) { |
---|
274 | mes "[Moohyun]"; |
---|
275 | mes "Hey, kid. Do you want"; |
---|
276 | mes "to learn Taekwon Do?"; |
---|
277 | mes "If you learn it, then you're"; |
---|
278 | mes "guaranteed to become"; |
---|
279 | mes "much stronger! "; |
---|
280 | next; |
---|
281 | mes "[Moohyun]"; |
---|
282 | mes "Let's see..."; |
---|
283 | mes "There's a man named"; |
---|
284 | mes "Phoenix who can teach"; |
---|
285 | mes "you Taekwon Do. He's"; |
---|
286 | mes "around here somewhere..."; |
---|
287 | next; |
---|
288 | mes "[Moohyun]"; |
---|
289 | mes "Anyway, once you've"; |
---|
290 | mes "learned Taekwon Do for"; |
---|
291 | mes "a while, go ahead and come"; |
---|
292 | mes "back to me if you really want to advance your studies, to master"; |
---|
293 | mes "more than your mind and body."; |
---|
294 | close; |
---|
295 | } |
---|
296 | mes "[Moohyun]"; |
---|
297 | mes "Dude..."; |
---|
298 | mes "Whaddya want?"; |
---|
299 | if (Sex) { |
---|
300 | mes "You wanna join up"; |
---|
301 | mes "with my martial arts"; |
---|
302 | mes "school? It's too late"; |
---|
303 | mes "for you, sorry pal~"; |
---|
304 | } |
---|
305 | else { |
---|
306 | mes "Oh, I didn't realize tha--"; |
---|
307 | mes "Y-you're such a beautiful"; |
---|
308 | mes "lady! I guess I oughta, you"; |
---|
309 | mes "know, apologize for bein' rude."; |
---|
310 | } |
---|
311 | next; |
---|
312 | mes "[Moohyun]"; |
---|
313 | mes "Anyway, if you think I'm"; |
---|
314 | mes "just some punk, I'll admit"; |
---|
315 | mes "that I look and act the part."; |
---|
316 | mes "But actually, I'm a warrior of"; |
---|
317 | mes "the Sun, Moon, and Stars."; |
---|
318 | next; |
---|
319 | mes "[Moohyun]"; |
---|
320 | mes "It might be a little late"; |
---|
321 | mes "for you, but if you know "; |
---|
322 | mes "anybody that wants to become"; |
---|
323 | mes "a Taekwon Master, send them"; |
---|
324 | mes "my way. I'll make sure that"; |
---|
325 | mes "they meet the right people~"; |
---|
326 | close; |
---|
327 | |
---|
328 | OnTouch: |
---|
329 | if (Class == Job_Taekwon) { |
---|
330 | if (STGL_Q == 0) { |
---|
331 | mes "[Moohyun]"; |
---|
332 | mes "Hm...? Oh, you're just"; |
---|
333 | mes "the kind of person I'm"; |
---|
334 | mes "looking for. Come, I've"; |
---|
335 | mes "got an offer for you if"; |
---|
336 | mes "you're willing to listen..."; |
---|
337 | close; |
---|
338 | } |
---|
339 | } |
---|
340 | else if (BaseJob == Job_Star_Gladiator) { |
---|
341 | mes "[Moohyun]"; |
---|
342 | mes "How's it going, warrior?"; |
---|
343 | mes "Please continue to use"; |
---|
344 | mes "your skills for the right"; |
---|
345 | mes "causes. Bring pride to all"; |
---|
346 | mes "Taekwon Masters everywhere!"; |
---|
347 | close; |
---|
348 | } |
---|
349 | mes "[Moohyun]"; |
---|
350 | mes "Whoa, whoa~"; |
---|
351 | mes "Step aside, will you?"; |
---|
352 | mes "You're blocking my sun!"; |
---|
353 | close; |
---|
354 | } |
---|
355 | |
---|
356 | comodo,172,230,3 script Wandering Master#job_sta 730,{ |
---|
357 | if (Class == Job_Taekwon) { |
---|
358 | if (STGL_Q == 1) { |
---|
359 | mes "[Moogang]"; |
---|
360 | mes ""+ strcharinfo(0) + "..."; |
---|
361 | mes "I have been expecting you."; |
---|
362 | mes "Moohyun has told me about"; |
---|
363 | mes "your arrival and your desire"; |
---|
364 | mes "to become a Taekwon Master."; |
---|
365 | mes "I will trust his judgment..."; |
---|
366 | next; |
---|
367 | mes "[Moogang]"; |
---|
368 | mes "Yes, Moohyun is skilled at"; |
---|
369 | mes "discerning the inner strengths"; |
---|
370 | mes "of others. You should do well."; |
---|
371 | mes "Are you ready for the first test, to use your fists and legs in the"; |
---|
372 | mes "service of the grand cosmos?"; |
---|
373 | next; |
---|
374 | if (select("Yes, let me take the test!:Wait, I need to think about this!") == 1) { |
---|
375 | if (SkillPoint) { |
---|
376 | mes "[Moogang]"; |
---|
377 | mes "Hm? You still have Skill"; |
---|
378 | mes "Points that you haven't yet"; |
---|
379 | mes "allocated. Use them, learn"; |
---|
380 | if (Sex == 0) |
---|
381 | mes "and improve your Taekwon Girl"; |
---|
382 | else |
---|
383 | mes "and improve your Taekwon Boy"; |
---|
384 | mes "skills. When you are finished,^FFFFFF ^000000 come back here for your training."; |
---|
385 | close; |
---|
386 | } |
---|
387 | mes "[Moogang]"; |
---|
388 | mes "Taekwon Do sets the basics."; |
---|
389 | mes "Mind, body, soul. These are not"; |
---|
390 | mes "separate parts, but a functioning whole. Your self is in touch"; |
---|
391 | mes "with itself, but is it in touch"; |
---|
392 | mes "with the outside world?"; |
---|
393 | next; |
---|
394 | mes "[Moogang]"; |
---|
395 | mes "Close your eyes. Seek out"; |
---|
396 | mes "the sensation of the wind."; |
---|
397 | mes "Open your arms and embrace"; |
---|
398 | mes "the sky. Can you feel it? The"; |
---|
399 | mes "everspreading flow of the"; |
---|
400 | mes "universal cosmos?"; |
---|
401 | next; |
---|
402 | mes "[Moogang]"; |
---|
403 | mes "Nature's laws cannot be broken,"; |
---|
404 | mes "but as your undestanding of nature grows, you'll be able to grasp the"; |
---|
405 | mes "sunlight, hold the moonlight, and mold the starlight. This test will"; |
---|
406 | mes "help you attune yourself..."; |
---|
407 | next; |
---|
408 | mes "[Moogang]"; |
---|
409 | mes "Go forth and gather the"; |
---|
410 | mes "power of nature scattered"; |
---|
411 | mes "around the world. Bring me"; |
---|
412 | mes "pieces of the blustery wind,"; |
---|
413 | mes "solid earth, freezing ice,"; |
---|
414 | mes "and burning flame."; |
---|
415 | next; |
---|
416 | mes "[Moogang]"; |
---|
417 | mes "In other words..."; |
---|
418 | mes "^4D4DFFRough Wind^000000,"; |
---|
419 | mes "^4D4DFFGreat Nature^000000,"; |
---|
420 | mes "^4D4DFFMystic Frozen^000000 and"; |
---|
421 | mes "^4D4DFFFlame Heart^000000."; |
---|
422 | mes "Now go..."; |
---|
423 | set STGL_Q,2; |
---|
424 | close; |
---|
425 | } |
---|
426 | mes "[Moogang]"; |
---|
427 | mes "I respect your decision,"; |
---|
428 | mes "although I see no reason"; |
---|
429 | mes "for you to hesitate. But like"; |
---|
430 | mes "the phases of the moon, all"; |
---|
431 | mes "changes must occur according"; |
---|
432 | mes "to the grand scheme of things."; |
---|
433 | close; |
---|
434 | } |
---|
435 | else if (STGL_Q == 2) { |
---|
436 | if (countitem(996) > 0 && countitem(997) > 0 && countitem(995) > 0 && countitem(994) > 0) { |
---|
437 | mes "[Moogang]"; |
---|
438 | mes "Ah, you've completed the"; |
---|
439 | mes "task I've set for you. Very"; |
---|
440 | mes "good. Now, while holding these"; |
---|
441 | mes "shards of the wind, earth, ice"; |
---|
442 | mes "and flame, did you sense the"; |
---|
443 | mes "connection between them all?"; |
---|
444 | next; |
---|
445 | mes "[Moogang]"; |
---|
446 | mes "Winds provide gentle and"; |
---|
447 | mes "comforting breezes or bring"; |
---|
448 | mes "destructive hurricanes. Earth"; |
---|
449 | mes "is the solid ground on which"; |
---|
450 | mes "all life lives, but it can also"; |
---|
451 | mes "sink and shake buildings."; |
---|
452 | next; |
---|
453 | mes "[Moogang]"; |
---|
454 | mes "Water gives life and provides"; |
---|
455 | mes "cooling refreshment, but it can"; |
---|
456 | mes "also drown and freeze life. Fire can bring comforting warmth,"; |
---|
457 | mes "but it can also reduce life to"; |
---|
458 | mes "gray ashes. Such is nature."; |
---|
459 | next; |
---|
460 | mes "[Moogang]"; |
---|
461 | mes "This is the power of nature."; |
---|
462 | mes "Any force can be used to do"; |
---|
463 | mes "good or evil, depending on"; |
---|
464 | mes "how you wield it. So do you"; |
---|
465 | mes "understand now? This is how"; |
---|
466 | mes "the universe is intertwined."; |
---|
467 | next; |
---|
468 | mes "[Moogang]"; |
---|
469 | mes "However, the most primal,"; |
---|
470 | mes "the purest elements of our"; |
---|
471 | mes "universe are equated to the"; |
---|
472 | mes "cosmos: the Sun, the Moon,"; |
---|
473 | mes "and the Stars. Contemplate"; |
---|
474 | mes "on this truth for a while..."; |
---|
475 | next; |
---|
476 | mes "[Moogang]"; |
---|
477 | mes "With the realization of"; |
---|
478 | mes "the nature of the universe"; |
---|
479 | mes "comes the respect for nature"; |
---|
480 | mes "and all things. Now, when you"; |
---|
481 | mes "are ready for the next test, then^FFFFFF ^000000"; |
---|
482 | mes "I shall guide you to the altar."; |
---|
483 | delitem 996,1; //Rough_Wind |
---|
484 | delitem 997,1; //Great_Nature |
---|
485 | delitem 995,1; //Mistic_Frozen |
---|
486 | delitem 994,1; //Flame_Heart |
---|
487 | set STGL_Q,3; |
---|
488 | close; |
---|
489 | } |
---|
490 | mes "[Moogang]"; |
---|
491 | mes "For your first test on your"; |
---|
492 | mes "journey towards becoming"; |
---|
493 | mes "a Taekwon Master, bring me "; |
---|
494 | mes "shards of the natural elements."; |
---|
495 | mes "I want you to understand their innate harmony with one another."; |
---|
496 | next; |
---|
497 | mes "[Moogang]"; |
---|
498 | mes "Bring..."; |
---|
499 | mes "^4D4DFFRough Wind^000000,"; |
---|
500 | mes "^4D4DFFGreat Nature^000000,"; |
---|
501 | mes "^4D4DFFMystic Frozen^000000 and"; |
---|
502 | mes "^4D4DFFFlame Heart^000000."; |
---|
503 | mes "Now go..."; |
---|
504 | close; |
---|
505 | } |
---|
506 | else if (STGL_Q == 3) { |
---|
507 | mes "[Moogang]"; |
---|
508 | mes "Are you ready for"; |
---|
509 | mes "the next test to become"; |
---|
510 | mes "a Taekwon Master? Then,"; |
---|
511 | mes "I shall guide you to the altar."; |
---|
512 | next; |
---|
513 | if (select("Wait, I need more time!:Yes, I am ready.") == 1) { |
---|
514 | mes "[Moogang]"; |
---|
515 | mes "I see. Well then, please"; |
---|
516 | mes "let me know when you"; |
---|
517 | mes "are ready to proceed."; |
---|
518 | close; |
---|
519 | } |
---|
520 | mes "[Moogang]"; |
---|
521 | mes "At the altar, speak"; |
---|
522 | mes "to Daru, who will serve"; |
---|
523 | mes "as your guide for that"; |
---|
524 | mes "test. After you complete"; |
---|
525 | mes "the test, come talk to me."; |
---|
526 | close2; |
---|
527 | warp "job_star",34,12; |
---|
528 | end; |
---|
529 | } |
---|
530 | else if (STGL_Q > 3 && STGL_Q < 7) { |
---|
531 | mes "[Moogang]"; |
---|
532 | mes "How very strange..."; |
---|
533 | mes "You cannot have completed"; |
---|
534 | mes "that test by now. Ah, something"; |
---|
535 | mes "must have happened. I shall"; |
---|
536 | mes "send you back to the altar"; |
---|
537 | mes "so that Daru can test you."; |
---|
538 | close2; |
---|
539 | warp "job_star",34,12; |
---|
540 | end; |
---|
541 | } |
---|
542 | else if (STGL_Q == 7) { |
---|
543 | mes "[Moogang]"; |
---|
544 | mes "Hmm..."; |
---|
545 | mes "You seem troubled."; |
---|
546 | mes "Ah, you must be thinking"; |
---|
547 | mes "about Beeryu's riddle, yes?"; |
---|
548 | mes "You are the only one that"; |
---|
549 | mes "can find the answer..."; |
---|
550 | next; |
---|
551 | mes "[Moogang]"; |
---|
552 | mes "Hmm. Perhaps it would"; |
---|
553 | mes "be best for you to consult"; |
---|
554 | mes "with ^4D4DFFMoohyun^000000 back in Payon"; |
---|
555 | mes "so that you may understand"; |
---|
556 | mes "Beeryu's test regarding the"; |
---|
557 | mes "value of patience."; |
---|
558 | next; |
---|
559 | mes "[Moogang]"; |
---|
560 | mes "Once you discover the"; |
---|
561 | mes "meaning of patience that"; |
---|
562 | mes "Beeryu wants you to find,"; |
---|
563 | mes "come back to me so that"; |
---|
564 | mes "I can send you back to the"; |
---|
565 | mes "Moon Room for testing."; |
---|
566 | close; |
---|
567 | } |
---|
568 | else if (STGL_Q == 8) { |
---|
569 | mes "[Moogang]"; |
---|
570 | mes "Ah, I see that Moohyun"; |
---|
571 | mes "has helped you achieve a"; |
---|
572 | mes "new level of understanding."; |
---|
573 | mes "Very well, very well. Let me"; |
---|
574 | mes "send you to the Moon Room"; |
---|
575 | mes "where Beeryu is waiting..."; |
---|
576 | close2; |
---|
577 | warp "job_star",100,13; |
---|
578 | end; |
---|
579 | } |
---|
580 | else if (STGL_Q == 9 || STGL_Q == 11) { |
---|
581 | mes "[Moogang]"; |
---|
582 | mes "Would you like to"; |
---|
583 | mes "return to the Star Room"; |
---|
584 | mes "to complete your Taekwon"; |
---|
585 | mes "Master testing and training?"; |
---|
586 | next; |
---|
587 | if (select("Yes, please.:Maybe later.") == 1) { |
---|
588 | mes "[Moogang]"; |
---|
589 | mes "Don't lose heart..."; |
---|
590 | mes "I expect that you will"; |
---|
591 | mes "achieve your goal of"; |
---|
592 | mes "becoming a Taekwon"; |
---|
593 | mes "Master very soon."; |
---|
594 | close2; |
---|
595 | warp "job_star",166,29; |
---|
596 | end; |
---|
597 | } |
---|
598 | mes "[Moogang]"; |
---|
599 | mes "I see. Well, when"; |
---|
600 | mes "your mind, body and"; |
---|
601 | mes "spirit are prepared, please"; |
---|
602 | mes "come and talk to me again."; |
---|
603 | close; |
---|
604 | } |
---|
605 | else if (STGL_Q == 10) { |
---|
606 | mes "[Moogang]"; |
---|
607 | mes "Ah, you have come here in"; |
---|
608 | mes "order to speak to Cheehee."; |
---|
609 | mes "Would you like me to send"; |
---|
610 | mes "you to the Star Room now?"; |
---|
611 | next; |
---|
612 | if (select("Yes, please.:Maybe later.") == 1) { |
---|
613 | mes "[Moogang]"; |
---|
614 | mes "Don't lose heart..."; |
---|
615 | mes "I expect that you will"; |
---|
616 | mes "achieve your goal of"; |
---|
617 | mes "becoming a Taekwon"; |
---|
618 | mes "Master very soon."; |
---|
619 | close2; |
---|
620 | warp "job_star",166,29; |
---|
621 | end; |
---|
622 | } |
---|
623 | mes "[Moogang]"; |
---|
624 | mes "I see. Well, when"; |
---|
625 | mes "your mind, body and"; |
---|
626 | mes "spirit are prepared, please"; |
---|
627 | mes "come and talk to me again."; |
---|
628 | close; |
---|
629 | } |
---|
630 | else if (STGL_Q == 12) { |
---|
631 | mes "[Moogang]"; |
---|
632 | mes "Ah, you've returned"; |
---|
633 | mes "wiser and more attuned"; |
---|
634 | mes "with nature than before."; |
---|
635 | mes "Yes, I can see it in your eyes."; |
---|
636 | mes "So tell me, what did you learn?"; |
---|
637 | next; |
---|
638 | mes "[" + strcharinfo(0) + "]"; |
---|
639 | mes "I can feel the bond between"; |
---|
640 | mes "the Sun, the Moon and the"; |
---|
641 | mes "Stars. They all give light,"; |
---|
642 | mes "but their different shades"; |
---|
643 | mes "bestow different gifts."; |
---|
644 | next; |
---|
645 | mes "[" + strcharinfo(0) + "]"; |
---|
646 | mes "The sun gives glorious"; |
---|
647 | mes "warmth and is the wellspring"; |
---|
648 | mes "of life. Moonlight is gentle and gives comfort. The twinkling"; |
---|
649 | mes "of stars gives hope in even"; |
---|
650 | mes "the darkest of nights."; |
---|
651 | next; |
---|
652 | mes "[" + strcharinfo(0) + "]"; |
---|
653 | mes "I also know the Sun's"; |
---|
654 | mes "scorching, destructive"; |
---|
655 | mes "heat, the loneliness of"; |
---|
656 | mes "the Moon, and the sadness"; |
---|
657 | mes "of the Stars. I now understand"; |
---|
658 | mes "the spectrum of the cosmos!"; |
---|
659 | next; |
---|
660 | mes "[" + strcharinfo(0) + "]"; |
---|
661 | mes "The combined rage of the"; |
---|
662 | mes "cosmos can summon a "; |
---|
663 | mes "demon of utter darkness."; |
---|
664 | mes "The combined love of the"; |
---|
665 | mes "cosmos bestows infinite"; |
---|
666 | mes "blessing and light..."; |
---|
667 | next; |
---|
668 | mes "[Moogang]"; |
---|
669 | mes "I cannot ask for"; |
---|
670 | mes "anything more. You"; |
---|
671 | mes "are already a warrior"; |
---|
672 | mes "of the Sun, the Moon and"; |
---|
673 | mes "the Stars. Welcome to our"; |
---|
674 | mes "way of martial arts, friend."; |
---|
675 | callfunc "Job_Change",Job_Star_Gladiator; |
---|
676 | callfunc "F_ClearJobVar"; //clears all job variables for the current player |
---|
677 | next; |
---|
678 | mes "[Moogang]"; |
---|
679 | mes "From now on, please"; |
---|
680 | mes "make your decisions very"; |
---|
681 | mes "carefully. What you decide"; |
---|
682 | mes "will determine the course"; |
---|
683 | mes "of your entire life. Also,"; |
---|
684 | mes "never forget this song..."; |
---|
685 | next; |
---|
686 | mes "[Moogang]"; |
---|
687 | mes "''^4D4DFFThe Sun shines on even days."; |
---|
688 | mes "The Moon gleams on odd days."; |
---|
689 | mes "The Stars sparkle on every"; |
---|
690 | mes "fifth day without fail.^000000''"; |
---|
691 | next; |
---|
692 | mes "[Moogang]"; |
---|
693 | mes "That is all that I can"; |
---|
694 | mes "share with you. Never forget"; |
---|
695 | mes "that we, as Taekwon Masters,"; |
---|
696 | mes "cannot exist separately from"; |
---|
697 | mes "the Sun, Moon and Stars..."; |
---|
698 | close; |
---|
699 | } |
---|
700 | mes "[Moogang]"; |
---|
701 | mes "Oh, hello. You're a"; |
---|
702 | mes "student of Taekwon Do,"; |
---|
703 | mes "are you not? It's nice to"; |
---|
704 | mes "meet you. Please call"; |
---|
705 | mes "me Moogang. I too used to"; |
---|
706 | mes "study this Tae Kwon Do."; |
---|
707 | next; |
---|
708 | mes "[Moogang]"; |
---|
709 | mes "Um..."; |
---|
710 | mes "Have you ever"; |
---|
711 | mes "considered becoming..."; |
---|
712 | mes "Um... No. Wait. Hmmm..."; |
---|
713 | next; |
---|
714 | mes "[" + strcharinfo(0) + "]"; |
---|
715 | mes "Huh...?"; |
---|
716 | next; |
---|
717 | mes "[Moogang]"; |
---|
718 | mes "Oh, dear! I always"; |
---|
719 | mes "have a little bit of"; |
---|
720 | mes "trouble speaking to other"; |
---|
721 | mes "people. Now, why don't"; |
---|
722 | mes "you speak to my good"; |
---|
723 | mes "friend, Moohyun?"; |
---|
724 | next; |
---|
725 | mes "[Moogang]"; |
---|
726 | mes "It's just..."; |
---|
727 | mes "I'm so excited!"; |
---|
728 | mes "There's every chance"; |
---|
729 | mes "that you might possibly"; |
---|
730 | mes "be the warrior I'm seeking!"; |
---|
731 | close; |
---|
732 | } |
---|
733 | else if (BaseJob == Job_Star_Gladiator) { |
---|
734 | mes "[Moogang]"; |
---|
735 | mes "Oh, it's very nice to"; |
---|
736 | mes "see you again. So where"; |
---|
737 | mes "have you been lately? I trust"; |
---|
738 | mes "that you've been to places"; |
---|
739 | mes "blessed by the Sun, Moon"; |
---|
740 | mes "and Stars, correct?"; |
---|
741 | next; |
---|
742 | mes "[Moogang]"; |
---|
743 | mes "My friend, please keep"; |
---|
744 | mes "my advice in mind and "; |
---|
745 | mes "always be careful when"; |
---|
746 | mes "you make decisions. I don't"; |
---|
747 | mes "want to see you regreting your decision later on in your life..."; |
---|
748 | next; |
---|
749 | mes "[Moogang]"; |
---|
750 | mes "Ah, if you miss the"; |
---|
751 | mes "Room of the Sun, the"; |
---|
752 | mes "Moon Room or the Star Room,"; |
---|
753 | mes "I can send you there anytime"; |
---|
754 | mes "that you wish. Would you like"; |
---|
755 | mes "to visit any of them now?"; |
---|
756 | next; |
---|
757 | switch(select("Maybe next time.:To the Room of the Sun!:To the Moon Room!:To the Star Room!")) { |
---|
758 | case 1: |
---|
759 | mes "[Moogang]"; |
---|
760 | mes "Alright. I'll always be"; |
---|
761 | mes "here, so whenever you"; |
---|
762 | mes "feel like going to any of"; |
---|
763 | mes "those places, just come"; |
---|
764 | mes "and talk to me. Goodbye"; |
---|
765 | mes "for now, "+strcharinfo(0)+"~"; |
---|
766 | close; |
---|
767 | case 2: |
---|
768 | mes "[Moogang]"; |
---|
769 | mes "Ah, you must miss"; |
---|
770 | mes "the glorious warmth"; |
---|
771 | mes "of the sun, eh? Let"; |
---|
772 | mes "me send you there"; |
---|
773 | mes "right away..."; |
---|
774 | close2; |
---|
775 | warp "job_star",34,12; |
---|
776 | end; |
---|
777 | case 3: |
---|
778 | mes "[Moogang]"; |
---|
779 | mes "Hm? Have you need"; |
---|
780 | mes "of the soothing light of"; |
---|
781 | mes "the Moon? Then I hope"; |
---|
782 | mes "that you find peace in"; |
---|
783 | mes "its calming influence..."; |
---|
784 | close2; |
---|
785 | warp "job_star",100,13; |
---|
786 | end; |
---|
787 | case 4: |
---|
788 | mes "[Moogang]"; |
---|
789 | mes "Ah, there are countless"; |
---|
790 | mes "reasons as to why you'd want"; |
---|
791 | mes "to view the twinkling of the"; |
---|
792 | mes "stars. Well, let me send you"; |
---|
793 | mes "to the Star Room right away~"; |
---|
794 | close2; |
---|
795 | warp "job_star",166,29; |
---|
796 | end; |
---|
797 | } |
---|
798 | } |
---|
799 | mes "[Wandering Martial Artist]"; |
---|
800 | mes "Do you enjoy hiking?"; |
---|
801 | mes "The fresh air, the liberation"; |
---|
802 | mes "found in wandering, and the"; |
---|
803 | mes "beauty of natural are all"; |
---|
804 | mes "welcome benefits."; |
---|
805 | next; |
---|
806 | mes "[Wandering Martial Artist]"; |
---|
807 | mes "Of course, I cannot enjoy"; |
---|
808 | mes "the moonlight and starlight"; |
---|
809 | mes "on nighttime hikes as much"; |
---|
810 | mes "as you can. Well then, may the"; |
---|
811 | mes "Sun, Moon and Stars protect"; |
---|
812 | mes "you on all your journeys~"; |
---|
813 | close; |
---|
814 | } |
---|
815 | |
---|
816 | job_star,29,33,0 script Daru#job_star 59,{ |
---|
817 | if (Class == Job_Taekwon) { |
---|
818 | if (STGL_Q == 3) { |
---|
819 | mes "[Daru]"; |
---|
820 | mes "Ah, greetings."; |
---|
821 | mes "I am Daru, and I will"; |
---|
822 | mes "be your guide for this room."; |
---|
823 | mes "For this test, you must open"; |
---|
824 | mes "your eyes and answer my"; |
---|
825 | mes "questions. Let us begin."; |
---|
826 | next; |
---|
827 | mes "[Daru]"; |
---|
828 | mes "Tell me."; |
---|
829 | mes "What is it"; |
---|
830 | mes "that you see?"; |
---|
831 | next; |
---|
832 | switch(select("The Sun.:The Moon.:The Stars.:I have no idea.")) { |
---|
833 | case 1: |
---|
834 | mes "[Daru]"; |
---|
835 | mes "Yes! It is the sun!"; |
---|
836 | mes "I suppose you can think"; |
---|
837 | mes "of mankind as the sons of"; |
---|
838 | mes "the sun. Good, very good..."; |
---|
839 | set .@sun_point,.@sun_point+10; |
---|
840 | break; |
---|
841 | case 2: |
---|
842 | mes "[Daru]"; |
---|
843 | mes "The... The moon?"; |
---|
844 | mes "Mm. But this is the"; |
---|
845 | mes "Sun Room. Hmmm..."; |
---|
846 | break; |
---|
847 | case 3: |
---|
848 | mes "[Daru]"; |
---|
849 | mes "The Stars. Well, hmm."; |
---|
850 | mes "I suppose you can think of"; |
---|
851 | mes "the Sun as one of thousands"; |
---|
852 | mes "of stars in the universe..."; |
---|
853 | set .@sun_point,.@sun_point+5; |
---|
854 | break; |
---|
855 | case 4: |
---|
856 | mes "[Daru]"; |
---|
857 | mes "No... idea?"; |
---|
858 | mes "Hmm. You should"; |
---|
859 | mes "open your mind as"; |
---|
860 | mes "well as your eyes."; |
---|
861 | mes "It wouldn't hurt to"; |
---|
862 | mes "try to guess an answer..."; |
---|
863 | } |
---|
864 | next; |
---|
865 | mes "[Daru]"; |
---|
866 | mes "Now, there is nothing"; |
---|
867 | mes "that can live without the"; |
---|
868 | mes "sun. Do you know what one"; |
---|
869 | mes "needs most from the sun?"; |
---|
870 | next; |
---|
871 | switch(select("Warmth:Comfort:Light:Nothing")) { |
---|
872 | case 1: |
---|
873 | mes "[Daru]"; |
---|
874 | mes "That is right."; |
---|
875 | mes "Without the warmth"; |
---|
876 | mes "of the sun, our world"; |
---|
877 | mes "not only be cold, but it"; |
---|
878 | mes "would be completely lifeless."; |
---|
879 | set .@sun_point,.@sun_point+10; |
---|
880 | break; |
---|
881 | case 2: |
---|
882 | mes "[Daru]"; |
---|
883 | mes "Comfort...?"; |
---|
884 | mes "Ah, yes. The warmth"; |
---|
885 | mes "of the sun brings comfort."; |
---|
886 | mes "And without comfort, is life"; |
---|
887 | mes "truly worth living? Good answer. ^FFFFFF ^000000"; |
---|
888 | set .@sun_point,.@sun_point+10; |
---|
889 | break; |
---|
890 | case 3: |
---|
891 | mes "[Daru]"; |
---|
892 | mes "Yes. Without the"; |
---|
893 | mes "glorious light of the sun,"; |
---|
894 | mes "we would see nothing."; |
---|
895 | mes "We would know nothing."; |
---|
896 | mes "We would be nothing."; |
---|
897 | set .@sun_point,.@sun_point+10; |
---|
898 | break; |
---|
899 | case 4: |
---|
900 | mes "[Daru]"; |
---|
901 | mes "Mmm..."; |
---|
902 | mes "The answer should"; |
---|
903 | mes "come from your heart,"; |
---|
904 | mes "rather than your mind."; |
---|
905 | mes "Everyone needs something"; |
---|
906 | mes "from the sun. Let's see now..."; |
---|
907 | break; |
---|
908 | } |
---|
909 | next; |
---|
910 | mes "[Daru]"; |
---|
911 | mes "There is a song that goes,"; |
---|
912 | mes "''^4D4DFFThe Sun shines on even days."; |
---|
913 | mes "The Moon gleams on odd days."; |
---|
914 | mes "The Stars sparkle on every"; |
---|
915 | mes "fifth day without fail.^000000''"; |
---|
916 | next; |
---|
917 | mes "[Daru]"; |
---|
918 | mes "''^4D4DFFA desert is a Solar place,"; |
---|
919 | mes "its sands kissed by the Sun."; |
---|
920 | mes "A marsh is a Lunar place,"; |
---|
921 | mes "its wolves driven by the Moon."; |
---|
922 | mes "A deep cave is a Stellar place, its knights enchanted by Stars.^000000''"; |
---|
923 | next; |
---|
924 | mes "[Daru]"; |
---|
925 | mes "Now, which of the"; |
---|
926 | mes "following combinations"; |
---|
927 | mes "shines brightest among "; |
---|
928 | mes "them all? Think carefully..."; |
---|
929 | next; |
---|
930 | if (select("2nd, Marsh, Knights:4th, Desert, Sand:10th, Desert, Knights:5th, Deep Cave, Wolves") == 2) |
---|
931 | set .@sun_point,.@sun_point+10; |
---|
932 | mes "[Daru]"; |
---|
933 | mes "Well, that will be all."; |
---|
934 | mes "I cannot possibly know all"; |
---|
935 | mes "there is to know about you"; |
---|
936 | mes "through just 3 questions..."; |
---|
937 | mes "But this should suit our"; |
---|
938 | mes "purposes for now."; |
---|
939 | next; |
---|
940 | if (.@sun_point == 30) { |
---|
941 | mes "[Daru]"; |
---|
942 | mes "I admit that I am impressed"; |
---|
943 | mes "with your understanding of"; |
---|
944 | mes "the Sun. It is the source of"; |
---|
945 | mes "all life, the origin of warmth"; |
---|
946 | mes "and comfort. Now, let me lead"; |
---|
947 | mes "you to the Moon Room."; |
---|
948 | set STGL_Q,4; |
---|
949 | close2; |
---|
950 | warp "job_star",100,13; |
---|
951 | end; |
---|
952 | } |
---|
953 | else if (.@sun_point == 25) { |
---|
954 | mes "[Daru]"; |
---|
955 | mes "Although your understanding"; |
---|
956 | mes "of the Sun is not perfect, you"; |
---|
957 | mes "seem to understand the idea"; |
---|
958 | mes "that it is the source of warm"; |
---|
959 | mes "and life in our world."; |
---|
960 | next; |
---|
961 | mes "[Daru]"; |
---|
962 | mes "This idea is one of the basics"; |
---|
963 | mes "that will help you in becoming"; |
---|
964 | mes "more attuned with the power of"; |
---|
965 | mes "the cosmos. Now, please come"; |
---|
966 | mes "this way to the Moon Room..."; |
---|
967 | set STGL_Q,4; |
---|
968 | close2; |
---|
969 | warp "job_star",100,13; |
---|
970 | end; |
---|
971 | } |
---|
972 | mes "[Daru]"; |
---|
973 | mes "Hmm... If you do not"; |
---|
974 | mes "understand the role of the"; |
---|
975 | mes "sun in the universe and"; |
---|
976 | mes "the human world, you will"; |
---|
977 | mes "forever be out of touch with"; |
---|
978 | mes "nature, with the cosmos."; |
---|
979 | next; |
---|
980 | mes "[Daru]"; |
---|
981 | mes "I advise you to meditate"; |
---|
982 | mes "carefully on the fundamental"; |
---|
983 | mes "truths of nature before coming"; |
---|
984 | mes "to speak to me once again."; |
---|
985 | mes "Contemplate the infinite"; |
---|
986 | mes "power of the sun..."; |
---|
987 | set STGL_Q,5; |
---|
988 | close; |
---|
989 | } |
---|
990 | else if (STGL_Q == 4) { |
---|
991 | mes "[Daru]"; |
---|
992 | mes "There is no longer any"; |
---|
993 | mes "need for us to remain"; |
---|
994 | mes "here. Let us proceed to"; |
---|
995 | mes "the Moon Room together."; |
---|
996 | close2; |
---|
997 | warp "job_star",100,13; |
---|
998 | end; |
---|
999 | } |
---|
1000 | else if (STGL_Q == 5) { |
---|
1001 | if (rand(1,5) == 3) { |
---|
1002 | mes "[Daru]"; |
---|
1003 | mes "Hmmm. I believe you've"; |
---|
1004 | mes "spent enough time reflecting"; |
---|
1005 | mes "on the glory of the Sun and"; |
---|
1006 | mes "its importance to the humans"; |
---|
1007 | mes "and the world. Well done. Now,"; |
---|
1008 | mes "let's proceed to the Moon Room."; |
---|
1009 | set STGL_Q,4; |
---|
1010 | close2; |
---|
1011 | warp "job_star",100,13; |
---|
1012 | end; |
---|
1013 | } |
---|
1014 | mes "[Daru]"; |
---|
1015 | mes "Relax every muscle in"; |
---|
1016 | mes "your body. Close your eyes."; |
---|
1017 | mes "Feel the warmth of the Sun"; |
---|
1018 | mes "against your eyelids as you"; |
---|
1019 | mes "meditate on its role in the world and your place in the cosmos."; |
---|
1020 | close; |
---|
1021 | } |
---|
1022 | else if (STGL_Q == 6) { |
---|
1023 | mes "[Daru]"; |
---|
1024 | mes "Hm? The time for you"; |
---|
1025 | mes "to be in the Room of the"; |
---|
1026 | mes "Sun has passed. Let us go"; |
---|
1027 | mes "to the Star Room now..."; |
---|
1028 | close2; |
---|
1029 | warp "job_star",166,29; |
---|
1030 | end; |
---|
1031 | } |
---|
1032 | else if (STGL_Q == 7) { |
---|
1033 | mes "[Daru]"; |
---|
1034 | mes "Ah, Beeryu must have"; |
---|
1035 | mes "given you his riddle to"; |
---|
1036 | mes "solve. Well, you'll need"; |
---|
1037 | mes "to go back to town in order"; |
---|
1038 | mes "to figure out the answer, so"; |
---|
1039 | mes "let me send you there now~"; |
---|
1040 | close2; |
---|
1041 | warp "payon",164,58; |
---|
1042 | end; |
---|
1043 | } |
---|
1044 | else if (STGL_Q == 8) { |
---|
1045 | mes "[Daru]"; |
---|
1046 | mes "Hm? Beeryu is expecting"; |
---|
1047 | mes "you in the Moon Room. Let"; |
---|
1048 | mes "me send you there right now..."; |
---|
1049 | close2; |
---|
1050 | warp "job_star",100,13; |
---|
1051 | end; |
---|
1052 | } |
---|
1053 | else if (STGL_Q > 8 && STGL_Q < 12) { |
---|
1054 | mes "[Daru]"; |
---|
1055 | mes "Hm. I cannot blame"; |
---|
1056 | mes "you if you enjoy the"; |
---|
1057 | mes "Room of the Sun this"; |
---|
1058 | mes "much, but now is the time"; |
---|
1059 | mes "for you to be in the Star"; |
---|
1060 | mes "Room. I'll send you there..."; |
---|
1061 | close2; |
---|
1062 | warp "job_star",166,29; |
---|
1063 | end; |
---|
1064 | } |
---|
1065 | mes "[Daru]"; |
---|
1066 | mes "Hm. I cannot blame"; |
---|
1067 | mes "you if you enjoy the"; |
---|
1068 | mes "Room of the Sun this"; |
---|
1069 | mes "much, but you have very"; |
---|
1070 | mes "important task to complete"; |
---|
1071 | mes "now. Let me send you to town."; |
---|
1072 | close2; |
---|
1073 | warp "payon",164,58; |
---|
1074 | end; |
---|
1075 | } |
---|
1076 | mes "[Daru]"; |
---|
1077 | mes "While you're here,"; |
---|
1078 | mes "I ask that you don't"; |
---|
1079 | mes "interfere with anyone"; |
---|
1080 | mes "that may be taking the"; |
---|
1081 | mes "job change test. So, would"; |
---|
1082 | mes "you like to return to town?"; |
---|
1083 | next; |
---|
1084 | if (select("Return to Payon:Cancel") == 1) { |
---|
1085 | mes "[Daru]"; |
---|
1086 | mes "I see. Let me"; |
---|
1087 | mes "guide you back"; |
---|
1088 | mes "to Payon, then."; |
---|
1089 | close2; |
---|
1090 | warp "payon",164,58; |
---|
1091 | end; |
---|
1092 | } |
---|
1093 | mes "[Daru]"; |
---|
1094 | mes "Please take your"; |
---|
1095 | mes "time and enjoy the"; |
---|
1096 | mes "splendor of the Sun"; |
---|
1097 | mes "while you are here."; |
---|
1098 | close; |
---|
1099 | } |
---|
1100 | |
---|
1101 | job_star,95,33,0 script Beeryu#job_star 106,{ |
---|
1102 | if (Class == Job_Taekwon) { |
---|
1103 | if (STGL_Q == 4) { |
---|
1104 | mes "[Beeryu]"; |
---|
1105 | mes "Welcome to the Moon Room."; |
---|
1106 | mes "I am Beeryu, your guide in"; |
---|
1107 | mes "this sanctum. I shall ask you a"; |
---|
1108 | mes "series of questions, so please"; |
---|
1109 | mes "think carefully before giving"; |
---|
1110 | mes "me your honest answer."; |
---|
1111 | next; |
---|
1112 | mes "[Beeryu]"; |
---|
1113 | mes "Which Moon do we need"; |
---|
1114 | mes "and want most? Think of"; |
---|
1115 | mes "the different shades of the"; |
---|
1116 | mes "moon, and how it changes"; |
---|
1117 | mes "on certain nights."; |
---|
1118 | next; |
---|
1119 | switch(select("Red Moon:Blue Moon:Gold Moon:...?")) { |
---|
1120 | case 1: |
---|
1121 | mes "[Beeryu]"; |
---|
1122 | mes "The Red Moon...?"; |
---|
1123 | mes "It's a fearsome sight,"; |
---|
1124 | mes "usually likened to drenching the sky with the color of blood."; |
---|
1125 | mes "The Red Moon stirs dark feelings that we shouldn't fully embrace..."; |
---|
1126 | break; |
---|
1127 | case 2: |
---|
1128 | mes "[Beeryu]"; |
---|
1129 | mes "The Blue Moon...?"; |
---|
1130 | mes "Ah, yes. It's a calm and"; |
---|
1131 | mes "gentle moon whose soft"; |
---|
1132 | mes "light helps you think clearly."; |
---|
1133 | mes "It's a moon of peaceful rest..."; |
---|
1134 | set .@moon_point,.@moon_point+10; |
---|
1135 | break; |
---|
1136 | case 3: |
---|
1137 | mes "[Beeryu]"; |
---|
1138 | mes "The Gold Moon...?"; |
---|
1139 | mes "Ah, that is a moon of"; |
---|
1140 | mes "affluence and wealth. Now,"; |
---|
1141 | mes "to aspire to attain prosperity"; |
---|
1142 | mes "is natural, and to fulfill your"; |
---|
1143 | mes "aspirations is life's pinnacle."; |
---|
1144 | set .@moon_point,.@moon_point+10; |
---|
1145 | break; |
---|
1146 | case 4: |
---|
1147 | mes "[Beeryu]"; |
---|
1148 | mes "Hmm...?"; |
---|
1149 | mes "Do you not have an"; |
---|
1150 | mes "opinion of the Moon?"; |
---|
1151 | mes "You should be confident"; |
---|
1152 | mes "and tell me which shade"; |
---|
1153 | mes "of the moon that you like..."; |
---|
1154 | } |
---|
1155 | next; |
---|
1156 | mes "[Beeryu]"; |
---|
1157 | mes "Now, if the shadows"; |
---|
1158 | mes "of the Moon were to"; |
---|
1159 | mes "lend you their power,"; |
---|
1160 | mes "to what end would you"; |
---|
1161 | mes "use the power of the"; |
---|
1162 | mes "Lunar cosmos?"; |
---|
1163 | next; |
---|
1164 | switch(select("Justice:Self Practice:Preservation of Nature:Revenge")) { |
---|
1165 | case 1: |
---|
1166 | mes "[Beeryu]"; |
---|
1167 | mes "Yes. Justice is always an"; |
---|
1168 | mes "end that is worth fighting"; |
---|
1169 | mes "for. Just remember that"; |
---|
1170 | mes "both power and compassion"; |
---|
1171 | mes "are required to enact the"; |
---|
1172 | mes "truest form of justice."; |
---|
1173 | set .@moon_point,.@moon_point+10; |
---|
1174 | break; |
---|
1175 | case 2: |
---|
1176 | mes "[Beeryu]"; |
---|
1177 | mes "Self training?"; |
---|
1178 | mes "That is an acceptable"; |
---|
1179 | mes "answer. However, you must"; |
---|
1180 | mes "never forget your reasons"; |
---|
1181 | mes "for attaining mastery of the"; |
---|
1182 | mes "self, else you lose your way."; |
---|
1183 | set .@moon_point,.@moon_point+10; |
---|
1184 | break; |
---|
1185 | case 3: |
---|
1186 | mes "[Beeryu]"; |
---|
1187 | mes "The preservation of"; |
---|
1188 | mes "nature is the responsiblity"; |
---|
1189 | mes "of every living human. However,"; |
---|
1190 | mes "I was expecting a different"; |
---|
1191 | mes "answer in terms of Taekwon"; |
---|
1192 | mes "Mastery as a martial art..."; |
---|
1193 | break; |
---|
1194 | case 4: |
---|
1195 | mes "[Beeryu]"; |
---|
1196 | mes "Sometimes, revenge may"; |
---|
1197 | mes "seem to be best course of"; |
---|
1198 | mes "action, especially if it is"; |
---|
1199 | mes "carried out in the interest"; |
---|
1200 | mes "of justice. However, revenge"; |
---|
1201 | mes "by itself is usually ignoble."; |
---|
1202 | next; |
---|
1203 | mes "[Beeryu]"; |
---|
1204 | mes "Ask yourself this:"; |
---|
1205 | mes "what will you do after"; |
---|
1206 | mes "you achieve your revenge?"; |
---|
1207 | mes "When you let your rage burn"; |
---|
1208 | mes "away at you, you inflict the"; |
---|
1209 | mes "most harm to yourself..."; |
---|
1210 | break; |
---|
1211 | } |
---|
1212 | next; |
---|
1213 | mes "[Beeryu]"; |
---|
1214 | mes "Now, listen carefully"; |
---|
1215 | mes "to the lyrics of this"; |
---|
1216 | mes "song. I'm sure Daru has"; |
---|
1217 | mes "sang this to you already..."; |
---|
1218 | next; |
---|
1219 | mes "[Beeryu]"; |
---|
1220 | mes "''^4D4DFFThe Sun shines on even days."; |
---|
1221 | mes "The Moon gleams on odd days."; |
---|
1222 | mes "The Stars sparkle on every"; |
---|
1223 | mes "fifth day without fail.^000000''"; |
---|
1224 | next; |
---|
1225 | mes "[Beeryu]"; |
---|
1226 | mes "''^4D4DFFA desert is a Solar place,"; |
---|
1227 | mes "its sands kissed by the Sun."; |
---|
1228 | mes "A marsh is a Lunar place,"; |
---|
1229 | mes "its wolves driven by the Moon."; |
---|
1230 | mes "A deep cave is a Stellar place, its knights enchanted by Stars.^000000''"; |
---|
1231 | next; |
---|
1232 | mes "[Beeryu]"; |
---|
1233 | mes "According to these"; |
---|
1234 | mes "lyrics, which is of"; |
---|
1235 | mes "the following most"; |
---|
1236 | mes "strongly evokes the"; |
---|
1237 | mes "light of the moon?"; |
---|
1238 | next; |
---|
1239 | if (select("2nd, Marsh, Dark Knights:4th, the Desert, the Sand:10th, Deep Cave, Dark Knight:5th, Marsh, Wolves") == 4) |
---|
1240 | set .@moon_point,.@moon_point+10; |
---|
1241 | mes "[Beeryu]"; |
---|
1242 | mes "Well, I've asked the"; |
---|
1243 | mes "questions I wanted to set"; |
---|
1244 | mes "before you. You must learn"; |
---|
1245 | if (.@moon_point > 20) { |
---|
1246 | mes "the bond between the moonlight"; |
---|
1247 | mes "with the shadows of the moon."; |
---|
1248 | mes "Then, you will become a master."; |
---|
1249 | next; |
---|
1250 | mes "[Beeryu]"; |
---|
1251 | mes "The soft moonlight "; |
---|
1252 | mes "illuminates the darkest night."; |
---|
1253 | mes "The shadows of the moon balance"; |
---|
1254 | mes "the Sun's glorious brightness."; |
---|
1255 | mes "Wisdom to power, coolness to"; |
---|
1256 | mes "rage. Contemplate on this..."; |
---|
1257 | next; |
---|
1258 | mes "[Beeryu]"; |
---|
1259 | mes "I have faith that you will soon"; |
---|
1260 | mes "become a great Taekwon Master."; |
---|
1261 | mes "Now, the time has come for you"; |
---|
1262 | mes "to enter the Star Room. Come,"; |
---|
1263 | mes "follow me this way..."; |
---|
1264 | set STGL_Q,6; |
---|
1265 | close2; |
---|
1266 | warp "job_star",166,29; |
---|
1267 | end; |
---|
1268 | } |
---|
1269 | mes "to be as patient and gentle"; |
---|
1270 | mes "as the moon's soft glow."; |
---|
1271 | next; |
---|
1272 | mes "[Beeryu]"; |
---|
1273 | mes "Please think about"; |
---|
1274 | mes "this seriously. A true"; |
---|
1275 | mes "Taekwon Master can"; |
---|
1276 | mes "display calmness of mind"; |
---|
1277 | mes "in all situations, no matter"; |
---|
1278 | mes "what the stakes may be."; |
---|
1279 | next; |
---|
1280 | mes "[Beeryu]"; |
---|
1281 | mes "Now, I want you to"; |
---|
1282 | mes "take this chance to"; |
---|
1283 | mes "practice achieving the"; |
---|
1284 | mes "Lunar mindset. Be calm,"; |
---|
1285 | mes "quiet your thoughts and"; |
---|
1286 | mes "settle your active mind..."; |
---|
1287 | next; |
---|
1288 | mes "[Beeryu]"; |
---|
1289 | mes "For now, I will send"; |
---|
1290 | mes "you out into Payon. Go out"; |
---|
1291 | mes "and learn the ^4D4DFFtrue meaning"; |
---|
1292 | mes "of patience^000000. Then, when you're"; |
---|
1293 | mes "ready, please talk to Moogang"; |
---|
1294 | mes "so that he can send you to me."; |
---|
1295 | set STGL_Q,7; |
---|
1296 | close2; |
---|
1297 | warp "payon",164,58; |
---|
1298 | end; |
---|
1299 | } |
---|
1300 | else if (STGL_Q == 5) { |
---|
1301 | mes "[Beeryu]"; |
---|
1302 | mes "Hm. You must first pass"; |
---|
1303 | mes "testing the Room of the Sun"; |
---|
1304 | mes "before you can be tested here"; |
---|
1305 | mes "in the Moon Room. Let me send"; |
---|
1306 | mes "you to where you must go..."; |
---|
1307 | close2; |
---|
1308 | warp "job_star",34,12; |
---|
1309 | end; |
---|
1310 | } |
---|
1311 | else if (STGL_Q == 6) { |
---|
1312 | mes "[Beeryu]"; |
---|
1313 | mes "How are you still here?"; |
---|
1314 | mes "The light of the full moon"; |
---|
1315 | mes "brings comfort, but you must"; |
---|
1316 | mes "move on if you wish to become"; |
---|
1317 | mes "a Taekwon Master. Come, I shall"; |
---|
1318 | mes "guide you to the Star Room."; |
---|
1319 | close2; |
---|
1320 | warp "job_star",166,29; |
---|
1321 | end; |
---|
1322 | } |
---|
1323 | else if (STGL_Q == 7) { |
---|
1324 | mes "[Beeryu]"; |
---|
1325 | mes "I want you to bring me"; |
---|
1326 | mes "proof that you understand"; |
---|
1327 | mes "the nature of patience that"; |
---|
1328 | mes "is associated with the moon."; |
---|
1329 | mes "You cannot become a Taekwon"; |
---|
1330 | mes "Master without this attitude..."; |
---|
1331 | next; |
---|
1332 | mes "[Beeryu]"; |
---|
1333 | mes "The proof I want you to"; |
---|
1334 | mes "show me is concrete and"; |
---|
1335 | mes "indisputable. Please think"; |
---|
1336 | mes "about what it might be. Now,"; |
---|
1337 | mes "I shall send you back to town... "; |
---|
1338 | close2; |
---|
1339 | warp "payon",164,58; |
---|
1340 | end; |
---|
1341 | } |
---|
1342 | else if (STGL_Q == 8) { |
---|
1343 | mes "[Beeryu]"; |
---|
1344 | mes "Ah, you've finally"; |
---|
1345 | mes "returned. I can see in"; |
---|
1346 | mes "the way that you carry"; |
---|
1347 | mes "yourself that your resolve"; |
---|
1348 | mes "has been strengthened. Good."; |
---|
1349 | mes "I hope you now know patience..."; |
---|
1350 | next; |
---|
1351 | mes "[Beeryu]"; |
---|
1352 | mes "Patience and resolve are"; |
---|
1353 | mes "necessary to live life without"; |
---|
1354 | mes "any regrets. You must believe"; |
---|
1355 | mes "in yourself while being both"; |
---|
1356 | mes "considerate and understanding"; |
---|
1357 | mes "of others in cosmic harmony."; |
---|
1358 | next; |
---|
1359 | mes "[Beeryu]"; |
---|
1360 | mes "Learn to control your"; |
---|
1361 | mes "power through spiritual"; |
---|
1362 | mes "training. Learn how to have"; |
---|
1363 | mes "pride without hubris. You're"; |
---|
1364 | mes "ready for the Star Room, so"; |
---|
1365 | mes "I'll send you to Cheehee now."; |
---|
1366 | set STGL_Q,6; |
---|
1367 | close2; |
---|
1368 | warp "job_star",166,29; |
---|
1369 | end; |
---|
1370 | } |
---|
1371 | else if (STGL_Q > 8 && STGL_Q < 12) { |
---|
1372 | mes "[Beeryu]"; |
---|
1373 | mes "You should be"; |
---|
1374 | mes "receiving Cheehee's"; |
---|
1375 | mes "tutelage in the Star Room"; |
---|
1376 | mes "now. Come, let me guide you"; |
---|
1377 | mes "there. I hope to see you as"; |
---|
1378 | mes "a Taekwon Master soon..."; |
---|
1379 | close2; |
---|
1380 | warp "job_star",166,29; |
---|
1381 | end; |
---|
1382 | } |
---|
1383 | mes "[Beeryu]"; |
---|
1384 | mes "Why are you still here?"; |
---|
1385 | mes "You have something much"; |
---|
1386 | mes "more important to do, so"; |
---|
1387 | mes "let me send you back to town..."; |
---|
1388 | close2; |
---|
1389 | warp "payon",164,58; |
---|
1390 | end; |
---|
1391 | } |
---|
1392 | mes "[Beeryu]"; |
---|
1393 | mes "Try not to bother the"; |
---|
1394 | mes "Taekwon Boys and Girls"; |
---|
1395 | mes "from completing their job"; |
---|
1396 | mes "change test while you're here."; |
---|
1397 | mes "Ah, and let me know when"; |
---|
1398 | mes "you want to return to Payon."; |
---|
1399 | next; |
---|
1400 | if (select("Return to Payon:Cancel") == 1) { |
---|
1401 | mes "[Beeryu]"; |
---|
1402 | mes "Be safe!"; |
---|
1403 | close2; |
---|
1404 | warp "payon",164,58; |
---|
1405 | end; |
---|
1406 | } |
---|
1407 | mes "[Beeryu]"; |
---|
1408 | mes "......"; |
---|
1409 | mes "........."; |
---|
1410 | close; |
---|
1411 | } |
---|
1412 | |
---|
1413 | job_star,161,33,0 script Cheehee#job_star 77,{ |
---|
1414 | if (Class == Job_Taekwon) { |
---|
1415 | if (STGL_Q == 6) { |
---|
1416 | mes "[Cheehee]"; |
---|
1417 | mes "Don't you think stars"; |
---|
1418 | mes "are so beautiful? They're"; |
---|
1419 | mes "like a pretty girl's teardrops"; |
---|
1420 | mes "shed on a background of "; |
---|
1421 | mes "pitch black night sky..."; |
---|
1422 | set STGL_Q,9; |
---|
1423 | close; |
---|
1424 | } |
---|
1425 | else if (STGL_Q == 9) { |
---|
1426 | if (rand(1,5) == 3) { |
---|
1427 | mes "[Cheehee]"; |
---|
1428 | mes "The test I have for"; |
---|
1429 | mes "you is simple. Just"; |
---|
1430 | mes "bring me the items on"; |
---|
1431 | mes "this earth that come from"; |
---|
1432 | mes "the stars. Bring me a piece of a star and the sand of a star..."; |
---|
1433 | set STGL_Q,10; |
---|
1434 | close; |
---|
1435 | } |
---|
1436 | mes "[Cheehee]"; |
---|
1437 | mes "......"; |
---|
1438 | mes "........."; |
---|
1439 | next; |
---|
1440 | mes "^3355FFCheehee stands mesmerized,"; |
---|
1441 | mes "staring at the sky as if she were counting each and every single"; |
---|
1442 | mes "shining star in the heavens.^000000"; |
---|
1443 | close; |
---|
1444 | } |
---|
1445 | else if (STGL_Q == 10) { |
---|
1446 | if (countitem(1000) > 0 && countitem(1001) > 0) { |
---|
1447 | mes "[Cheehee]"; |
---|
1448 | mes "Oh? You've brought exactly"; |
---|
1449 | mes "what I've asked you to bring."; |
---|
1450 | mes "Did you know that the spirit"; |
---|
1451 | mes "of the stars is used to enhance"; |
---|
1452 | mes "the armors and weapons that"; |
---|
1453 | mes "all adventurers use in battle?"; |
---|
1454 | next; |
---|
1455 | mes "[Cheehee]"; |
---|
1456 | mes "Stars are linked to the"; |
---|
1457 | mes "ideas of wishes, dreams,"; |
---|
1458 | mes "hopes, magic and romance."; |
---|
1459 | mes "Occasionally, the stars can"; |
---|
1460 | mes "be saddening, but it's a very"; |
---|
1461 | mes "sweet kind of sadness..."; |
---|
1462 | delitem 1000,1; //Star_Crumb |
---|
1463 | delitem 1001,1; //Sparkling_Dust |
---|
1464 | set STGL_Q,11; |
---|
1465 | close; |
---|
1466 | } |
---|
1467 | mes "[Cheehee]"; |
---|
1468 | mes "The pieces of the stars..."; |
---|
1469 | mes "The sand of the stars. If you"; |
---|
1470 | mes "didn't bring them with you, then you won't find them here. You'll"; |
---|
1471 | mes "have to go out and find them out there before bringing them to me."; |
---|
1472 | close2; |
---|
1473 | warp "payon",164,58; |
---|
1474 | end; |
---|
1475 | } |
---|
1476 | else if (STGL_Q == 11) { |
---|
1477 | mes "[Cheehee]"; |
---|
1478 | mes "Have you given any thought"; |
---|
1479 | mes "to the idea of feeling sadness"; |
---|
1480 | mes "from the stars? Perhaps this"; |
---|
1481 | mes "song will help you better"; |
---|
1482 | mes "understand, though I know"; |
---|
1483 | mes "you've already heard it..."; |
---|
1484 | next; |
---|
1485 | mes "[Cheehee]"; |
---|
1486 | mes "''^4D4DFFThe Sun shines on even days."; |
---|
1487 | mes "The Moon gleams on odd days."; |
---|
1488 | mes "The Stars sparkle on every"; |
---|
1489 | mes "fifth day without fail.^000000''"; |
---|
1490 | next; |
---|
1491 | mes "[Cheehee]"; |
---|
1492 | mes "''^4D4DFFA desert is a Solar place,"; |
---|
1493 | mes "its sands kissed by the Sun."; |
---|
1494 | mes "A marsh is a Lunar place,"; |
---|
1495 | mes "its wolves driven by the Moon."; |
---|
1496 | mes "A deep cave is a Stellar place, its knights enchanted by Stars.^000000''"; |
---|
1497 | next; |
---|
1498 | mes "[Cheehee]"; |
---|
1499 | mes "Now..."; |
---|
1500 | mes "Which of the following"; |
---|
1501 | mes "groups shines brightest"; |
---|
1502 | mes "with starlight?"; |
---|
1503 | next; |
---|
1504 | if (select("5th day, Deep Cave, Sand:10th day, Desert, Sand:25th day, Deep Cave, Knights:10th day, Desert, Knights") == 3) { |
---|
1505 | mes "[Cheehee]"; |
---|
1506 | mes "You're right. The combination"; |
---|
1507 | mes "of the 25th day, a multiple of"; |
---|
1508 | mes "the number 5, and the Knights"; |
---|
1509 | mes "stationed in Deep Caves shines"; |
---|
1510 | mes "brightest with starlight."; |
---|
1511 | next; |
---|
1512 | mes "[Cheehee]"; |
---|
1513 | mes "If you can understand"; |
---|
1514 | mes "the lyrics of this song,"; |
---|
1515 | mes "you should understand the"; |
---|
1516 | mes "essense of being a Taekwon"; |
---|
1517 | mes "Master. Remember that light"; |
---|
1518 | mes "comes in different shades..."; |
---|
1519 | next; |
---|
1520 | mes "[Cheehee]"; |
---|
1521 | mes "The glory of the sun, the"; |
---|
1522 | mes "gentle moonlight, and the"; |
---|
1523 | mes "melancholic twinkling of the"; |
---|
1524 | mes "stars are unique from each"; |
---|
1525 | mes "other. Please enjoy the starlight in this room as long as you like."; |
---|
1526 | next; |
---|
1527 | mes "[Cheehee]"; |
---|
1528 | mes "When you are ready,"; |
---|
1529 | mes "please go speak to"; |
---|
1530 | mes "Moogang again. I will"; |
---|
1531 | mes "let him know that you"; |
---|
1532 | mes "completed our testing."; |
---|
1533 | set STGL_Q,12; |
---|
1534 | close; |
---|
1535 | } |
---|
1536 | mes "[Cheehee]"; |
---|
1537 | mes "Hmm..."; |
---|
1538 | mes "You must learn more"; |
---|
1539 | mes "about the nature of the"; |
---|
1540 | mes "Stars. You must understand"; |
---|
1541 | mes "the cosmos if you are to"; |
---|
1542 | mes "become a Taekwon Master."; |
---|
1543 | next; |
---|
1544 | mes "[Cheehee]"; |
---|
1545 | mes "If you can understand"; |
---|
1546 | mes "the lyrics of this song,"; |
---|
1547 | mes "you should understand the"; |
---|
1548 | mes "essense of being a Taekwon"; |
---|
1549 | mes "Master. Remember that light"; |
---|
1550 | mes "comes in different shades..."; |
---|
1551 | next; |
---|
1552 | mes "[Cheehee]"; |
---|
1553 | mes "The glory of the sun, the"; |
---|
1554 | mes "gentle moonlight, and the"; |
---|
1555 | mes "melancholic twinkling of the"; |
---|
1556 | mes "stars are unique from each"; |
---|
1557 | mes "other. Please enjoy the starlight^FFFFFF ^000000 in this room as long as you like."; |
---|
1558 | next; |
---|
1559 | mes "[Cheehee]"; |
---|
1560 | mes "When you are ready,"; |
---|
1561 | mes "please go speak to"; |
---|
1562 | mes "Moogang again. I will"; |
---|
1563 | mes "let him know that you"; |
---|
1564 | mes "completed our testing."; |
---|
1565 | set STGL_Q,12; |
---|
1566 | close; |
---|
1567 | } |
---|
1568 | else if (STGL_Q == 12) { |
---|
1569 | mes "[Cheehee]"; |
---|
1570 | mes "Do you wish to"; |
---|
1571 | mes "leave the Star Room?"; |
---|
1572 | next; |
---|
1573 | if (select("Yes:No") == 1) { |
---|
1574 | mes "[Cheehee]"; |
---|
1575 | mes "Then, I shall guide"; |
---|
1576 | mes "you to Payon, the closest"; |
---|
1577 | mes "town. Farewell for now..."; |
---|
1578 | close2; |
---|
1579 | warp "payon",164,58; |
---|
1580 | end; |
---|
1581 | } |
---|
1582 | mes "[Cheehee]"; |
---|
1583 | mes "Please, take your"; |
---|
1584 | mes "time and enjoy the"; |
---|
1585 | mes "starlight in this room..."; |
---|
1586 | close; |
---|
1587 | } |
---|
1588 | mes "[Cheehee]"; |
---|
1589 | mes "The stars certainly"; |
---|
1590 | mes "are beautiful, aren't"; |
---|
1591 | mes "they? Would you like"; |
---|
1592 | mes "to return to Payon now?"; |
---|
1593 | next; |
---|
1594 | if (select("Yes:No") == 1) { |
---|
1595 | mes "[Cheehee]"; |
---|
1596 | mes "I see."; |
---|
1597 | mes "Let me guide"; |
---|
1598 | mes "you back to Payon."; |
---|
1599 | close2; |
---|
1600 | warp "payon",164,58; |
---|
1601 | end; |
---|
1602 | } |
---|
1603 | mes "[Cheehee]"; |
---|
1604 | mes "Please, take your"; |
---|
1605 | mes "time and enjoy the"; |
---|
1606 | mes "starlight in this room..."; |
---|
1607 | close; |
---|
1608 | } |
---|
1609 | mes "[Cheehee]"; |
---|
1610 | mes "The stars certainly"; |
---|
1611 | mes "are beautiful, aren't"; |
---|
1612 | mes "they? Would you like"; |
---|
1613 | mes "to return to Payon now?"; |
---|
1614 | next; |
---|
1615 | if (select("Yes:No") == 1) { |
---|
1616 | mes "[Cheehee]"; |
---|
1617 | mes "I see."; |
---|
1618 | mes "Let me guide"; |
---|
1619 | mes "you back to Payon."; |
---|
1620 | close2; |
---|
1621 | warp "payon",164,58; |
---|
1622 | end; |
---|
1623 | } |
---|
1624 | mes "[Cheehee]"; |
---|
1625 | mes "Please, take your"; |
---|
1626 | mes "time and enjoy the"; |
---|
1627 | mes "starlight in this room..."; |
---|
1628 | close; |
---|
1629 | } |
---|
1630 | |
---|
1631 | //============================================================ |
---|
1632 | // Old changelog |
---|
1633 | //============================================================ |
---|
1634 | //= A temp Star Gladiator Job Changer based on the kRO quest. |
---|
1635 | //= Quest info from RagnaInfo. |
---|
1636 | //= Sprites from kRO screenshots, bar two which I just had to guess at. |
---|
1637 | //= 1.0 Optimized, updated [Lupus] |
---|
1638 | //============================================================ |
---|