1 | //===== eAthena Script ======================================= |
---|
2 | //= 2005 Headgear Quests |
---|
3 | //===== By: ================================================== |
---|
4 | //= MasterOfMuppets |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.1 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena |
---|
9 | //===== Description: ========================================= |
---|
10 | // [Aegis Conversion] |
---|
11 | //= 2005 Headgears Official Quest. |
---|
12 | //===== Additional Comments: ================================= |
---|
13 | // 1.0 First version, converted from the official aegis script. [MasterOfMuppets] |
---|
14 | // 1.1 Updated item ids in the zealotus mask npc, now requires a whip [ultramage] |
---|
15 | //============================================================ |
---|
16 | |
---|
17 | yuno,222,116,3 script Kasis#LhzHat 851,{ |
---|
18 | |
---|
19 | if(countitem(519) > 49 && countitem(7031) > 49 && countitem(548) > 49 && countitem(539) > 49) |
---|
20 | { |
---|
21 | mes "[Kasis]"; |
---|
22 | mes "Milk, Cheese,"; |
---|
23 | mes "Old Frying Pans,"; |
---|
24 | mes "Pieces of Cake..."; |
---|
25 | mes "Th-that's everything"; |
---|
26 | mes "I need to make lunch for"; |
---|
27 | mes "my friends in the Factory!"; |
---|
28 | next; |
---|
29 | switch( select( "Well, I did promise to help you.", "What are you talking about?" ) ) |
---|
30 | { |
---|
31 | case 1: |
---|
32 | mes "[Kasis]"; |
---|
33 | mes "Finally, I can treat my"; |
---|
34 | mes "buddies to a wonderful"; |
---|
35 | mes "feast! They'll be so pleased!"; |
---|
36 | mes "Oh, I'd really like to repay you"; |
---|
37 | mes "somehow, but I'm not sure"; |
---|
38 | mes "what I could possibly give..."; |
---|
39 | next; |
---|
40 | mes "[Kasis]"; |
---|
41 | mes "Of course! Why don't"; |
---|
42 | mes "you treat yourself to"; |
---|
43 | mes "my specialty, Kasis's"; |
---|
44 | mes "Crunch Toast? It looks"; |
---|
45 | mes "simple, but it actually"; |
---|
46 | mes "requires great skill to make."; |
---|
47 | next; |
---|
48 | mes "[Kasis]"; |
---|
49 | mes "Here you are!"; |
---|
50 | mes "Please enjoy this and always"; |
---|
51 | mes "remember that breakfast is the"; |
---|
52 | mes "most important meal of the day!"; |
---|
53 | mes "Now, I better prepare those"; |
---|
54 | mes "lunches. Goodbye, my friend~"; |
---|
55 | delitem 519,50; |
---|
56 | delitem 7031,50; |
---|
57 | delitem 548,50; |
---|
58 | delitem 539,50; |
---|
59 | getitem 5107,1; |
---|
60 | close; |
---|
61 | break; |
---|
62 | |
---|
63 | case 2: |
---|
64 | mes "[Kasis]"; |
---|
65 | mes "Oh..."; |
---|
66 | mes "Oh, I'm so sorry."; |
---|
67 | mes "I must have confused"; |
---|
68 | mes "you with someone else."; |
---|
69 | next; |
---|
70 | mes "[Kasis]"; |
---|
71 | mes "You see, I've been asking"; |
---|
72 | mes "adventurers that have been"; |
---|
73 | mes "passing through to provide"; |
---|
74 | mes "me with food supplies so that"; |
---|
75 | mes "I can make lunch for my friends"; |
---|
76 | mes "that are working in Einbroch."; |
---|
77 | next; |
---|
78 | mes "[Kasis]"; |
---|
79 | mes "Yes..."; |
---|
80 | mes "So..."; |
---|
81 | mes "Sorry..."; |
---|
82 | mes "To... Bother you."; |
---|
83 | next; |
---|
84 | mes "^3355FFAs if entranced,"; |
---|
85 | mes "Kasis continues to"; |
---|
86 | mes "stare at the Milk, Cheese"; |
---|
87 | mes "Old Frying Pans and Pieces"; |
---|
88 | mes "of Cake that you are carrying.^000000"; |
---|
89 | next; |
---|
90 | switch( select( "You can have these if you want.", "Um, why are you staring?" ) ) |
---|
91 | { |
---|
92 | case 1: |
---|
93 | mes "[Kasis]"; |
---|
94 | mes "Really? Is it alright"; |
---|
95 | mes "with you for me to have"; |
---|
96 | mes "all of this Milk, Cheese,"; |
---|
97 | mes "Pieces of Cake and these"; |
---|
98 | mes "Old Frying Pans? Oh, bless"; |
---|
99 | mes "your kind heart, adventurer~"; |
---|
100 | next; |
---|
101 | mes "[Kasis]"; |
---|
102 | mes "Finally, I can treat my"; |
---|
103 | mes "buddies to a wonderful"; |
---|
104 | mes "feast! They'll be so pleased!"; |
---|
105 | mes "Oh, I'd really like to repay you"; |
---|
106 | mes "somehow, but I'm not sure"; |
---|
107 | mes "what I could possibly give..."; |
---|
108 | next; |
---|
109 | mes "[Kasis]"; |
---|
110 | mes "Of course! Why don't"; |
---|
111 | mes "you treat yourself to"; |
---|
112 | mes "my specialty, Kasis's"; |
---|
113 | mes "Crunch Toast? It looks"; |
---|
114 | mes "simple, but it actually"; |
---|
115 | mes "requires great skill to make."; |
---|
116 | next; |
---|
117 | mes "[Kasis]"; |
---|
118 | mes "Here you are!"; |
---|
119 | mes "Please enjoy this and always"; |
---|
120 | mes "remember that breakfast is the"; |
---|
121 | mes "most important meal of the day!"; |
---|
122 | mes "Now, I better prepare those"; |
---|
123 | mes "lunches. Goodbye, my friend~"; |
---|
124 | delitem 519,50; |
---|
125 | delitem 7031,50; |
---|
126 | delitem 548,50; |
---|
127 | delitem 539,50; |
---|
128 | getitem 5107,1; |
---|
129 | close; |
---|
130 | break; |
---|
131 | |
---|
132 | case 2: |
---|
133 | mes "[Kasis]"; |
---|
134 | mes "Oh, let me apologize"; |
---|
135 | mes "again. But I can't help"; |
---|
136 | mes "but admire the quality of"; |
---|
137 | mes "your goods. Er, you know,"; |
---|
138 | mes "the food you're carrying. I'm"; |
---|
139 | mes "a chef by trade, after all."; |
---|
140 | close; |
---|
141 | break; |
---|
142 | } |
---|
143 | break; |
---|
144 | } |
---|
145 | } |
---|
146 | mes "[Kasis]"; |
---|
147 | mes "I'm sorry, but we're closed"; |
---|
148 | mes "right now. Unfortunately, we"; |
---|
149 | mes "don't have any more bread"; |
---|
150 | mes "in stock. ^333333*Siiiiiiiiigh...*^000000"; |
---|
151 | next; |
---|
152 | switch( select( "Is something wrong?", "End Conversation." ) ) |
---|
153 | { |
---|
154 | case 1: |
---|
155 | mes "[Kasis]"; |
---|
156 | mes "Well, my current contract"; |
---|
157 | mes "with the company that's been"; |
---|
158 | mes "providing me with ingredients"; |
---|
159 | mes "has expired. Of course, it's"; |
---|
160 | mes "bad enough that I don't have"; |
---|
161 | mes "the food to run this business."; |
---|
162 | next; |
---|
163 | mes "[Kasis]"; |
---|
164 | mes "But I also feel like I'm"; |
---|
165 | mes "letting my friends down."; |
---|
166 | mes "You see, I've been sending"; |
---|
167 | mes "them lunch every day since"; |
---|
168 | mes "they've been working in the"; |
---|
169 | mes "Factory over in Einbroch."; |
---|
170 | next; |
---|
171 | mes "[Kasis]"; |
---|
172 | mes "I'm unable to make"; |
---|
173 | mes "lunch for them at the"; |
---|
174 | mes "moment, but I really want to"; |
---|
175 | mes "help my buddies, especially"; |
---|
176 | mes "since their financial situation"; |
---|
177 | mes "seems pretty bad right now."; |
---|
178 | next; |
---|
179 | switch( select( "Do you want me to help you?", "I'm so sorry to hear that." ) ) |
---|
180 | { |
---|
181 | case 1: |
---|
182 | mes "[Kasis]"; |
---|
183 | mes "Sure, I'm willing to accept"; |
---|
184 | mes "help from wherever I can find"; |
---|
185 | mes "it. If you would, I'd like you to bring me some food supplies"; |
---|
186 | mes "that I can use to make lunches"; |
---|
187 | mes "for my friends at the Factory."; |
---|
188 | next; |
---|
189 | mes "[Kasis]"; |
---|
190 | mes "Would you"; |
---|
191 | mes "please get me"; |
---|
192 | mes "^4D4DFF50 Milk^000000,"; |
---|
193 | mes "^4D4DFF50 Cheese^000000,"; |
---|
194 | mes "^4D4DFF50 Pieces of Cake^000000 and"; |
---|
195 | mes "^4D4DFF50 Old Frying Pans^000000?"; |
---|
196 | next; |
---|
197 | mes "[Kasis]"; |
---|
198 | mes "I'd really appreciate"; |
---|
199 | mes "your help. My friends seem"; |
---|
200 | mes "so depressed to be working"; |
---|
201 | mes "in the Factory and I want to"; |
---|
202 | mes "do all I can to cheer them up."; |
---|
203 | mes "Thanks for your kind offer~"; |
---|
204 | close; |
---|
205 | break; |
---|
206 | |
---|
207 | case 2: |
---|
208 | mes "[Kasis]"; |
---|
209 | mes "I'm trying to renew"; |
---|
210 | mes "my contract with the"; |
---|
211 | mes "company that's been"; |
---|
212 | mes "providing me with food"; |
---|
213 | mes "supplies, but it hasn't"; |
---|
214 | mes "been working out so far..."; |
---|
215 | next; |
---|
216 | mes "[Kasis]"; |
---|
217 | mes "I don't know what's"; |
---|
218 | mes "happening, but hopefully"; |
---|
219 | mes "I can find a new supplier"; |
---|
220 | mes "soon. There are my friends"; |
---|
221 | mes "to worry about, as well as"; |
---|
222 | mes "the sake of my business."; |
---|
223 | close; |
---|
224 | break; |
---|
225 | } |
---|
226 | break; |
---|
227 | |
---|
228 | case 2: |
---|
229 | mes "[Kasis]"; |
---|
230 | mes "Anyway, please come"; |
---|
231 | mes "again. Hopefully, we'll"; |
---|
232 | mes "have some good bread"; |
---|
233 | mes "in stock next time, okay?"; |
---|
234 | close; |
---|
235 | break; |
---|
236 | } |
---|
237 | |
---|
238 | } |
---|
239 | |
---|
240 | lighthalzen,143,68,0 script Strange Guy#LhzHat 47,{ |
---|
241 | |
---|
242 | if(DTHATQ == 0) |
---|
243 | { |
---|
244 | mes "[Strange Guy]"; |
---|
245 | mes "Wait! Don't say"; |
---|
246 | mes "anything! You must be"; |
---|
247 | mes "an adventurer from the"; |
---|
248 | mes "Rune-Midgarts Kingdom!"; |
---|
249 | mes "So... I'm right, aren't I?"; |
---|
250 | next; |
---|
251 | switch( select( "Who are you?", "How did you know?", "Ignore him." ) ) |
---|
252 | { |
---|
253 | case 1: |
---|
254 | mes "[Morris]"; |
---|
255 | mes "Allow me to"; |
---|
256 | mes "introduce myself."; |
---|
257 | mes "My name is Morris Poe,"; |
---|
258 | mes "detective of great acclaim"; |
---|
259 | mes "and world wide fame."; |
---|
260 | next; |
---|
261 | switch( select( "I've never heard of you.", "You're kidding me.", "I'm outta here." ) ) |
---|
262 | { |
---|
263 | case 1: |
---|
264 | mes "[Morris]"; |
---|
265 | mes "Morris Poe?"; |
---|
266 | mes "Renown detective?"; |
---|
267 | mes "Advocate for justice in"; |
---|
268 | mes "the Schwarzwald Republic?"; |
---|
269 | mes "Surely you recognize one"; |
---|
270 | mes "of my esteemed titles."; |
---|
271 | next; |
---|
272 | switch( select( "Nope, I don't know you.", "You're Morris Poe?!" ) ) |
---|
273 | { |
---|
274 | case 1: |
---|
275 | mes "[Morris]"; |
---|
276 | mes "You don't...?"; |
---|
277 | mes "But I'm a famous hero."; |
---|
278 | mes "Children look up to me"; |
---|
279 | mes "and wish they'd grow"; |
---|
280 | mes "up to be as smart as me."; |
---|
281 | next; |
---|
282 | mes "[Morris]"; |
---|
283 | mes "I don't get it."; |
---|
284 | mes "I'm famouser than"; |
---|
285 | mes "that. A household name"; |
---|
286 | mes "even. I've got a sterling"; |
---|
287 | mes "public image, how could"; |
---|
288 | mes "you never have heard of me...?"; |
---|
289 | close; |
---|
290 | break; |
---|
291 | |
---|
292 | case 2: |
---|
293 | break; |
---|
294 | } |
---|
295 | break; |
---|
296 | |
---|
297 | case 2: |
---|
298 | mes "[Morris]"; |
---|
299 | mes "Kidding? Ha ha!"; |
---|
300 | mes "Look at these keen,"; |
---|
301 | mes "deductive and deeply"; |
---|
302 | mes "analytical eyes and"; |
---|
303 | mes "tell me I'm joking."; |
---|
304 | next; |
---|
305 | switch( select( "Whoa, those ARE keen eyes.", "Okay. You're joking." ) ) |
---|
306 | { |
---|
307 | case 1: |
---|
308 | mes "[Morris]"; |
---|
309 | mes "Yes, this sharp,"; |
---|
310 | mes "penetrating, yet"; |
---|
311 | mes "highly intelligent gaze"; |
---|
312 | mes "belongs to the world"; |
---|
313 | mes "detective and crime"; |
---|
314 | mes "fighter, Morris Poe!"; |
---|
315 | next; |
---|
316 | switch( select( "I've never heard of you.", "Golly, Morris Poe?!" ) ) |
---|
317 | { |
---|
318 | case 1: |
---|
319 | mes "[Morris]"; |
---|
320 | mes "Never heard of...?"; |
---|
321 | mes "Impossible! If there are"; |
---|
322 | mes "two things I hate more"; |
---|
323 | mes "than crime, they would be"; |
---|
324 | mes "dishonesty... And rejection"; |
---|
325 | mes "from beautiful women."; |
---|
326 | next; |
---|
327 | mes "[Morris]"; |
---|
328 | mes "When you get over your"; |
---|
329 | mes "sense of pride and gain"; |
---|
330 | mes "a little maturity, then we"; |
---|
331 | mes "might share an actual"; |
---|
332 | mes "conversation. Until then,"; |
---|
333 | mes "you'll just have to grow up."; |
---|
334 | close; |
---|
335 | break; |
---|
336 | |
---|
337 | case 2: |
---|
338 | break; |
---|
339 | } |
---|
340 | break; |
---|
341 | |
---|
342 | case 2: |
---|
343 | mes "[Morris]"; |
---|
344 | mes "Hahahahahaah--Huh."; |
---|
345 | mes "If there are two things"; |
---|
346 | mes "I hate more than criminals,"; |
---|
347 | mes "they would be sarcasm..."; |
---|
348 | mes "And receiving fake phone"; |
---|
349 | mes "numbers from really cute girls."; |
---|
350 | next; |
---|
351 | switch( select( "Yeah, you're no Don Juan.", "I'm... I'm sorry." ) ) |
---|
352 | { |
---|
353 | case 1: |
---|
354 | mes "[Morris]"; |
---|
355 | mes "Wah...!"; |
---|
356 | mes "Did you just--?!"; |
---|
357 | mes "Ugh, you're the worst"; |
---|
358 | mes "type of person, you know that?"; |
---|
359 | emotion e_omg; |
---|
360 | close; |
---|
361 | break; |
---|
362 | |
---|
363 | case 2: |
---|
364 | mes "[Morris]"; |
---|
365 | mes "I think it's too late to"; |
---|
366 | mes "apologize. Why would you"; |
---|
367 | mes "treat someone of my stature"; |
---|
368 | mes "with such caustic sarcasm?!"; |
---|
369 | mes "What excuse could possibly"; |
---|
370 | mes "exonerate your behavior?!"; |
---|
371 | next; |
---|
372 | switch( select( "I... I was intimidated...", "It's how I treat all losers." ) ) |
---|
373 | { |
---|
374 | case 1: |
---|
375 | mes "[Morris]"; |
---|
376 | mes "Of course: intense feelings"; |
---|
377 | mes "of awe and fear of my vast"; |
---|
378 | mes "intellect would result in that"; |
---|
379 | mes "kind of deviant behavior. I'll"; |
---|
380 | mes "have to forgive you, I suppose."; |
---|
381 | next; |
---|
382 | break; |
---|
383 | |
---|
384 | case 2: |
---|
385 | mes "[Morris]"; |
---|
386 | mes "What...?!"; |
---|
387 | mes "Morris Poe, a loser?"; |
---|
388 | mes "Such defamatory remarks"; |
---|
389 | mes "cannot be forgiven, no"; |
---|
390 | mes "matter how unfounded"; |
---|
391 | mes "and groundless they are!"; |
---|
392 | emotion e_omg; |
---|
393 | close; |
---|
394 | break; |
---|
395 | } |
---|
396 | break; |
---|
397 | } |
---|
398 | break; |
---|
399 | } |
---|
400 | break; |
---|
401 | |
---|
402 | case 3: |
---|
403 | mes "[Morris]"; |
---|
404 | mes "Hahaha, oh, that's"; |
---|
405 | mes "funny. Wait. You're..."; |
---|
406 | mes "You're really leaving."; |
---|
407 | mes "N-no, come baaaack!"; |
---|
408 | close; |
---|
409 | break; |
---|
410 | } |
---|
411 | break; |
---|
412 | |
---|
413 | case 2: |
---|
414 | mes "[Strange Guy]"; |
---|
415 | mes "How did I know?"; |
---|
416 | mes "Elementary, my friend."; |
---|
417 | mes "There was an abundance"; |
---|
418 | mes "of clues for me to make"; |
---|
419 | mes "that sort of simple deduction."; |
---|
420 | close; |
---|
421 | break; |
---|
422 | |
---|
423 | case 3: |
---|
424 | mes "[Strange Guy]"; |
---|
425 | mes "Hello...?"; |
---|
426 | mes "..............."; |
---|
427 | mes "Oh, this is embarassing."; |
---|
428 | mes "I can't believe I'm getting"; |
---|
429 | mes "the silent treatment..."; |
---|
430 | close; |
---|
431 | break; |
---|
432 | } |
---|
433 | |
---|
434 | mes "[Morris]"; |
---|
435 | mes "Yes, I know it's"; |
---|
436 | mes "difficult to believe that"; |
---|
437 | mes "you would be fortunate"; |
---|
438 | mes "enough to stand in the"; |
---|
439 | mes "presence of genius. Now,"; |
---|
440 | mes "you must be wondering..."; |
---|
441 | next; |
---|
442 | menu "Um, wondering what?",-; |
---|
443 | mes "[Morris]"; |
---|
444 | mes "You're wondering,"; |
---|
445 | mes "\"How in the world"; |
---|
446 | mes "can I be as brilliant"; |
---|
447 | mes "as Morris Poe, the"; |
---|
448 | mes "genius detective?\""; |
---|
449 | next; |
---|
450 | mes "[Morris]"; |
---|
451 | mes "First, I think it's fair"; |
---|
452 | mes "to let you know that it's"; |
---|
453 | mes "an impossible dream. Men like"; |
---|
454 | mes "myself only arise in this world"; |
---|
455 | mes "perhaps once every generation."; |
---|
456 | mes "I'm sorry, but don't give up!"; |
---|
457 | next; |
---|
458 | mes "[Morris]"; |
---|
459 | mes "Now, you can try to reach"; |
---|
460 | mes "a level of intelligence that"; |
---|
461 | mes "is comparable to my own by"; |
---|
462 | mes "joining the Young Detective's"; |
---|
463 | mes "Club. To become a member, you just need one essential article."; |
---|
464 | next; |
---|
465 | mes "[Morris]"; |
---|
466 | mes "Yes, you will need the"; |
---|
467 | mes "^0000FFRenown Detective's Cap^000000!"; |
---|
468 | mes "Luckily, I'm giving them"; |
---|
469 | mes "away for a relatively small"; |
---|
470 | mes "material cost, but you must"; |
---|
471 | mes "hurry while supplies last."; |
---|
472 | next; |
---|
473 | mes "[Morris]"; |
---|
474 | mes "Simply bring me"; |
---|
475 | mes "^0000FF10 Magnifiers^000000,"; |
---|
476 | mes "^0000FF1887 Tassels^000000,"; |
---|
477 | mes "^0000FF1 Slotted Bucket Hat^000000"; |
---|
478 | mes "and ^0000FF1,887 zeny^000000. That's all!"; |
---|
479 | next; |
---|
480 | mes "[Morris]"; |
---|
481 | mes "But first, let me warn you"; |
---|
482 | mes "not to bring a ^FF0000slotted Bucket"; |
---|
483 | mes "Hat with a card compounded to"; |
---|
484 | mes "it, or any upgraded Bucket Hats. I'm not responsible for any"; |
---|
485 | mes "loss resulting from that."; |
---|
486 | next; |
---|
487 | mes "[Morris]"; |
---|
488 | mes "Hurry and bring me"; |
---|
489 | mes "those items! There are"; |
---|
490 | mes "only 20,000,000 Renown"; |
---|
491 | mes "Detective Caps left!"; |
---|
492 | mes "Once they're gone,"; |
---|
493 | mes "they'll be extinct!"; |
---|
494 | set DTHATQ,1; |
---|
495 | close; |
---|
496 | } |
---|
497 | else if(DTHATQ == 1) |
---|
498 | { |
---|
499 | mes "[Morris]"; |
---|
500 | mes "So, did you want to"; |
---|
501 | mes "buy, er, receive this"; |
---|
502 | mes "Renown Detective's Cap"; |
---|
503 | mes "and become an honored"; |
---|
504 | mes "member of the Young"; |
---|
505 | mes "Detective's Club?"; |
---|
506 | next; |
---|
507 | mes "[Morris]"; |
---|
508 | mes "Remember, make sure"; |
---|
509 | mes "that you don't bring any"; |
---|
510 | mes "^FF0000slotted Bucket Hats that"; |
---|
511 | mes "have been upgraded or have"; |
---|
512 | mes "cards compounded to them, or"; |
---|
513 | mes "you'll lose those enhancements^000000."; |
---|
514 | next; |
---|
515 | mes "[Morris]"; |
---|
516 | mes "Now, if you have only"; |
---|
517 | mes "1 Bucket Hat, we can begin."; |
---|
518 | mes "Young Detective's Club... Salute! "; |
---|
519 | next; |
---|
520 | switch( select( "Salute.", "Whatever..." ) ) |
---|
521 | { |
---|
522 | case 1: |
---|
523 | mes "[Morris]"; |
---|
524 | mes "Great, done like a pro!"; |
---|
525 | mes "Now, I need to check your"; |
---|
526 | mes "fee--I mean qualifications."; |
---|
527 | mes "Let's see now, I need to"; |
---|
528 | mes "look through your Inventory..."; |
---|
529 | next; |
---|
530 | set @lhzhatfailed,0; |
---|
531 | if(countitem(611) < 10) |
---|
532 | { |
---|
533 | mes "[Morris]"; |
---|
534 | mes "Wait. You don't have"; |
---|
535 | mes "enough Magnifiers. You"; |
---|
536 | mes "do want to join this club,"; |
---|
537 | mes "don't you? Did you need to"; |
---|
538 | mes "hear the requirements again?"; |
---|
539 | set @lhzhatfailed,1; |
---|
540 | next; |
---|
541 | } |
---|
542 | if(countitem(7301) < 1887 && @lhzhatfailed == 0) |
---|
543 | { |
---|
544 | mes "[Morris]"; |
---|
545 | mes "Magnifiers. Check."; |
---|
546 | mes "Not enough Tassels? Check."; |
---|
547 | set @lhzhatfailed,1; |
---|
548 | next; |
---|
549 | } |
---|
550 | if(countitem(5120) < 1 && @lhzhatfailed == 0) |
---|
551 | { |
---|
552 | mes "[Morris]"; |
---|
553 | mes "Magnifiers. Check."; |
---|
554 | mes "Tassels... Check."; |
---|
555 | mes "Hm. You're missing"; |
---|
556 | mes "the slotted Bucket Hat."; |
---|
557 | mes "You were so close..."; |
---|
558 | set @lhzhatfailed,1; |
---|
559 | next; |
---|
560 | } |
---|
561 | if(Zeny < 1887 && failed == 0) |
---|
562 | { |
---|
563 | mes "[Morris]"; |
---|
564 | mes "Magnifiers. Check."; |
---|
565 | mes "Tassels... Check."; |
---|
566 | mes "Slotted Bucket Hat. Got it."; |
---|
567 | mes "Hey. Where's the zeny?!"; |
---|
568 | mes "That's the most important,"; |
---|
569 | mes "er, qualification of all!"; |
---|
570 | set @lhzhatfailed,1; |
---|
571 | next; |
---|
572 | } |
---|
573 | |
---|
574 | if(@lhzhatfailed == 1) |
---|
575 | { |
---|
576 | mes "[Morris]"; |
---|
577 | mes "^333333*Sigh*^000000 You need"; |
---|
578 | mes "^0000FF10 Magnifiers^000000,"; |
---|
579 | mes "^0000FF1887 Tassels^000000,"; |
---|
580 | mes "^0000FF1 Slotted Bucket Hat^000000"; |
---|
581 | mes "and ^0000FF1,887 zeny^000000. That's all!"; |
---|
582 | emotion e_an; |
---|
583 | next; |
---|
584 | mes "[Morris]"; |
---|
585 | mes "Now, remember everything"; |
---|
586 | mes "that you need this time, okay?"; |
---|
587 | mes "I'll be waiting to welcome"; |
---|
588 | mes "you into the elite ranks of "; |
---|
589 | mes "the Young Detective's Club."; |
---|
590 | close; |
---|
591 | } |
---|
592 | mes "[Morris]"; |
---|
593 | mes "Magnifiers. Check."; |
---|
594 | mes "Tassels... Check."; |
---|
595 | mes "Slotted Bucket Hat. Got it."; |
---|
596 | mes "Aaaand zeny. Heh heh. Perfect."; |
---|
597 | next; |
---|
598 | mes "[Morris]"; |
---|
599 | mes "Great, that's everything!"; |
---|
600 | mes "Welcome to the club! Here's"; |
---|
601 | mes "your Renown Detective's Cap,"; |
---|
602 | mes "so wear it with pride as you"; |
---|
603 | mes "take an active part in our club's"; |
---|
604 | mes "activities and promotion!"; |
---|
605 | delitem 7301,1887; |
---|
606 | delitem 5120,1; |
---|
607 | delitem 611,10; |
---|
608 | set Zeny, Zeny - 1887; |
---|
609 | set DTHATQ,2; |
---|
610 | getitem 5108,1; |
---|
611 | next; |
---|
612 | switch( select( "Wait, promotion?", "Hooray!" ) ) |
---|
613 | { |
---|
614 | case 1: |
---|
615 | mes "[Morris]"; |
---|
616 | mes "Of course, isn't it obvious?"; |
---|
617 | mes "As a member, one of your duties"; |
---|
618 | mes "will be to sing accolades of this club so that more members"; |
---|
619 | mes "will join and earn their own"; |
---|
620 | mes "Renown Detective's Caps."; |
---|
621 | next; |
---|
622 | mes "[Morris]"; |
---|
623 | mes "Alright, scurry off"; |
---|
624 | mes "now and proudly display"; |
---|
625 | mes "your new, rakishly stylish"; |
---|
626 | mes "Renown Detective's Cap"; |
---|
627 | mes "to all of your friends!"; |
---|
628 | close; |
---|
629 | break; |
---|
630 | |
---|
631 | case 2: |
---|
632 | mes "[Morris]"; |
---|
633 | mes "Alright, scurry off"; |
---|
634 | mes "now and proudly display"; |
---|
635 | mes "your new, rakishly stylish"; |
---|
636 | mes "Renown Detective's Cap"; |
---|
637 | mes "to all of your friends!"; |
---|
638 | close; |
---|
639 | break; |
---|
640 | } |
---|
641 | break; |
---|
642 | |
---|
643 | case 2: |
---|
644 | mes "[Morris]"; |
---|
645 | mes "Huh. You just failed"; |
---|
646 | mes "the \"Test of Respect.\""; |
---|
647 | mes "You don't deserve the"; |
---|
648 | mes "honor of wearing the"; |
---|
649 | mes "Renowned Detective's Cap!"; |
---|
650 | close; |
---|
651 | break; |
---|
652 | } |
---|
653 | } |
---|
654 | else if(DTHATQ == 2) |
---|
655 | { |
---|
656 | mes "[Morris]"; |
---|
657 | mes "Have you come to me"; |
---|
658 | mes "in order to obtain another"; |
---|
659 | mes "Renown Detective's Cap?"; |
---|
660 | mes "I realize that such a stylish"; |
---|
661 | mes "headgear is in high demand."; |
---|
662 | next; |
---|
663 | mes "[Morris]"; |
---|
664 | mes "Remember, make sure"; |
---|
665 | mes "that you don't bring any"; |
---|
666 | mes "^FF0000slotted Bucket Hats that"; |
---|
667 | mes "have been upgraded or have"; |
---|
668 | mes "cards compounded to them, or"; |
---|
669 | mes "you'll lose those enhancements^000000."; |
---|
670 | next; |
---|
671 | mes "[Morris]"; |
---|
672 | mes "As a proud member of"; |
---|
673 | mes "the Young Detective's Club,"; |
---|
674 | mes "did you bring everything"; |
---|
675 | mes "you need in order to earn"; |
---|
676 | mes "a Renown Detective's Cap?"; |
---|
677 | next; |
---|
678 | switch( select( "I'm not sure~", "Sure!" ) ) |
---|
679 | { |
---|
680 | case 1: |
---|
681 | mes "[Morris]"; |
---|
682 | mes "What...?! Every good"; |
---|
683 | mes "detective must have a"; |
---|
684 | mes "photographic memory"; |
---|
685 | mes "and be able to recall"; |
---|
686 | mes "minute details in order"; |
---|
687 | mes "to crack the case."; |
---|
688 | emotion e_sob; |
---|
689 | next; |
---|
690 | mes "[Morris]"; |
---|
691 | mes "Remember..."; |
---|
692 | mes "^0000FF10 Magnifiers^000000,"; |
---|
693 | mes "^0000FF1887 Tassels^000000,"; |
---|
694 | mes "^0000FF1 Slotted Bucket Hat^000000"; |
---|
695 | mes "and ^0000FF1,887 zeny^000000. Okay?"; |
---|
696 | close; |
---|
697 | break; |
---|
698 | |
---|
699 | case 2: |
---|
700 | mes "[Morris]"; |
---|
701 | mes "Great!"; |
---|
702 | mes "Now let me just"; |
---|
703 | mes "check to see if you"; |
---|
704 | mes "brought everything..."; |
---|
705 | next; |
---|
706 | set @lhzhatfailed,0; |
---|
707 | if(countitem(611) < 10) |
---|
708 | { |
---|
709 | mes "[Morris]"; |
---|
710 | mes "Hmm, you don't have"; |
---|
711 | mes "enough Magnifiers? But"; |
---|
712 | mes "those are essential tools"; |
---|
713 | mes "for sleuthing. Come now,"; |
---|
714 | mes "hurry back with them!"; |
---|
715 | set @lhzhatfailed,1; |
---|
716 | next; |
---|
717 | } |
---|
718 | if(countitem(7301) < 1887 && @lhzhatfailed == 0) |
---|
719 | { |
---|
720 | mes "[Morris]"; |
---|
721 | mes "Magnifiers. Check."; |
---|
722 | mes "Not enough Tassels? Check."; |
---|
723 | set @lhzhatfailed,1; |
---|
724 | next; |
---|
725 | } |
---|
726 | if(countitem(5120) < 1 && @lhzhatfailed == 0) |
---|
727 | { |
---|
728 | mes "[Morris]"; |
---|
729 | mes "Magnifiers. Check."; |
---|
730 | mes "Tassels... Check."; |
---|
731 | mes "Hm. You're missing"; |
---|
732 | mes "the slotted Bucket Hat."; |
---|
733 | mes "You were so close..."; |
---|
734 | set @lhzhatfailed,1; |
---|
735 | next; |
---|
736 | } |
---|
737 | if(Zeny < 1887 && failed == 0) |
---|
738 | { |
---|
739 | mes "[Morris]"; |
---|
740 | mes "Magnifiers. Check."; |
---|
741 | mes "Tassels... Check."; |
---|
742 | mes "Slotted Bucket Hat. Got it."; |
---|
743 | mes "Hey. Where's the zeny?!"; |
---|
744 | mes "That's the most important,"; |
---|
745 | mes "er, qualification of all!"; |
---|
746 | set @lhzhatfailed,1; |
---|
747 | next; |
---|
748 | } |
---|
749 | |
---|
750 | if(@lhzhatfailed == 1) |
---|
751 | { |
---|
752 | mes "[Morris]"; |
---|
753 | mes "Remember..."; |
---|
754 | mes "^0000FF10 Magnifiers^000000,"; |
---|
755 | mes "^0000FF1887 Tassels^000000,"; |
---|
756 | mes "^0000FF1 Slotted Bucket Hat^000000"; |
---|
757 | mes "and ^0000FF1,887 zeny^000000. Okay?"; |
---|
758 | emotion e_an; |
---|
759 | close; |
---|
760 | } set @lhzhatfailed,0; |
---|
761 | if(countitem(611) < 10) |
---|
762 | { |
---|
763 | mes "[Morris]"; |
---|
764 | mes "Hmm, you don't have"; |
---|
765 | mes "enough Magnifiers? But"; |
---|
766 | mes "those are essential tools"; |
---|
767 | mes "for sleuthing. Come now,"; |
---|
768 | mes "hurry back with them!"; |
---|
769 | set @lhzhatfailed,1; |
---|
770 | next; |
---|
771 | } |
---|
772 | if(countitem(7301) < 1887 && @lhzhatfailed == 0) |
---|
773 | { |
---|
774 | mes "[Morris]"; |
---|
775 | mes "Magnifiers. Check."; |
---|
776 | mes "Not enough Tassels? Check."; |
---|
777 | set @lhzhatfailed,1; |
---|
778 | next; |
---|
779 | } |
---|
780 | if(countitem(5120) < 1 && @lhzhatfailed == 0) |
---|
781 | { |
---|
782 | mes "[Morris]"; |
---|
783 | mes "Magnifiers. Check."; |
---|
784 | mes "Tassels... Check."; |
---|
785 | mes "Hm. You're missing"; |
---|
786 | mes "the slotted Bucket Hat."; |
---|
787 | mes "You were so close..."; |
---|
788 | set @lhzhatfailed,1; |
---|
789 | next; |
---|
790 | } |
---|
791 | if(Zeny < 1887 && failed == 0) |
---|
792 | { |
---|
793 | mes "[Morris]"; |
---|
794 | mes "Magnifiers. Check."; |
---|
795 | mes "Tassels... Check."; |
---|
796 | mes "Slotted Bucket Hat. Got it."; |
---|
797 | mes "Hey. Where's the zeny?!"; |
---|
798 | mes "That's the most important,"; |
---|
799 | mes "er, qualification of all!"; |
---|
800 | set @lhzhatfailed,1; |
---|
801 | next; |
---|
802 | } |
---|
803 | |
---|
804 | if(@lhzhatfailed == 1) |
---|
805 | { |
---|
806 | mes "[Morris]"; |
---|
807 | mes "Remember..."; |
---|
808 | mes "^0000FF10 Magnifiers^000000,"; |
---|
809 | mes "^0000FF1887 Tassels^000000,"; |
---|
810 | mes "^0000FF1 Slotted Bucket Hat^000000"; |
---|
811 | mes "and ^0000FF1,887 zeny^000000. Okay?"; |
---|
812 | emotion e_an; |
---|
813 | close; |
---|
814 | } |
---|
815 | mes "[Morris]"; |
---|
816 | mes "Magnifiers. Check."; |
---|
817 | mes "Tassels... Check."; |
---|
818 | mes "Slotted Bucket Hat. Got it."; |
---|
819 | mes "Aaaand zeny. Heh heh. Perfect."; |
---|
820 | next; |
---|
821 | mes "[Morris]"; |
---|
822 | mes "Great! You've just qualified"; |
---|
823 | mes "to own yet another Renowned"; |
---|
824 | mes "Detective's Cap. Congratulations! Now, let me collect all of these"; |
---|
825 | mes "goods and zeny from you..."; |
---|
826 | delitem 7301,1887; |
---|
827 | delitem 5120,1; |
---|
828 | delitem 611,10; |
---|
829 | set Zeny, Zeny - 1887; |
---|
830 | set DTHATQ,2; |
---|
831 | getitem 5108,1; |
---|
832 | next; |
---|
833 | mes "[Morris]"; |
---|
834 | mes "Hahaha! It's what"; |
---|
835 | mes "I expect from one of"; |
---|
836 | mes "our Junior Gold Members!"; |
---|
837 | mes "How does it feel like to be"; |
---|
838 | mes "the cream of the cream of"; |
---|
839 | mes "the crop? Great, isn't it?"; |
---|
840 | close; |
---|
841 | break; |
---|
842 | } |
---|
843 | } |
---|
844 | |
---|
845 | } |
---|
846 | |
---|
847 | lighthalzen,360,313,3 script Boy#LhzHat 706,{ |
---|
848 | |
---|
849 | mes "[Boy]"; |
---|
850 | mes "Hello, mister!"; |
---|
851 | mes "Um, would you do"; |
---|
852 | mes "me a favor, please?"; |
---|
853 | next; |
---|
854 | if(countitem(526) && countitem(7270) && countitem(941) && countitem(10004)) |
---|
855 | { |
---|
856 | mes "[Boy]"; |
---|
857 | mes "Oh! You brought me"; |
---|
858 | mes "some Royal Jelly to"; |
---|
859 | mes "eat, as well as everything"; |
---|
860 | mes "I need to make a Baby Pacifier."; |
---|
861 | mes "Okay, let me get started on that right away. Just a moment..."; |
---|
862 | next; |
---|
863 | mes "..."; |
---|
864 | mes "......"; |
---|
865 | next; |
---|
866 | mes "[Boy]"; |
---|
867 | mes "Damn."; |
---|
868 | mes "That Royal Jelly"; |
---|
869 | mes "was frickin' delicious!"; |
---|
870 | mes "Now I can make your"; |
---|
871 | mes "Baby Pacifier. Let's see"; |
---|
872 | mes "here. Ah, here we go..."; |
---|
873 | delitem 526,1; |
---|
874 | next; |
---|
875 | mes "[Boy]"; |
---|
876 | mes "It's done!"; |
---|
877 | mes "Now, you're the"; |
---|
878 | mes "proud owner of your"; |
---|
879 | mes "very own Baby Pacifier!"; |
---|
880 | mes "I hope you're happy with"; |
---|
881 | mes "yourself. Travel safe, okay?"; |
---|
882 | delitem 7270,1; |
---|
883 | delitem 941,1; |
---|
884 | delitem 10004,1; |
---|
885 | getitem 5110,1; |
---|
886 | close; |
---|
887 | } |
---|
888 | switch( select( "What do you need?", "Sorry, kid..." ) ) |
---|
889 | { |
---|
890 | case 1: |
---|
891 | mes "[Boy]"; |
---|
892 | mes "Well, my mom has been"; |
---|
893 | mes "sick recently, so both of"; |
---|
894 | mes "us haven't been able to eat"; |
---|
895 | mes "for the past few days. But"; |
---|
896 | mes "if she doesn't eat, how does"; |
---|
897 | mes "she expect to get better?"; |
---|
898 | emotion e_sob; |
---|
899 | next; |
---|
900 | mes "[Boy]"; |
---|
901 | mes "So I guess what I'm"; |
---|
902 | mes "asking is, would you be"; |
---|
903 | mes "able to spare some food?"; |
---|
904 | next; |
---|
905 | switch( select( "Help him.", "Refuse to help." ) ) |
---|
906 | { |
---|
907 | case 1: |
---|
908 | if(!countitem(526)) |
---|
909 | { |
---|
910 | mes "[Boy]"; |
---|
911 | mes "If you would, do you think"; |
---|
912 | mes "you can get some Royal Jelly"; |
---|
913 | mes "that I can give to my mom? The old lady next door says that it's"; |
---|
914 | mes "really nutritious and helps you get better faster if you're sick."; |
---|
915 | next; |
---|
916 | mes "[Boy]"; |
---|
917 | mes "My mom would be mad"; |
---|
918 | mes "at me if she found out"; |
---|
919 | mes "I was begging for it, but"; |
---|
920 | mes "Royal Jelly is too expensive"; |
---|
921 | mes "for me to get without any help!"; |
---|
922 | close; |
---|
923 | } |
---|
924 | mes "[Boy]"; |
---|
925 | mes "Oh, would it be alright"; |
---|
926 | mes "if I have this Royal Jelly?"; |
---|
927 | mes "It would really help my mom"; |
---|
928 | mes "feel better. Thanks so much~"; |
---|
929 | delitem 526,1; |
---|
930 | next; |
---|
931 | mes "[Boy]"; |
---|
932 | mes "Hey, to pay you back, why"; |
---|
933 | mes "don't I make a Baby Pacifier"; |
---|
934 | mes "for you? I learned how to make"; |
---|
935 | mes "one when my baby brother was"; |
---|
936 | mes "born. But first, I'll need some"; |
---|
937 | mes "materials to put it together..."; |
---|
938 | next; |
---|
939 | mes "[Boy]"; |
---|
940 | mes "Would you"; |
---|
941 | mes "please bring"; |
---|
942 | mes "^3131FF1 Nursing Bottle^000000,"; |
---|
943 | mes "^3131FF1 Nose Ring^000000 and"; |
---|
944 | mes "^3131FF1 Pacifier^000000? Oh, and one"; |
---|
945 | mes "more ^3131FFRoyal Jelly^000000 for me~"; |
---|
946 | close; |
---|
947 | break; |
---|
948 | |
---|
949 | case 2: |
---|
950 | mes "[Boy]"; |
---|
951 | mes "Oh... Um, that's"; |
---|
952 | mes "alright. Maybe I was"; |
---|
953 | mes "asking too much from"; |
---|
954 | mes "you. I mean, it's true"; |
---|
955 | mes "that you barely know me..."; |
---|
956 | emotion e_sob; |
---|
957 | close; |
---|
958 | break; |
---|
959 | } |
---|
960 | break; |
---|
961 | |
---|
962 | case 2: |
---|
963 | mes "[Boy]"; |
---|
964 | mes "Th-that's okay."; |
---|
965 | mes "I guess you must"; |
---|
966 | mes "be so busy that you"; |
---|
967 | mes "don't even have the"; |
---|
968 | mes "time to listen to some"; |
---|
969 | mes "little boy's problems..."; |
---|
970 | emotion e_sob; |
---|
971 | close; |
---|
972 | break; |
---|
973 | } |
---|
974 | |
---|
975 | } |
---|
976 | |
---|
977 | einbech,70,222,5 script Mater#LhzHat 91,{ |
---|
978 | |
---|
979 | if(countitem(983) && countitem(7267) > 998 && countitem(749) && Zeny > 49999) |
---|
980 | { |
---|
981 | mes "[Mater]"; |
---|
982 | mes "Oh, hello, what's this?"; |
---|
983 | mes "You're carrying 1 Black"; |
---|
984 | mes "Dyestuffs, 1 Frozen Rose,"; |
---|
985 | mes "999 Tiger Panties and even"; |
---|
986 | mes "50,000 zeny with you. That's"; |
---|
987 | mes "enough to make a Winter Hat..."; |
---|
988 | next; |
---|
989 | mes "[Mater]"; |
---|
990 | mes "Um, would you mind letting"; |
---|
991 | mes "me have those items so that"; |
---|
992 | mes "I can make a Winter Hat?"; |
---|
993 | mes "I'd never be able to gather"; |
---|
994 | mes "those things on my own..."; |
---|
995 | next; |
---|
996 | switch( select( "Let her have the items.", "Don't give her the items." ) ) |
---|
997 | { |
---|
998 | case 1: |
---|
999 | mes "[Mater]"; |
---|
1000 | mes "Oh, thank you so much!"; |
---|
1001 | mes "I've always wanted to make"; |
---|
1002 | mes "this hat and try it on, even"; |
---|
1003 | mes "if it's just once. But don't"; |
---|
1004 | mes "worry, I'll give it to you~"; |
---|
1005 | mes "Now please next; a moment..."; |
---|
1006 | next; |
---|
1007 | mes "[Mater]"; |
---|
1008 | mes "Let's see..."; |
---|
1009 | mes "I've got to fold"; |
---|
1010 | mes "the rose like this..."; |
---|
1011 | mes "Be careful with the dye..."; |
---|
1012 | mes "Where did I put all those"; |
---|
1013 | mes "pan--Oh, here we are."; |
---|
1014 | next; |
---|
1015 | mes "[Mater]"; |
---|
1016 | mes "^333333*Whew!*^000000"; |
---|
1017 | mes "Finally, it's done!"; |
---|
1018 | mes "Now, if you don't mind,"; |
---|
1019 | mes "let me try this hat on"; |
---|
1020 | mes "for just a little while."; |
---|
1021 | delitem 983,1; |
---|
1022 | delitem 7267,999; |
---|
1023 | delitem 749,1; |
---|
1024 | set Zeny,Zeny - 50000; |
---|
1025 | getitem 5115,1; |
---|
1026 | next; |
---|
1027 | mes "..."; |
---|
1028 | mes "......"; |
---|
1029 | next; |
---|
1030 | mes "[Mater]"; |
---|
1031 | mes "Ahhhhhh~"; |
---|
1032 | mes "It just feels..."; |
---|
1033 | mes "I felt so free~"; |
---|
1034 | mes "It was everything"; |
---|
1035 | mes "I imagined it to be."; |
---|
1036 | next; |
---|
1037 | mes "[Mater]"; |
---|
1038 | mes "Here, please take"; |
---|
1039 | mes "this Winter Hat. I really"; |
---|
1040 | mes "hope that you'll enjoy it"; |
---|
1041 | mes "as much as I do. Well then,"; |
---|
1042 | mes "be safe in your travels, okay?"; |
---|
1043 | close; |
---|
1044 | break; |
---|
1045 | |
---|
1046 | case 2: |
---|
1047 | mes "[Mater]"; |
---|
1048 | mes "I'm sorry, I know that"; |
---|
1049 | mes "I was asking a pretty big"; |
---|
1050 | mes "favor from someone I just"; |
---|
1051 | mes "met. I hope you understand"; |
---|
1052 | mes "how much I really want to"; |
---|
1053 | mes "make that Winter Hat..."; |
---|
1054 | close; |
---|
1055 | break; |
---|
1056 | } |
---|
1057 | } |
---|
1058 | mes "[Mater]"; |
---|
1059 | mes "Look at that blue"; |
---|
1060 | mes "sky. Don't you wish"; |
---|
1061 | mes "you could just soar"; |
---|
1062 | mes "through the heavens"; |
---|
1063 | mes "with your own wings?"; |
---|
1064 | next; |
---|
1065 | mes "[Mater]"; |
---|
1066 | mes "Of course, it's an"; |
---|
1067 | mes "impossible dream,"; |
---|
1068 | mes "but with this Winter Hat,"; |
---|
1069 | mes "you can at least enjoy the"; |
---|
1070 | mes "sensation of freedom that"; |
---|
1071 | mes "a bird in flight must feel."; |
---|
1072 | next; |
---|
1073 | mes "[Mater]"; |
---|
1074 | mes "If you would like"; |
---|
1075 | mes "a hat like this, I would"; |
---|
1076 | mes "need to have some items"; |
---|
1077 | mes "that I don't think I can ever"; |
---|
1078 | mes "obtain on my very own."; |
---|
1079 | next; |
---|
1080 | mes "[Mater]"; |
---|
1081 | mes "^FF00001 Black Dyestuffs^000000,"; |
---|
1082 | mes "^FF0000999 Tiger Panties^000000,"; |
---|
1083 | mes "^FF00001 Frozen Rose^000000 and"; |
---|
1084 | mes "^FF000050,000 zeny^000000. If you can"; |
---|
1085 | mes "bring those to me, I shall"; |
---|
1086 | mes "make you a Winter Hat."; |
---|
1087 | close; |
---|
1088 | |
---|
1089 | } |
---|
1090 | |
---|
1091 | lhz_in02,91,38,5 script Margaret Mary#LhzHat 90,{ |
---|
1092 | |
---|
1093 | mes "[Margaret Mary]"; |
---|
1094 | mes "The white rose, in its"; |
---|
1095 | mes "purity and simplicity, is"; |
---|
1096 | mes "like a woman who doesn't"; |
---|
1097 | mes "need jewels or fancy dresses"; |
---|
1098 | mes "to look noble and beautiful. It's the perfect gift for a lady."; |
---|
1099 | next; |
---|
1100 | switch( select( "Make a Mystic Rose.", "End Conversation." ) ) |
---|
1101 | { |
---|
1102 | case 1: |
---|
1103 | if(countitem(731) > 9 && countitem(748) > 1 && countitem(982) && Zeny > 49999) |
---|
1104 | { |
---|
1105 | mes "[Margaret Mary]"; |
---|
1106 | mes "Ah, I see that you've brought"; |
---|
1107 | mes "what I need to bleach the blood"; |
---|
1108 | mes "red hue from these Witherless"; |
---|
1109 | mes "Roses and adorn these flowers"; |
---|
1110 | mes "with eternal elegance. May I use these items to make a Mystic Rose?"; |
---|
1111 | next; |
---|
1112 | switch( select( "Yes", "No" ) ) |
---|
1113 | { |
---|
1114 | case 1: |
---|
1115 | mes "[Margaret Mary]"; |
---|
1116 | mes "Thank you. Please"; |
---|
1117 | mes "next; a moment while"; |
---|
1118 | mes "I concentrate in order to"; |
---|
1119 | mes "preserve the natural beauty"; |
---|
1120 | mes "of these gorgeous flowers..."; |
---|
1121 | next; |
---|
1122 | mes "[Margaret Mary]"; |
---|
1123 | mes "The rose truly is the"; |
---|
1124 | mes "undisputed queen of all"; |
---|
1125 | mes "flowers. All other flora must"; |
---|
1126 | mes "humbly bow to its regal beauty."; |
---|
1127 | next; |
---|
1128 | mes "..."; |
---|
1129 | mes "......"; |
---|
1130 | next; |
---|
1131 | mes "..."; |
---|
1132 | mes "......"; |
---|
1133 | mes "........."; |
---|
1134 | next; |
---|
1135 | mes "[Margaret Mary]"; |
---|
1136 | mes "There, it is finished."; |
---|
1137 | mes "Please remember to wear"; |
---|
1138 | mes "your hair in an elegant and"; |
---|
1139 | mes "refined manner when wearing"; |
---|
1140 | mes "the Mystic Rose so as not to disgrace these beautiful flowers."; |
---|
1141 | delitem 731,10; |
---|
1142 | delitem 748,2; |
---|
1143 | delitem 982,1; |
---|
1144 | set Zeny,Zeny - 50000; |
---|
1145 | getitem 5117,1; |
---|
1146 | close; |
---|
1147 | break; |
---|
1148 | |
---|
1149 | case 2: |
---|
1150 | mes "[Margaret Mary]"; |
---|
1151 | mes "White roses with thorns"; |
---|
1152 | mes "makes my heart beat with"; |
---|
1153 | mes "unceasing trepidation. What"; |
---|
1154 | mes "if I prick my finger and shed"; |
---|
1155 | mes "blood on its snow white petals?"; |
---|
1156 | close; |
---|
1157 | break; |
---|
1158 | } |
---|
1159 | } |
---|
1160 | mes "[Margaret Mary]"; |
---|
1161 | mes "I love roses, but it makes"; |
---|
1162 | mes "me sad that their beauty"; |
---|
1163 | mes "fades far too soon. And so,"; |
---|
1164 | mes "I've found a way to preserve"; |
---|
1165 | mes "the beauty of the roses, so"; |
---|
1166 | mes "that it lasts for all eternity."; |
---|
1167 | next; |
---|
1168 | mes "[Margaret Mary]"; |
---|
1169 | mes "Do you love roses as well?"; |
---|
1170 | mes "If you like, I can make a"; |
---|
1171 | mes "^3131FFMystic Rose^000000 that you can wear"; |
---|
1172 | mes "upon your crown. It's not easy"; |
---|
1173 | mes "for me to create, but I believe that you would enjoy it greatly."; |
---|
1174 | next; |
---|
1175 | mes "[Margaret Mary]"; |
---|
1176 | mes "Please bring me"; |
---|
1177 | mes "^3131FF10 2 Carat Diamonds^000000,"; |
---|
1178 | mes "^3131FF3 Witherless Roses^000000,"; |
---|
1179 | mes "^3131FF1 White Dyestuffs^000000 and"; |
---|
1180 | mes "^3131FF50,000 zeny^000000 if you would"; |
---|
1181 | mes "like to have a Mystic Rose."; |
---|
1182 | close; |
---|
1183 | break; |
---|
1184 | |
---|
1185 | case 2: |
---|
1186 | mes "[Margaret Mary]"; |
---|
1187 | mes "White roses with thorns"; |
---|
1188 | mes "makes my heart beat with"; |
---|
1189 | mes "unceasing trepidation. What"; |
---|
1190 | mes "if I prick my finger and shed"; |
---|
1191 | mes "blood on its snow white petals?"; |
---|
1192 | close; |
---|
1193 | break; |
---|
1194 | } |
---|
1195 | |
---|
1196 | } |
---|
1197 | |
---|
1198 | lighthalzen,182,89,0 script Rich Girl#LhzHat 91,{ |
---|
1199 | |
---|
1200 | if(LHZBTQ == 0) |
---|
1201 | { |
---|
1202 | mes "[Rich Girl]"; |
---|
1203 | mes "Hmmm...?"; |
---|
1204 | mes "What? Did you"; |
---|
1205 | mes "need something?"; |
---|
1206 | next; |
---|
1207 | switch( select( "N-Nothing.", "Um, you look so relaxed." ) ) |
---|
1208 | { |
---|
1209 | case 1: |
---|
1210 | mes "[Rich Girl]"; |
---|
1211 | mes "Huh."; |
---|
1212 | mes "Alright then."; |
---|
1213 | mes "Well, try not to stare"; |
---|
1214 | mes "at people so much."; |
---|
1215 | close; |
---|
1216 | break; |
---|
1217 | |
---|
1218 | case 2: |
---|
1219 | mes "[Rich Girl]"; |
---|
1220 | mes "Really? You are probably"; |
---|
1221 | mes "the twentieth person to"; |
---|
1222 | mes "tell me that today. Mmm."; |
---|
1223 | mes "That's strange, isn't it?"; |
---|
1224 | next; |
---|
1225 | menu "I guess.",-,"It's not strange at all.",-; |
---|
1226 | mes "[Rich Girl]"; |
---|
1227 | mes "Oh yeah."; |
---|
1228 | mes "What's your name?"; |
---|
1229 | mes "That is, if you don't"; |
---|
1230 | mes "mind me asking you."; |
---|
1231 | next; |
---|
1232 | mes "[" + strcharinfo(0) + "]"; |
---|
1233 | mes "My name is " + strcharinfo(0) + ""; |
---|
1234 | mes "and I'm an adventurer~"; |
---|
1235 | next; |
---|
1236 | mes "[Achiha]"; |
---|
1237 | mes "Oh, one of those?"; |
---|
1238 | mes "My name is Achiha, nice"; |
---|
1239 | mes "to meet you. I don't really"; |
---|
1240 | mes "do much of anything."; |
---|
1241 | mes "Just sit. Relax."; |
---|
1242 | set LHZBTQ,1; |
---|
1243 | emotion e_heh; |
---|
1244 | next; |
---|
1245 | mes "[Achiha]"; |
---|
1246 | mes "I do have a hobby,"; |
---|
1247 | mes "though. Once in a while,"; |
---|
1248 | mes "I'll sew a hat. Do you think"; |
---|
1249 | mes "an adventurer like you would"; |
---|
1250 | mes "want to have a hat I made?"; |
---|
1251 | next; |
---|
1252 | switch( select( "Er, I dunno.", "Sure." ) ) |
---|
1253 | { |
---|
1254 | case 1: |
---|
1255 | mes "[Achiha]"; |
---|
1256 | mes "Mm. I mean, the"; |
---|
1257 | mes "Red Bonnets I make"; |
---|
1258 | mes "might not be sturdy"; |
---|
1259 | mes "enough for battles."; |
---|
1260 | mes "But what about those"; |
---|
1261 | mes "fish and cake hats?"; |
---|
1262 | next; |
---|
1263 | mes "[Achiha]"; |
---|
1264 | mes "Hats...?"; |
---|
1265 | mes "That look like"; |
---|
1266 | mes "fish or cake? Mm."; |
---|
1267 | mes "Haha. I just got it."; |
---|
1268 | mes "That's, that's funny."; |
---|
1269 | close; |
---|
1270 | break; |
---|
1271 | |
---|
1272 | case 2: |
---|
1273 | mes "[Achiha]"; |
---|
1274 | mes "Really? Well, I can sew"; |
---|
1275 | mes "together a ^0000FFRed Bonnet^000000."; |
---|
1276 | mes "It reminds most people"; |
---|
1277 | mes "of a baby's bonnet, but"; |
---|
1278 | mes "it does look good on"; |
---|
1279 | mes "most people I know."; |
---|
1280 | next; |
---|
1281 | mes "[Achiha]"; |
---|
1282 | mes "Um, did you want me"; |
---|
1283 | mes "to make you one? I can"; |
---|
1284 | mes "go ahead and do it if you"; |
---|
1285 | mes "bring me some materials."; |
---|
1286 | mes "Since it's just for fun,"; |
---|
1287 | mes "I won't ask for too much."; |
---|
1288 | next; |
---|
1289 | mes "[Achiha]"; |
---|
1290 | mes "Just bring"; |
---|
1291 | mes "^0000FF1 Green Lace^000000,"; |
---|
1292 | mes "^0000FF1 Silk Ribbon^000000,"; |
---|
1293 | mes "^0000FF1 Scarlet Dyestuffs^000000,"; |
---|
1294 | mes "^0000FF1 Sunday Hat^000000 and"; |
---|
1295 | mes "^0000FF50,000 zeny^000000."; |
---|
1296 | next; |
---|
1297 | mes "[Achiha]"; |
---|
1298 | mes "I think I'm going"; |
---|
1299 | mes "to just sit and relax"; |
---|
1300 | mes "a little bit longer. But"; |
---|
1301 | mes "if you want me to make"; |
---|
1302 | mes "a hat for you, come back"; |
---|
1303 | mes "with those materials, okay?"; |
---|
1304 | set LHZBTQ,2; |
---|
1305 | close; |
---|
1306 | break; |
---|
1307 | } |
---|
1308 | break; |
---|
1309 | } |
---|
1310 | } |
---|
1311 | else if(LHZBTQ == 1) |
---|
1312 | { |
---|
1313 | mes "[Achiha]"; |
---|
1314 | mes "Oh, hello."; |
---|
1315 | mes "Isn't it such a nice,"; |
---|
1316 | mes "quiet, pleasant day?"; |
---|
1317 | next; |
---|
1318 | switch( select( "Indeed.", "Would you please make a hat for me?" ) ) |
---|
1319 | { |
---|
1320 | case 1: |
---|
1321 | mes "[Achiha]"; |
---|
1322 | mes "Yeah. Today would"; |
---|
1323 | mes "be a nice day for a"; |
---|
1324 | mes "picnic or a long stroll."; |
---|
1325 | mes "But all I want to do is"; |
---|
1326 | mes "just sit and relax..."; |
---|
1327 | close; |
---|
1328 | break; |
---|
1329 | |
---|
1330 | case 2: |
---|
1331 | mes "[Achiha]"; |
---|
1332 | mes "What are you talking"; |
---|
1333 | mes "about? Oh, you mean the"; |
---|
1334 | mes "Red Bonnet? Well, I guess"; |
---|
1335 | mes "I can make one. But I think"; |
---|
1336 | mes "I need some materials first."; |
---|
1337 | next; |
---|
1338 | mes "[Achiha]"; |
---|
1339 | mes "^0000FF1 Green Lace^000000,"; |
---|
1340 | mes "^0000FF1 Silk Ribbon^000000,"; |
---|
1341 | mes "^0000FF1 Scarlet Dyestuffs^000000,"; |
---|
1342 | mes "^0000FF1 Sunday Hat^000000 and"; |
---|
1343 | mes "^0000FF50,000 zeny^000000."; |
---|
1344 | mes "That's what I need."; |
---|
1345 | next; |
---|
1346 | mes "[Achiha]"; |
---|
1347 | mes "Oh, but I don't"; |
---|
1348 | mes "feel like making it"; |
---|
1349 | mes "right now. I'm soooo"; |
---|
1350 | mes "tired. Let me just sit,"; |
---|
1351 | mes "relax, even if it's just"; |
---|
1352 | mes "a little while longer..."; |
---|
1353 | set LHZBTQ,2; |
---|
1354 | close; |
---|
1355 | break; |
---|
1356 | } |
---|
1357 | } |
---|
1358 | else if(LHZBTQ == 2) |
---|
1359 | { |
---|
1360 | mes "[Achiha]"; |
---|
1361 | mes "Oh, good, you're here."; |
---|
1362 | mes "I've been waiting for you."; |
---|
1363 | mes "Did you bring everything that"; |
---|
1364 | mes "you need to make a ^0000FFRed Bonnet^000000?"; |
---|
1365 | next; |
---|
1366 | switch( select( "Yes.", "I forgot what I need." ) ) |
---|
1367 | { |
---|
1368 | case 1: |
---|
1369 | if(countitem(10015) < 1 || countitem(10007) < 1 || countitem(975) < 1 || countitem(5032) < 1 || Zeny < 50000) |
---|
1370 | { |
---|
1371 | mes "[Achiha]"; |
---|
1372 | mes "Uh oh."; |
---|
1373 | mes "You forgot"; |
---|
1374 | mes "a couple things."; |
---|
1375 | mes "Would you like me"; |
---|
1376 | mes "to remind you what"; |
---|
1377 | mes "you need to bring?"; |
---|
1378 | next; |
---|
1379 | mes "[Achiha]"; |
---|
1380 | mes "^0000FF1 Green Lace^000000,"; |
---|
1381 | mes "^0000FF1 Silk Ribbon^000000,"; |
---|
1382 | mes "^0000FF1 Scarlet Dyestuffs^000000,"; |
---|
1383 | mes "^0000FF1 Sunday Hat^000000 and"; |
---|
1384 | mes "^0000FF50,000 zeny^000000. Come back"; |
---|
1385 | mes "when you're ready, okay?"; |
---|
1386 | close; |
---|
1387 | } |
---|
1388 | mes "[Achiha]"; |
---|
1389 | mes "Oh, you brought"; |
---|
1390 | mes "everything. That's"; |
---|
1391 | mes "good. Okay, just give"; |
---|
1392 | mes "it to me. Um, let's see."; |
---|
1393 | next; |
---|
1394 | mes "[Achiha]"; |
---|
1395 | mes "Well, I'm finished."; |
---|
1396 | mes "^333333*Yawn*^000000 And now I'm"; |
---|
1397 | mes "even more tired. Here,"; |
---|
1398 | mes "take this Red Bonnet."; |
---|
1399 | mes "I hope you like it~"; |
---|
1400 | mes "I think I'll relax now..."; |
---|
1401 | delitem 10015,1; |
---|
1402 | delitem 10007,1; |
---|
1403 | delitem 975,1; |
---|
1404 | delitem 5032,1; |
---|
1405 | set Zeny,Zeny - 50000; |
---|
1406 | getitem 5109,1; |
---|
1407 | set LHZBTQ,3; |
---|
1408 | next; |
---|
1409 | mes "[Achiha]"; |
---|
1410 | mes "I hope you will enjoy the hat~"; |
---|
1411 | close; |
---|
1412 | break; |
---|
1413 | |
---|
1414 | case 2: |
---|
1415 | mes "[Achiha]"; |
---|
1416 | mes "Oh, you really"; |
---|
1417 | mes "forgot? Oh dear,"; |
---|
1418 | mes "let me try to remember."; |
---|
1419 | mes "I didn't forget too, did I?"; |
---|
1420 | mes "Oh next;, I remember now..."; |
---|
1421 | next; |
---|
1422 | mes "[Achiha]"; |
---|
1423 | mes "^0000FF1 Green Lace^000000,"; |
---|
1424 | mes "^0000FF1 Silk Ribbon^000000,"; |
---|
1425 | mes "^0000FF1 Scarlet Dyestuffs^000000,"; |
---|
1426 | mes "^0000FF1 Sunday Hat^000000 and"; |
---|
1427 | mes "^0000FF50,000 zeny^000000. Come back"; |
---|
1428 | mes "when you're ready, okay?"; |
---|
1429 | close; |
---|
1430 | break; |
---|
1431 | } |
---|
1432 | } |
---|
1433 | else if(LHZBTQ == 3) |
---|
1434 | { |
---|
1435 | mes "[Achiha]"; |
---|
1436 | mes "Oh, I remember you."; |
---|
1437 | mes "You're the adventurer"; |
---|
1438 | mes "who likes my Red Bonnets"; |
---|
1439 | mes "so much. Did you want me"; |
---|
1440 | mes "to make another one for you?"; |
---|
1441 | next; |
---|
1442 | switch( select( "Yes.", "I forgot what I need." ) ) |
---|
1443 | { |
---|
1444 | case 1: |
---|
1445 | if(countitem(10015) < 1 || countitem(10007) < 1 || countitem(975) < 1 || countitem(5032) < 1 || Zeny < 50000) |
---|
1446 | { |
---|
1447 | mes "[Achiha]"; |
---|
1448 | mes "Uh oh."; |
---|
1449 | mes "You forgot"; |
---|
1450 | mes "a couple things."; |
---|
1451 | mes "Would you like me"; |
---|
1452 | mes "to remind you what"; |
---|
1453 | mes "you need to bring?"; |
---|
1454 | next; |
---|
1455 | mes "[Achiha]"; |
---|
1456 | mes "^0000FF1 Green Lace^000000,"; |
---|
1457 | mes "^0000FF1 Silk Ribbon^000000,"; |
---|
1458 | mes "^0000FF1 Scarlet Dyestuffs^000000,"; |
---|
1459 | mes "^0000FF1 Sunday Hat^000000 and"; |
---|
1460 | mes "^0000FF50,000 zeny^000000. Come back"; |
---|
1461 | mes "when you're ready, okay?"; |
---|
1462 | close; |
---|
1463 | } |
---|
1464 | mes "[Achiha]"; |
---|
1465 | mes "Oh, you brought"; |
---|
1466 | mes "everything. That's"; |
---|
1467 | mes "good. Okay, just give"; |
---|
1468 | mes "it to me. Um, let's see."; |
---|
1469 | next; |
---|
1470 | mes "[Achiha]"; |
---|
1471 | mes "Well, I'm finished."; |
---|
1472 | mes "^333333*Yawn*^000000 And now I'm"; |
---|
1473 | mes "even more tired. Here,"; |
---|
1474 | mes "take this Red Bonnet."; |
---|
1475 | mes "I hope you like it~"; |
---|
1476 | mes "I think I'll relax now..."; |
---|
1477 | delitem 10015,1; |
---|
1478 | delitem 10007,1; |
---|
1479 | delitem 975,1; |
---|
1480 | delitem 5032,1; |
---|
1481 | set Zeny,Zeny - 50000; |
---|
1482 | getitem 5109,1; |
---|
1483 | next; |
---|
1484 | mes "[Achiha]"; |
---|
1485 | mes "I hope you will enjoy the hat~"; |
---|
1486 | close; |
---|
1487 | break; |
---|
1488 | |
---|
1489 | case 2: |
---|
1490 | mes "[Achiha]"; |
---|
1491 | mes "Oh, you really"; |
---|
1492 | mes "forgot? Oh dear,"; |
---|
1493 | mes "let me try to remember."; |
---|
1494 | mes "I didn't forget too, did I?"; |
---|
1495 | mes "Oh next;, I remember now..."; |
---|
1496 | next; |
---|
1497 | mes "[Achiha]"; |
---|
1498 | mes "^0000FF1 Green Lace^000000,"; |
---|
1499 | mes "^0000FF1 Silk Ribbon^000000,"; |
---|
1500 | mes "^0000FF1 Scarlet Dyestuffs^000000,"; |
---|
1501 | mes "^0000FF1 Sunday Hat^000000 and"; |
---|
1502 | mes "^0000FF50,000 zeny^000000. Come back"; |
---|
1503 | mes "when you're ready, okay?"; |
---|
1504 | close; |
---|
1505 | break; |
---|
1506 | } |
---|
1507 | } |
---|
1508 | |
---|
1509 | } |
---|
1510 | |
---|
1511 | gl_prison1,137,138,5 script Zealotus#LhzHat 1200,{ |
---|
1512 | |
---|
1513 | if(ZLMASKQ == 0) |
---|
1514 | { |
---|
1515 | mes "[Zealotus]"; |
---|
1516 | mes "Kneel, worm!"; |
---|
1517 | mes "As ruler of this"; |
---|
1518 | mes "Underground Prison,"; |
---|
1519 | mes "I command all who step"; |
---|
1520 | mes "into my private realm!"; |
---|
1521 | next; |
---|
1522 | mes "[Zealotus]"; |
---|
1523 | mes "Resist, and you shall be"; |
---|
1524 | mes "punished! Grovel and kiss"; |
---|
1525 | mes "my feet, and perhaps you"; |
---|
1526 | mes "might be spared. Hohohohoho!"; |
---|
1527 | next; |
---|
1528 | switch( select( "Oh, your highness!", "Whatever." ) ) |
---|
1529 | { |
---|
1530 | case 1: |
---|
1531 | mes "[Zealotus]"; |
---|
1532 | mes "The submissive woman is"; |
---|
1533 | mes "nothing but an ideal dream"; |
---|
1534 | mes "for the arrogant male! A true"; |
---|
1535 | mes "woman revels in her power to"; |
---|
1536 | mes "have her man do her bidding!"; |
---|
1537 | next; |
---|
1538 | switch( select( "Yes, it's so true!", "Boooo!" ) ) |
---|
1539 | { |
---|
1540 | case 1: |
---|
1541 | mes "[Zealotus]"; |
---|
1542 | mes "However, in my lust for power, I may have inadventently crushed"; |
---|
1543 | mes "the spirits of my beloved a little too harshly. His pride crumbled,"; |
---|
1544 | mes "my man even cowers in front of the humans! It pains me to see it."; |
---|
1545 | next; |
---|
1546 | mes "[Zealotus]"; |
---|
1547 | mes "It is beneath me to ask"; |
---|
1548 | mes "this of you, but it will take"; |
---|
1549 | mes "a human like you to make"; |
---|
1550 | mes "him remember who he truly is,"; |
---|
1551 | mes "a proud creature of darkness"; |
---|
1552 | mes "who should fear only me!"; |
---|
1553 | next; |
---|
1554 | mes "[Zealotus]"; |
---|
1555 | mes "Human. I offer you a small"; |
---|
1556 | mes "share of my power if you can"; |
---|
1557 | mes "take the pathetic, weeping lump"; |
---|
1558 | mes "of monster crying in the corner"; |
---|
1559 | mes "of this prison and make him"; |
---|
1560 | mes "realize his true nature."; |
---|
1561 | set ZLMASKQ,1; |
---|
1562 | close; |
---|
1563 | break; |
---|
1564 | |
---|
1565 | case 2: |
---|
1566 | mes "[Zealotus]"; |
---|
1567 | mes "You dirty, dirty human..."; |
---|
1568 | mes "How dare you have an "; |
---|
1569 | mes "opinion different than mine!"; |
---|
1570 | mes "No matter. The day will come"; |
---|
1571 | mes "when all of your race shall"; |
---|
1572 | mes "address me only as \"queen.\""; |
---|
1573 | close; |
---|
1574 | break; |
---|
1575 | } |
---|
1576 | break; |
---|
1577 | |
---|
1578 | case 2: |
---|
1579 | mes "[Zealotus]"; |
---|
1580 | mes "Mortal simpleton!"; |
---|
1581 | mes "Bah! The mocking of"; |
---|
1582 | mes "a boorish cur is worthless"; |
---|
1583 | mes "to me. I have all the time in"; |
---|
1584 | mes "the world to grind your pride"; |
---|
1585 | mes "to dust beneath my heels."; |
---|
1586 | close; |
---|
1587 | break; |
---|
1588 | } |
---|
1589 | } |
---|
1590 | else if(ZLMASKQ > 0 && ZLMASKQ < 6) |
---|
1591 | { |
---|
1592 | mes "[Zealotus]"; |
---|
1593 | mes "Hm. If my beloved is"; |
---|
1594 | mes "acting stubborn or refuses"; |
---|
1595 | mes "to listen, feel free to take"; |
---|
1596 | mes "drastic measures. Just think"; |
---|
1597 | mes "of what I would do in your"; |
---|
1598 | mes "place. Ohohohohoho~!"; |
---|
1599 | close; |
---|
1600 | } |
---|
1601 | else if(ZLMASKQ == 6) |
---|
1602 | { |
---|
1603 | mes "[Zealotus]"; |
---|
1604 | mes "Ooh, you're back."; |
---|
1605 | mes "Phendark is certainly"; |
---|
1606 | mes "back to his old self again,"; |
---|
1607 | mes "thanks to your efforts, human."; |
---|
1608 | mes "Yes, his anger, his courage"; |
---|
1609 | mes "and passion are all restored~"; |
---|
1610 | next; |
---|
1611 | mes "[Zealotus]"; |
---|
1612 | mes "As I promised, I shall"; |
---|
1613 | mes "grant you a share of my"; |
---|
1614 | mes "power. However, I will need"; |
---|
1615 | mes "some items to form this minor"; |
---|
1616 | mes "contract between you and me."; |
---|
1617 | next; |
---|
1618 | mes "[Zealotus]"; |
---|
1619 | mes "I will need"; |
---|
1620 | mes "^3131FF1 Cat's Eye^000000,"; |
---|
1621 | mes "^3131FF1 Forbidden Red Candle^000000 and"; |
---|
1622 | mes "^3131FF30 Worn-Out Magic Scrolls^000000."; |
---|
1623 | mes "Then, I can grant you a measure"; |
---|
1624 | mes "of my power as I've promised."; |
---|
1625 | set ZLMASKQ,7; |
---|
1626 | close; |
---|
1627 | } |
---|
1628 | else if(ZLMASKQ == 7) |
---|
1629 | { |
---|
1630 | if(countitem(7263) && countitem(660) && countitem(7099) > 29) |
---|
1631 | { |
---|
1632 | mes "[Zealotus]"; |
---|
1633 | mes "I see that you have"; |
---|
1634 | mes "brought what I need to"; |
---|
1635 | mes "complete the contract"; |
---|
1636 | mes "between you and me,"; |
---|
1637 | mes "human. Let's begin..."; |
---|
1638 | next; |
---|
1639 | mes "^3355FFZealotus takes the red"; |
---|
1640 | mes "candle you've given her and"; |
---|
1641 | mes "drips the wax into her open"; |
---|
1642 | mes "palm. The Cat's Eye begins"; |
---|
1643 | mes "to glow with an eerie light.^000000"; |
---|
1644 | next; |
---|
1645 | mes "[Zealotus]"; |
---|
1646 | mes "Now, place your index"; |
---|
1647 | mes "finger into my palm so"; |
---|
1648 | mes "that we may complete the"; |
---|
1649 | mes "final step of this contract..."; |
---|
1650 | next; |
---|
1651 | switch( select( "Don't complete the contract.", "Complete the contract." ) ) |
---|
1652 | { |
---|
1653 | case 1: |
---|
1654 | mes "[Zealotus]"; |
---|
1655 | mes "Hm? What are you"; |
---|
1656 | mes "afraid of? This is a"; |
---|
1657 | mes "minor contract, so"; |
---|
1658 | mes "you are not selling me"; |
---|
1659 | mes "your soul, or anything"; |
---|
1660 | mes "else for that matter."; |
---|
1661 | close; |
---|
1662 | break; |
---|
1663 | |
---|
1664 | case 2: |
---|
1665 | mes "[Zealotus]"; |
---|
1666 | mes "I, Zealotus, as ruler"; |
---|
1667 | mes "of this realm, seal this"; |
---|
1668 | mes "eternal contract with this"; |
---|
1669 | mes "Forbidden Red Candle."; |
---|
1670 | next; |
---|
1671 | mes "[Zealotus]"; |
---|
1672 | mes "" + strcharinfo(0) + " will"; |
---|
1673 | mes "forever have a share"; |
---|
1674 | mes "in my power. Those that"; |
---|
1675 | mes "bow to me must also bow"; |
---|
1676 | mes "to " + strcharinfo(0) + ". It shall be done."; |
---|
1677 | specialeffect 196; //Curse? EF_DEVIL |
---|
1678 | specialeffect 192; //Poison attack? EF_POISONHIT |
---|
1679 | next; |
---|
1680 | mes "[Zealotus]"; |
---|
1681 | mes "Human, take this"; |
---|
1682 | mes "mask with you as an"; |
---|
1683 | mes "everlasting token of our"; |
---|
1684 | mes "contract. So long as you"; |
---|
1685 | mes "carry this, I will be at your"; |
---|
1686 | mes "side. So says Zealotus!"; |
---|
1687 | delitem 7263,1; |
---|
1688 | delitem 660,1; |
---|
1689 | delitem 7099,30; |
---|
1690 | getitem2 5121,1,1,0,0,254,0,getcharid(0)&0xffff,(getcharid(0)>>16)&0xffff; |
---|
1691 | set ZLMASKQ,8; |
---|
1692 | close; |
---|
1693 | break; |
---|
1694 | } |
---|
1695 | } |
---|
1696 | mes "[Zealotus]"; |
---|
1697 | mes "I will need"; |
---|
1698 | mes "^3131FF1 Cat's Eye^000000,"; |
---|
1699 | mes "^3131FF1 Forbidden Red Candle^000000 and"; |
---|
1700 | mes "^3131FF30 Worn-Out Magic Scrolls^000000."; |
---|
1701 | mes "Then, I can grant you a measure"; |
---|
1702 | mes "of my power as I've promised."; |
---|
1703 | close; |
---|
1704 | } |
---|
1705 | else if(ZLMASKQ == 8) |
---|
1706 | { |
---|
1707 | mes "[Zealotus]"; |
---|
1708 | mes "Ah, I greet you in"; |
---|
1709 | mes "peace, human. Behold,"; |
---|
1710 | mes "the splendor of our realm!"; |
---|
1711 | mes "Though, I do not blame you"; |
---|
1712 | mes "if you have no interest in"; |
---|
1713 | mes "commanding these Injustices..."; |
---|
1714 | next; |
---|
1715 | mes "[Zealotus]"; |
---|
1716 | mes "Thanks to your help,"; |
---|
1717 | mes "my Phendark has returned"; |
---|
1718 | mes "to his old, monstrously"; |
---|
1719 | mes "passionate ways. Now I can"; |
---|
1720 | mes "show him the stinging love"; |
---|
1721 | mes "of my whip! Hohohohohoho!"; |
---|
1722 | emotion e_kis; |
---|
1723 | close; |
---|
1724 | } |
---|
1725 | |
---|
1726 | } |
---|
1727 | |
---|
1728 | gl_prison1,97,104,1 script Phendark#LhzHat 1202,{ |
---|
1729 | |
---|
1730 | if(ZLMASKQ == 0) |
---|
1731 | { |
---|
1732 | mes "[Phendark]"; |
---|
1733 | mes "Huh? Oh no!"; |
---|
1734 | mes "Another h-human?!"; |
---|
1735 | mes "P-please! S-stay away,"; |
---|
1736 | mes "don't come near me!"; |
---|
1737 | close; |
---|
1738 | } |
---|
1739 | else if(ZLMASKQ == 1) |
---|
1740 | { |
---|
1741 | mes "[Phendark]"; |
---|
1742 | mes "Huh? Oh no!"; |
---|
1743 | mes "Another h-human?!"; |
---|
1744 | mes "P-please! S-stay away,"; |
---|
1745 | mes "don't come near me!"; |
---|
1746 | next; |
---|
1747 | mes "[Phendark]"; |
---|
1748 | mes "I... I swear!"; |
---|
1749 | mes "I'm not carrying any"; |
---|
1750 | mes "rare items or stuff you"; |
---|
1751 | mes "can wear, so please don't"; |
---|
1752 | mes "beat me! I... Oh my god, you"; |
---|
1753 | mes "don't believe me, don't you?"; |
---|
1754 | next; |
---|
1755 | mes "[Phendark]"; |
---|
1756 | mes "You humans never leave"; |
---|
1757 | mes "me alone! Why do you have"; |
---|
1758 | mes "to bully me like this?! I'm"; |
---|
1759 | mes "honestly not carrying anything"; |
---|
1760 | mes "of value! Z-Zealotus, please!"; |
---|
1761 | mes "Zealotus, heeeeeelp me~!"; |
---|
1762 | emotion e_sob; |
---|
1763 | |
---|
1764 | |
---|
1765 | if(!( |
---|
1766 | countitem(1950) || countitem(1951) || countitem(1952) || |
---|
1767 | countitem(1953) || countitem(1954) || countitem(1955) || |
---|
1768 | countitem(1956) || countitem(1957) || countitem(1958) || |
---|
1769 | countitem(1959) || countitem(1960) || countitem(1961) || |
---|
1770 | countitem(1962) || countitem(1963) || countitem(1964) || |
---|
1771 | countitem(1965) || countitem(1966) || countitem(1967) || |
---|
1772 | countitem(1968) || countitem(1969) || countitem(1970) || |
---|
1773 | countitem(1971) |
---|
1774 | )) |
---|
1775 | close; // no whip equipped or in inventory |
---|
1776 | |
---|
1777 | next; |
---|
1778 | mes "[" + strcharinfo(0) + "]"; |
---|
1779 | mes "You're pathetic!"; |
---|
1780 | mes "Aren't you supposed"; |
---|
1781 | mes "to be a monster? You know"; |
---|
1782 | mes "what Zealotus would do if"; |
---|
1783 | mes "she were actually here?"; |
---|
1784 | next; |
---|
1785 | mes "[Phendark]"; |
---|
1786 | mes "^333333*Sniff...*^000000"; |
---|
1787 | mes "P-probably..."; |
---|
1788 | mes "Probably whip me."; |
---|
1789 | next; |
---|
1790 | mes "^3355FFYou nonchalantly^000000"; |
---|
1791 | mes "^3355FFbrandish your Whip.^000000"; |
---|
1792 | next; |
---|
1793 | mes "[" + strcharinfo(0) + "]"; |
---|
1794 | mes "That's right."; |
---|
1795 | next; |
---|
1796 | mes "^3355FF*Snap!*"; |
---|
1797 | mes "*Snap!*"; |
---|
1798 | mes "*Crack crack crack!*"; |
---|
1799 | mes "*Snap snap snap crack!*^000000"; |
---|
1800 | next; |
---|
1801 | mes "[Phendark]"; |
---|
1802 | mes "Oh! That stinging pain"; |
---|
1803 | mes "that burns with bloodlust!"; |
---|
1804 | mes "It's almost as good as"; |
---|
1805 | mes "Zealtos's whip of love!"; |
---|
1806 | next; |
---|
1807 | mes "[Phendark]"; |
---|
1808 | mes "Zealotus..."; |
---|
1809 | mes "She must be pissed"; |
---|
1810 | mes "at me, but I just can't"; |
---|
1811 | mes "stop being afraid of all"; |
---|
1812 | mes "you humans! Damn it all!"; |
---|
1813 | set ZLMASKQ,2; |
---|
1814 | close; |
---|
1815 | } |
---|
1816 | else if(ZLMASKQ == 2 || ZLMASKQ == 3) |
---|
1817 | { |
---|
1818 | if(countitem(7315) > 368 && ZLMASKQ == 3) |
---|
1819 | { |
---|
1820 | mes "[Phendark]"; |
---|
1821 | mes "Y-you again!"; |
---|
1822 | mes "Why do you hound me?!"; |
---|
1823 | mes "Th-there's nothing I can"; |
---|
1824 | mes "give you, so please don't"; |
---|
1825 | mes "hurt me! Oh, oh p-please...!"; |
---|
1826 | emotion e_swt2; |
---|
1827 | next; |
---|
1828 | switch( select( "Feed him Dark Crystal Fragment.", "Threaten him." ) ) |
---|
1829 | { |
---|
1830 | case 1: |
---|
1831 | mes "[Phendark]"; |
---|
1832 | mes "What...? You want"; |
---|
1833 | mes "me to eat these?"; |
---|
1834 | mes "It doesn't seem natural,"; |
---|
1835 | mes "but if Rybio says I should,"; |
---|
1836 | mes "it might not be that bad."; |
---|
1837 | next; |
---|
1838 | mes "..."; |
---|
1839 | mes "......"; |
---|
1840 | next; |
---|
1841 | mes "[Phendark]"; |
---|
1842 | mes "What's supposed to"; |
---|
1843 | mes "happen now? My inner"; |
---|
1844 | mes "demon is supposed to"; |
---|
1845 | mes "awaken by eating these?"; |
---|
1846 | mes "That sounds ridiculous!"; |
---|
1847 | mes "Though, I did just eat crystal."; |
---|
1848 | next; |
---|
1849 | mes "[Phendark]"; |
---|
1850 | mes "Wh-whoa. Ugh!"; |
---|
1851 | mes "My chest! Something's"; |
---|
1852 | mes "burning inside! I c-can't--!"; |
---|
1853 | mes "Can't think straight... I'm..."; |
---|
1854 | mes "Slowly... Losing my humanity!"; |
---|
1855 | next; |
---|
1856 | mes "[Phendark]"; |
---|
1857 | mes "Huh... Huuurg--!"; |
---|
1858 | mes "Huk-huk! Heeeeh!"; |
---|
1859 | mes "Heeeeeh! Waaoooooh!"; |
---|
1860 | next; |
---|
1861 | mes "[Phendark]"; |
---|
1862 | mes "..."; |
---|
1863 | mes "Grrrrr...!"; |
---|
1864 | next; |
---|
1865 | mes "[Phendark]"; |
---|
1866 | mes "^333333*Pant pant*^000000"; |
---|
1867 | mes "What... just..."; |
---|
1868 | mes "What happened?"; |
---|
1869 | set ZLMASKQ,4; |
---|
1870 | delitem 7315,369; |
---|
1871 | close; |
---|
1872 | break; |
---|
1873 | |
---|
1874 | case 2: |
---|
1875 | mes "[" + strcharinfo(0) + "]"; |
---|
1876 | mes "So what happens"; |
---|
1877 | mes "if I don't decide not"; |
---|
1878 | mes "to hurt you? Whatcha"; |
---|
1879 | mes "gonna do then, huh?"; |
---|
1880 | next; |
---|
1881 | mes "..."; |
---|
1882 | mes "......"; |
---|
1883 | next; |
---|
1884 | mes "[Phendark]"; |
---|
1885 | mes "S-stop it!"; |
---|
1886 | mes "Just--Just stop it!"; |
---|
1887 | close; |
---|
1888 | break; |
---|
1889 | } |
---|
1890 | } |
---|
1891 | mes "[Phendark]"; |
---|
1892 | mes "Humans..."; |
---|
1893 | mes "They're everywhere!"; |
---|
1894 | mes "You guys--I can't..."; |
---|
1895 | mes "You're torturing me!"; |
---|
1896 | emotion e_sob; |
---|
1897 | close; |
---|
1898 | } |
---|
1899 | else if(ZLMASKQ == 4) |
---|
1900 | { |
---|
1901 | mes "[Phendark]"; |
---|
1902 | mes "My chest was on fire,"; |
---|
1903 | mes "like I was, I dunno,"; |
---|
1904 | mes "burning with anger or"; |
---|
1905 | mes "something. It's gone"; |
---|
1906 | mes "now, but what were"; |
---|
1907 | mes "those crystals?"; |
---|
1908 | close; |
---|
1909 | } |
---|
1910 | else if(ZLMASKQ == 5) |
---|
1911 | { |
---|
1912 | mes "[Phendark]"; |
---|
1913 | mes "You again? Oh no,"; |
---|
1914 | mes "you're not going to hurt"; |
---|
1915 | mes "me or make me eat those"; |
---|
1916 | mes "weird crystals again, are you?"; |
---|
1917 | next; |
---|
1918 | mes "^3131FF[" + strcharinfo(0) + "]^000000"; |
---|
1919 | switch( select( "Rybio", "Injustice", "Zealotus" ) ) |
---|
1920 | { |
---|
1921 | case 1: |
---|
1922 | mes "Rybio"; |
---|
1923 | set @temp1,1; |
---|
1924 | break; |
---|
1925 | |
---|
1926 | case 2: |
---|
1927 | mes "Injustice"; |
---|
1928 | set @temp1,2; |
---|
1929 | break; |
---|
1930 | |
---|
1931 | case 3: |
---|
1932 | mes "Zealotus"; |
---|
1933 | set @temp1,3; |
---|
1934 | break; |
---|
1935 | } |
---|
1936 | switch( select( "hates", "likes" ) ) |
---|
1937 | { |
---|
1938 | case 1: |
---|
1939 | mes "hates"; |
---|
1940 | set @temp2,1; |
---|
1941 | break; |
---|
1942 | |
---|
1943 | case 2: |
---|
1944 | mes "likes"; |
---|
1945 | set @temp2,2; |
---|
1946 | break; |
---|
1947 | } |
---|
1948 | switch( select( "Rybio.", "Injustice.", "Phendark.", "Zealotus." ) ) |
---|
1949 | { |
---|
1950 | case 1: |
---|
1951 | mes "Rybio."; |
---|
1952 | break; |
---|
1953 | |
---|
1954 | case 2: |
---|
1955 | mes "Injustice."; |
---|
1956 | break; |
---|
1957 | |
---|
1958 | case 3: |
---|
1959 | if((@temp1 == 1 || @temp1 == 2) && @temp2 == 1) |
---|
1960 | { |
---|
1961 | mes "[Phendark]"; |
---|
1962 | mes "I can't believe"; |
---|
1963 | mes "something like that!"; |
---|
1964 | mes "Oh, that doesn't matter."; |
---|
1965 | mes "Zealotus is too good for me."; |
---|
1966 | mes "I'm not even worthy of tasting"; |
---|
1967 | mes "the sting of her Love Whip."; |
---|
1968 | emotion e_sob; |
---|
1969 | close; |
---|
1970 | } |
---|
1971 | else if(@temp1 == 3 && @temp2 == 1) |
---|
1972 | { |
---|
1973 | mes "[Phendark]"; |
---|
1974 | mes "..."; |
---|
1975 | mes "......"; |
---|
1976 | mes "Hates me?"; |
---|
1977 | mes "N-no, that can't--"; |
---|
1978 | mes "I didn't, that doesn't--"; |
---|
1979 | next; |
---|
1980 | mes "[Phendark]"; |
---|
1981 | mes "Huh...?"; |
---|
1982 | mes "What is that"; |
---|
1983 | mes "supposed to mean?"; |
---|
1984 | close; |
---|
1985 | } |
---|
1986 | else if(@temp1 == 3 && @temp2 == 2) |
---|
1987 | { |
---|
1988 | mes "[Phendark]"; |
---|
1989 | mes "I can't believe"; |
---|
1990 | mes "something like that!"; |
---|
1991 | mes "Oh, that doesn't matter."; |
---|
1992 | mes "Zealotus is too good for me."; |
---|
1993 | mes "I'm not even worthy of tasting"; |
---|
1994 | mes "the sting of her Love Whip."; |
---|
1995 | emotion e_sob; |
---|
1996 | close; |
---|
1997 | } |
---|
1998 | break; |
---|
1999 | |
---|
2000 | case 4: |
---|
2001 | mes "Zealotus."; |
---|
2002 | break; |
---|
2003 | } |
---|
2004 | switch( select( "Insult him.", "Apologize." ) ) |
---|
2005 | { |
---|
2006 | case 1: |
---|
2007 | mes "[" + strcharinfo(0) + "]"; |
---|
2008 | mes "First of all,"; |
---|
2009 | mes "what exactly sets"; |
---|
2010 | mes "you apart from all the"; |
---|
2011 | mes "other eligible monsters"; |
---|
2012 | mes "that she can choose from?"; |
---|
2013 | mes "Not like you're much better..."; |
---|
2014 | next; |
---|
2015 | mes "[Phendark]"; |
---|
2016 | mes "..."; |
---|
2017 | mes "......"; |
---|
2018 | next; |
---|
2019 | switch( select( "Break his pride.", "Tell him you were joking." ) ) |
---|
2020 | { |
---|
2021 | case 1: |
---|
2022 | mes "^3131FF[" + strcharinfo(0) + "]^000000"; |
---|
2023 | mes "I mean, there are guys"; |
---|
2024 | mes "like Bloody Murderer out"; |
---|
2025 | mes "there who are more evil"; |
---|
2026 | mes "than you, and best of all,"; |
---|
2027 | mes "not afraid of humans!"; |
---|
2028 | next; |
---|
2029 | switch( select( "Go for the low blow.", "Try to salvage his confidence." ) ) |
---|
2030 | { |
---|
2031 | case 1: |
---|
2032 | mes "[" + strcharinfo(0) + "]"; |
---|
2033 | mes "You know, me and Zealotus"; |
---|
2034 | mes "were actually talking about"; |
---|
2035 | mes "you recently. She told me that"; |
---|
2036 | mes "the sight of you makes her"; |
---|
2037 | mes "feel sick! I mean, what kind"; |
---|
2038 | mes "of monster is afraid of humans?"; |
---|
2039 | next; |
---|
2040 | mes "[" + strcharinfo(0) + "]"; |
---|
2041 | mes "Now you've reached the"; |
---|
2042 | mes "point where even Injustice"; |
---|
2043 | mes "is manlier than you now,"; |
---|
2044 | mes "if you know what I mean!"; |
---|
2045 | mes "Hahahahahahahahaha!"; |
---|
2046 | next; |
---|
2047 | mes "[Phendark]"; |
---|
2048 | mes "..."; |
---|
2049 | mes "......"; |
---|
2050 | next; |
---|
2051 | mes "[Phendark]"; |
---|
2052 | mes "..."; |
---|
2053 | mes "......"; |
---|
2054 | mes "........."; |
---|
2055 | next; |
---|
2056 | mes "[Phendark]"; |
---|
2057 | mes "..."; |
---|
2058 | mes "......"; |
---|
2059 | mes "........."; |
---|
2060 | mes "............"; |
---|
2061 | next; |
---|
2062 | mes "[Phendark]"; |
---|
2063 | mes "GRRRRRR!"; |
---|
2064 | mes "THAT'S ENOUGH!"; |
---|
2065 | emotion e_ag; |
---|
2066 | next; |
---|
2067 | mes "[Phendark]"; |
---|
2068 | mes "I don't care who the"; |
---|
2069 | mes "hell she is, I'm going"; |
---|
2070 | mes "to see Zealotus and give"; |
---|
2071 | mes "that tramp a piece of my"; |
---|
2072 | mes "mind! Grrrr! She'll be sorry!"; |
---|
2073 | set ZLMASKQ,6; |
---|
2074 | emotion e_an; |
---|
2075 | close; |
---|
2076 | break; |
---|
2077 | |
---|
2078 | case 2: |
---|
2079 | mes "^3131FF[" + strcharinfo(0) + "]^000000"; |
---|
2080 | mes "But know that I think"; |
---|
2081 | mes "about it, maybe you look"; |
---|
2082 | mes "much tougher than that"; |
---|
2083 | mes "Bloody Murderer guy."; |
---|
2084 | next; |
---|
2085 | mes "[Phendark]"; |
---|
2086 | mes "*Sniff sniff*"; |
---|
2087 | mes "You really think so?"; |
---|
2088 | next; |
---|
2089 | mes "..."; |
---|
2090 | mes "......"; |
---|
2091 | next; |
---|
2092 | mes "[" + strcharinfo(0) + "]"; |
---|
2093 | mes "...Yeeeeeah."; |
---|
2094 | close; |
---|
2095 | break; |
---|
2096 | } |
---|
2097 | break; |
---|
2098 | |
---|
2099 | case 2: |
---|
2100 | mes "[" + strcharinfo(0) + "]"; |
---|
2101 | mes "But now that I think"; |
---|
2102 | mes "about it, you actually"; |
---|
2103 | mes "are much better than all"; |
---|
2104 | mes "those other monsters."; |
---|
2105 | mes "That stuff I said before?"; |
---|
2106 | mes "I was just kidding you."; |
---|
2107 | next; |
---|
2108 | mes "[Phendark]"; |
---|
2109 | mes "^333333*Sniff!*^000000"; |
---|
2110 | mes "You're..."; |
---|
2111 | mes "Not helping!"; |
---|
2112 | close; |
---|
2113 | break; |
---|
2114 | } |
---|
2115 | break; |
---|
2116 | |
---|
2117 | case 2: |
---|
2118 | mes "[" + strcharinfo(0) + "]"; |
---|
2119 | mes "I..."; |
---|
2120 | mes "I was just kidding!"; |
---|
2121 | mes "How could she hate"; |
---|
2122 | mes "somebody like you?"; |
---|
2123 | next; |
---|
2124 | mes "[Phendark]"; |
---|
2125 | mes "No... No."; |
---|
2126 | mes "You're right."; |
---|
2127 | mes "I don't deserve love."; |
---|
2128 | mes "Not from Zealotus or"; |
---|
2129 | mes "from anybody else..."; |
---|
2130 | close; |
---|
2131 | break; |
---|
2132 | } |
---|
2133 | } |
---|
2134 | else if(ZLMASKQ > 5) |
---|
2135 | { |
---|
2136 | mes "[Phendark]"; |
---|
2137 | mes "Zealotus! How dare"; |
---|
2138 | mes "she say those things"; |
---|
2139 | mes "against me! Less manly"; |
---|
2140 | mes "than Injustice?! I'll just"; |
---|
2141 | mes "have to prove her wrong!"; |
---|
2142 | mes "Out the way, pithy human!"; |
---|
2143 | close; |
---|
2144 | } |
---|
2145 | |
---|
2146 | } |
---|
2147 | |
---|
2148 | gl_prison1,100,48,5 script Rybio#LhzHat 1201,{ |
---|
2149 | |
---|
2150 | if(ZLMASKQ == 2) |
---|
2151 | { |
---|
2152 | mes "[Rybio]"; |
---|
2153 | mes "You know, I usually just"; |
---|
2154 | mes "run up and slash like crazy"; |
---|
2155 | mes "once I see you humans, but"; |
---|
2156 | mes "my heart's not in it today, so"; |
---|
2157 | mes "I'm gonna give you just one"; |
---|
2158 | mes "chance to run for your life."; |
---|
2159 | next; |
---|
2160 | switch( select( "Talk about Phendark.", "Run for your life." ) ) |
---|
2161 | { |
---|
2162 | case 1: |
---|
2163 | mes "[Rybio]"; |
---|
2164 | mes "What th--? You know the"; |
---|
2165 | mes "same Phendark I know?"; |
---|
2166 | mes "Dayam, that's weird. But"; |
---|
2167 | mes "yeah, him and Zealotus have"; |
---|
2168 | mes "some kind of... I dunno what"; |
---|
2169 | mes "it is, actually. Um, love?"; |
---|
2170 | next; |
---|
2171 | mes "[Rybio]"; |
---|
2172 | mes "Anyway, Phendark has"; |
---|
2173 | mes "been acting really weird"; |
---|
2174 | mes "lately. I guess Zealotus"; |
---|
2175 | mes "loved him to the point that"; |
---|
2176 | mes "she abused him to the point"; |
---|
2177 | mes "that he's scared of humans now."; |
---|
2178 | next; |
---|
2179 | mes "[Rybio]"; |
---|
2180 | mes "Huh. You know what'd help?"; |
---|
2181 | mes "Dark Crystal Fragments. It's"; |
---|
2182 | mes "worthless to humans, but if"; |
---|
2183 | mes "creatures of darkness eat it,"; |
---|
2184 | mes "it brings out more of their"; |
---|
2185 | mes "inner demon. Scary, huh?"; |
---|
2186 | next; |
---|
2187 | mes "[Rybio]"; |
---|
2188 | mes "Since Phendark's pretty big, and he's acting like a total wuss, you"; |
---|
2189 | mes "you should probably get him to eat ^3131FF369 Dark Crystal Fragments^000000. Don't"; |
---|
2190 | mes "worry, you should be able to find those all over Rune-Midgard."; |
---|
2191 | next; |
---|
2192 | mes "[Rybio]"; |
---|
2193 | mes "I dunno why a human"; |
---|
2194 | mes "like you would want to"; |
---|
2195 | mes "help one of us out, though."; |
---|
2196 | mes "What's in it for you, exactly?"; |
---|
2197 | set ZLMASKQ,3; |
---|
2198 | close; |
---|
2199 | break; |
---|
2200 | |
---|
2201 | case 2: |
---|
2202 | mes "[Rybio]"; |
---|
2203 | mes "That's right!"; |
---|
2204 | mes "Run, get outta here!"; |
---|
2205 | mes "If you're not fast enough,"; |
---|
2206 | mes "I might eat you, human!"; |
---|
2207 | mes "...Well... Probably not."; |
---|
2208 | close; |
---|
2209 | break; |
---|
2210 | } |
---|
2211 | } |
---|
2212 | else if(ZLMASKQ == 3) |
---|
2213 | { |
---|
2214 | mes "[Rybio]"; |
---|
2215 | mes "I don't get why someone"; |
---|
2216 | mes "like you, a seemingly heroic"; |
---|
2217 | mes "adventurer, would want to help"; |
---|
2218 | mes "out Phendark? Did Zealotus"; |
---|
2219 | mes "blackmail you or something?"; |
---|
2220 | next; |
---|
2221 | mes "[Rybio]"; |
---|
2222 | mes "Well, you could"; |
---|
2223 | mes "probably help him"; |
---|
2224 | mes "by getting him to eat"; |
---|
2225 | mes "^3131FF369 Dark Crystal Fragments^000000"; |
---|
2226 | mes "to sort of stir up the demon"; |
---|
2227 | mes "that sleeping within, you know?"; |
---|
2228 | close; |
---|
2229 | } |
---|
2230 | else if(ZLMASKQ == 4) |
---|
2231 | { |
---|
2232 | mes "[Rybio]"; |
---|
2233 | mes "Feeding him all of those"; |
---|
2234 | mes "Dark Crystal Fragments didn't"; |
---|
2235 | mes "work? But that was supposed"; |
---|
2236 | mes "to be foolproof! Dayam, what"; |
---|
2237 | mes "the hell happened to Phendark's"; |
---|
2238 | mes "inner demon?! Man oh man..."; |
---|
2239 | next; |
---|
2240 | mes "[Rybio]"; |
---|
2241 | mes "Well, I don't know what"; |
---|
2242 | mes "else you could try. I mean,"; |
---|
2243 | mes "maybe you could try motivating"; |
---|
2244 | mes "him. Reverse psychology?"; |
---|
2245 | mes "It's weird talking about this"; |
---|
2246 | mes "with a human. Hahahaha~"; |
---|
2247 | set ZLMASKQ,5; |
---|
2248 | close; |
---|
2249 | } |
---|
2250 | else if(ZLMASKQ == 5) |
---|
2251 | { |
---|
2252 | mes "[Rybio]"; |
---|
2253 | mes "Phendark sure looks"; |
---|
2254 | mes "tough, but I guess even"; |
---|
2255 | mes "he isn't totally evil. Yeah."; |
---|
2256 | mes "We monsters aren't all"; |
---|
2257 | mes "bad... Just mostly bad."; |
---|
2258 | close; |
---|
2259 | } |
---|
2260 | |
---|
2261 | } |
---|