root/npc/quests/seals/megingard_seal.txt

Revision 1, 121.8 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Megingjard seal unlocking NPCs.
3//===== By: ==================================================
4//= SinSloth
5//===== Current Version: =====================================
6//= 1.2
7//===== Compatible With: =====================================
8//= eAthena
9//===== Description: =========================================
10//= Quest for breaking the seal of Megingjard.
11//===== Additional Comments: =================================
12//= 1.0 First version. Thanks to SinSloth for scripting it. [MasterOfMuppets]
13//= 1.1 fixed exploit [Lupus]
14//= 1.2 Fixed experience gains to match upcoming rate adjustments. [SinSloth]
15//============================================================
16
17prt_castle,44,151,0     script  Rebarev Doug    56,{
18
19if(countitem(7080) > 3 && countitem(7081) > 4 && countitem(7082) > 3 && countitem(7084) > 2 && countitem(7085) > 2)
20{
21        mes "[Rebarev Doug]";
22        mes "What's this?";
23        mes "You...! You have";
24        mes "everything I need to";
25        mes "create Gleipnir!";
26        next;
27        switch( select( "Make Gleipnir.", "Cancel." ) )
28        {
29
30                case 1:
31                        mes "[Rebarev Doug]";
32                        mes "I'm the only human on earth blessed with the ability to create Gleipnir. Aside from Dwarves, I'm the only person that can make this item!";
33                        next;
34                        delitem 7080,4;
35                        delitem 7081,5;
36                        delitem 7082,4;
37                        delitem 7084,3;
38                        delitem 7085,3;
39                        getitem 7058,1;
40                        mes "[Rebarev Doug]";
41                        mes "There you go!";
42                        next;
43                        mes "[Rebarev Doug]";
44                        mes "Gleipnir is said to be so strong that not even the Fenrir Wolf could break it! I'm so proud that I could make this item!";
45                        close;
46                break;
47
48                case 2:
49                        close;
50                break;
51
52        }
53}
54
55if($God1 < 50)
56{
57        mes "[Rebarev Doug]";
58        mes "We are Crusaders that have been training in preparation for the Holy War that is to come.";
59        next;
60        mes "[Rebarev Doug]";
61        mes "As we our forefathers have done a thousand years ago, we shall vanquish the hordes of Demons when the day comes.";
62        next;
63        mes "[Rebarev Doug]";
64        mes "If you have any questions about Crusaders, feel free to ask me. I may be too old and weak for fighting, but I will spread our message as much as I can.";
65        mes "feel free to ask me.";
66        next;
67        switch( select( "What is Holy Cross?", "What is Grand Cross?", "What is Sacrifice?", "What is Gleipnir?" ) )
68        {
69                case 1:
70                        mes "[Rebarev Doug]";
71                        mes "Holy Cross is the first manifestation of a Crusader's faith. By making the sign of the cross, Crusader's can inflict a holy attack on their enemies.";
72                        next;
73                        mes "[Rebarev Doug]";
74                        mes "Monsters that are weak against holiness, particularly the Undead, will be blinded by the light of the Holy Cross. All they can do is next; for holy judgment.";
75                        next;
76                        mes "[Rebarev Doug]";
77                        mes "Based on our latest research, the Holy Cross can inflict 4.5 times more damage than a normal attack once it is mastered.";
78                        close;
79                break;
80
81                case 2:
82                        mes "[Rebarev Doug]";
83                        mes "Grand Cross...!";
84                        mes "The righteous fury of God is given form in this destructive skill.";
85                        next;
86                        mes "[Rebarev Doug]";
87                        mes "God grants us his power so that we may punish the forces of evil, and one's rage is embodied in a giant crucifix of power.";
88                        next;
89                        mes "[Rebarev Doug]";
90                        mes "The power of the crucifix of light can damage the enemy three times. Each strike will have five times the strength of your normal attacks.";
91                        next;
92                        mes "[Rebarev Doug]";
93                        mes "However, when Crusaders use Grand Cross, they must exercise extreme caution. The human body is too weak to fully embrace the will of God.";
94                        next;
95                        mes "[Rebarev Doug]";
96                        mes "Therefore, using this skill, will cause the Crusader to suffer from damage. However, this damage can be reduced to half with Faith.";
97                        close;
98                break;
99
100                case 3:
101                        mes "[Rebarev Doug]";
102                        mes "In practicing what we preach, Crusaders choose to protect others by bearing the suffering of others.";
103                        next;
104                        mes "[Rebarev Doug]";
105                        mes "The Sacrifice skill allows Crusaders to keep their comrades safe from harm by receiving the damage that was intended for them.";
106                        next;
107                        mes "[Rebarev Doug]";
108                        mes "It is the greatest demonstration of faith, as well as of love for your fellow man. Such an attitude is essential for a servant of God!";
109                        next;
110                        mes "[Rebarev Doug]";
111                        mes "However, if the people you want to protect become stray away from you, you cannot use the Sacrifice skill for them unless they are close to you again.";
112                        next;
113                        mes "[Rebarev Doug]";
114                        mes "As you visualize the suffering of those you want to protect, you'll never hesitate to sacrifice yourself.";
115                        next;
116                        mes "[Rebarev Doug]";
117                        mes "Thank you, God, for granting me with a power to protect my people.";
118                        close;
119                break;
120
121                case 4:
122                        mes "[Rebarev Doug]";
123                        mes "Gleipnir is the essence of Megingjard which I have been researching.";
124                        next;
125                        mes "[Rebarev Doug]";
126                        mes "It's the only binding strong enough that will allow a human to wear Megingjard around his waist.";
127                        next;
128                        mes "[Rebarev Doug]";
129                        mes "Although I can no longer fight, I've been studying how to create Gleipnir for years. I will be more than willing to create it for you if you can bring me...";
130                        next;
131                        mes "[Rebarev Doug]";
132                        mes "^0000FF4 Cat Tread^000000,";
133                        mes "^0000FF5 Woman's Moustache^000000,";
134                        mes "^0000FF4 Root of Stone^000000,";
135                        mes "^0000FF3 Sputum of Bird^000000 and";
136                        mes "^0000FF3 Sinew of Bear^000000,";
137                        close;
138                break;
139        }
140}
141else if($God1 > 49 && $God2 < 100)
142{
143        if(BaseLevel > 59)
144        {
145                if(god_eremes == 0)
146                {
147                        mes "[Rebarev Doug]";
148                        mes "...";
149                        next;
150                        mes "[Rebarev Doug]";
151                        mes "Why are you wandering around this sacred place? Do you not understand that we must prepare for the Holy War?";
152                        next;
153                        mes "[Rebarev Doug]";
154                        mes "No matter how much I explain, the ignorant never fully understand the importance of our task. The balance of power will shift when we least expect it!";
155                        next;
156                        mes "[Rebarev Doug]";
157                        mes "I wish I could go back to those times when I would train Crusaders, rather than preach to the ignorant.";
158                        next;
159                        mes "[Rebarev Doug]";
160                        mes "I miss my Crusaders who were enthusiastic to listen to what I had to say, and carried out their orders with loyalty.";
161                        next;
162                        mes "[Rebarev Doug]";
163                        mes "I am wonder";
164                        mes "where they have";
165                        mes "all gone now...";
166                        next;
167                        mes "[Rebarev Doug]";
168                        mes "...";
169                        mes "......";
170                        mes ".........";
171                        next;
172                        mes "[Rebarev Doug]";
173                        mes "Adventurer, if you the time to listen to me speak to myself, why don't you perform a task for me?";
174                        next;
175                        mes "[Rebarev Doug]";
176                        mes "If may be an enriching experience for you. It's possible that you'll even have a greater appreciation for Crusaders.";
177                        next;
178                        switch( select( "What is it?", "I'm sick and tired of doin' favors." ) )
179                        {
180                                case 1:
181                                        mes "[Rebarev Doug]";
182                                        mes "I want you to find the members of the 3rd squad in the 1st platoon of the 3rd company. If you happen to encounter them in your travels, please ask them how they are doing.";
183                                        next;
184                                        mes "[Rebarev Doug]";
185                                        mes "It shouldn't be that difficult to do, and won't be a waste of your time if you are already planning to explore the world.";
186                                        next;
187                                        switch( select( "Sure, why not.", "I'm sorry, but no." ) )
188                                        {
189                                                case 1:
190                                                        mes "[Rebarev Doug]";
191                                                        mes "Excellent!";
192                                                        mes "All I want you to do is find my old comrades, and inform me of how they are doing.";
193                                                        next;
194                                                        mes "[Rebarev Doug]";
195                                                        mes "However...";
196                                                        mes "There is one problem.";
197                                                        mes "I don't know where they are.";
198                                                        next;
199                                                        mes "[Rebarev Doug]";
200                                                        mes "You could try to find a record of residency changes by citizens of the Rune-Midgarts Kingdom in the Prontera Library...";
201                                                        next;
202                                                        mes "[Rebarev Doug]";
203                                                        mes "However, the records of Crusader personnel is considered confidential, so I am not sure of whether or not you can view them.";
204                                                        next;
205                                                        mes "[Rebarev Doug]";
206                                                        mes "Thank you in advance anyways.";
207                                                        mes ".........";
208                                                        next;
209                                                        mes "[Rebarev Doug]";
210                                                        mes "You must understand, my position requires me to remain in this area 24 hours, 7 days a week. I cannot leave without the consent of the upper hierarchy.";
211                                                        next;
212                                                        mes "[Rebarev Doug]";
213                                                        mes "However, I know you have the freedom and the time to go wherever you please. I'd appreciate if you would do this for me.";
214                                                        next;
215                                                        mes "[Rebarev Doug]";
216                                                        mes "My old comrades in arms. You have no idea how much I miss them...";
217                                                        set god_eremes,1;
218                                                        close;
219                                                break;
220
221                                                case 2:
222                                                        mes "[Rebarev Doug]";
223                                                        mes "^333333*Sigh...*^000000";
224                                                        mes "Please understand that I would not be asking this of you if it were not for the restraints of my position.";
225                                                        next;
226                                                        mes "[Rebarev Doug]";
227                                                        mes "I have an obligation to this Kingdom to keep my post and inform adventurers about the Crusader class. Because of this awesome responsibility, I must remain here, ever vigilant.";
228                                                        next;
229                                                        mes "[Rebarev Doug]";
230                                                        mes "If you can't understand, then you must be taking your freedom for granted...";
231                                                        close;
232                                                break;
233                                        }
234                                break;
235
236                                case 2:
237                                        mes "[Rebarev Doug]";
238                                        mes "As far as I remember, this is the first time I have asked you to do me a favor.";
239                                        next;
240                                        mes "[Rebarev Doug]";
241                                        mes "Unlike you, I know the meaning of responsibility. I remain here, helping inquisitive adventurers for the sake of King and country.";
242                                        next;
243                                        mes "[Rebarev Doug]";
244                                        mes "Still...";
245                                        mes "Know this.";
246                                        mes "Although the results may not be immediate, you will always be rewarded when you help others.";
247                                        next;
248                                        mes "[Rebarev Doug]";
249                                        mes "Please reconsider when you get the chance.";
250                                        close;
251                                break;
252                        }
253                }
254                else if(god_eremes > 0 && god_eremes < 4)
255                {
256
257                        if(rand(1,10) > 6 && god_eremes == 2)
258                        {
259                                mes "[Rebarev Doug]";
260                                mes "I am wondering how my members are doing by now...";
261                                mes "I cannot even remember when was the last time I saw them...";
262                                next;
263                                mes "[Rebarev Doug]";
264                                mes "Hmm? Why are you still here?";
265                                next;
266                                switch( select( "Where should I go?", "I am about to leave.", "What do you mean by the last mission?" ) )
267                                {
268                                        case 1:
269                                                mes "[Rebarev Doug]";
270                                                mes "Well...I have no clue where they are.";
271                                                mes "You might be able to find the information from";
272                                                mes "^0000FFThe 3rd company personnel in&out record crews^000000 in the library?";
273                                                close;
274                                        break;
275
276                                        case 2:
277                                                mes "[Rebarev Doug]";
278                                                mes "Oh, are you? I see... I am wondering what they have been doing ever since we're disbanded after the ^0000FFlast mission^000000...";
279                                                close;
280                                        break;
281
282                                        case 3:
283                                                mes "[Rebarev Doug]";
284                                                mes "The last mission...? That gave the reason to disband the 1st squad of the 3rd platoon...";
285                                                mes "I cannot think of this seprately from the memory...bah..";
286                                                next;
287                                                mes "[Rebarev Doug]";
288                                                mes "You know, hmm.";
289                                                mes "We crusaders have heirarchy...basically we have to listen to higher officers.";
290                                                next;
291                                                mes "[Rebarev Doug]";
292                                                mes "............";
293                                                mes "...If......there wasn't him at the time...";
294                                                next;
295                                                mes "[Rebarev Doug]";
296                                                mes ".............";
297                                                next;
298                                                mes "";
299                                                mes "- After a while, he spoke to me as if he was mad. -";
300                                                next;
301                                                mes "[Rebarev Doug]";
302                                                mes "Let's not talk about it. Just remember it as the reason to disband my squad.";
303                                                next;
304                                                mes "[Rebarev Doug]";
305                                                mes "Now, will you please go find ^0000FFThe 3rd company personnel in&out record crews^000000 in the library for me?";
306                                                set god_eremes,3;
307                                                close;
308                                        break;
309                                }
310                        }
311                        else
312                        {
313                                mes "[Rebarev Doug]";
314                                mes "I am wondering how my members are doing by now...";
315                                mes "I cannot even remember when was the last time I saw them...";
316                                next;
317                                mes "[Rebarev Doug]";
318                                mes "Hmm? Why are you still here?";
319                                next;
320                                switch( select( "Where should I go?", "I am about to leave." ) )
321                                {
322                                        case 1:
323                                                mes "[Rebarev Doug]";
324                                                mes "Well...I have no clue where they are.";
325                                                mes "You might be able to find the information from the library.";
326                                                close;
327                                        break;
328
329                                        case 2:
330                                                mes "[Rebarev Doug]";
331                                                mes "Oh, are you? I see... I am wondering what they have been doing ever since we're disbanded after the ^0000FFlast mission^000000...";
332                                                set god_eremes,2;
333                                                close;
334                                        break;
335                                }
336                        }
337                }
338                else if(god_eremes > 3 && god_eremes < 18)
339                {
340                        mes "[Rebarev Doug]";
341                        mes "Huh? Librarian didn't let you read the record?";
342                        mes "Umm...I guess if you try your best to convince him, he might change his mind.";
343                        next;
344                        mes "[Rebarev Doug]";
345                        mes "Even if things are tough nowadays, he's just a man with a heart...";
346                        next;
347                        mes "[Rebarev Doug]";
348                        mes "Please I beg you, please find how my members are doing...";
349                        close;
350                }
351                else if(god_eremes > 17 && god_eremes < 20)
352                {
353                        if(god_megin_1 > 0 || god_megin_2 > 0 || god_megin_3 > 0 || god_megin_4 > 0 || god_megin_5 > 0 || god_megin_6 > 0)
354                        {
355                                mes "[Rebarev Doug]";
356                                mes "Oh...";
357                                mes "So did you meet them?";
358                                mes "Are they all okay?";
359                                next;
360                                mes "- You told him they are all okay other than lost their meomory and having migraines.-";
361                                close;
362                        }
363                        mes "- You told him what you have read from the record -";
364                        next;
365                        mes "- that where they are and how they are. -";
366                        next;
367                        mes "[Rebarev Doug]";
368                        mes "Oh! Have you read the record? I am glad to hear that!";
369                        mes "By the way...I don't trust what was wrote on paper since it's out of date...";
370                        next;
371                        mes "[Rebarev Doug]";
372                        mes "If it's possible, I hope you could go meet my members to find the latest news about them...";
373                        mes "I mean with your ^0000FFown eyes^000000!";
374                        next;
375                        mes "[Rebarev Doug]";
376                        mes "Please I beg you...please go find them.";
377                        next;
378                        mes "[Rebarev Doug]";
379                        mes "I beg you...please go find them.";
380                        mes "I cannot trust the old record...I am just being a poor old man who misses his friends.";
381                        close;
382                }
383                else if(god_eremes > 19 && god_eremes < 23)
384                {
385                        mes "[Rebarev Doug]";
386                        mes "Oh~ welcome back.";
387                        mes "So did you see them all? It's been a while since I saw you last time.";
388                        mes "Umm? What? Why are you looking at me strange?";
389                        next;
390                        switch( select( "Ask him about the suspicion.", "This is not a right time to ask about the suspicion. wait." ) )
391                        {
392                                case 1:
393                                        mes "- You tried to organize your thoughts about all those suspicions you have had -";
394                                        next;
395                                        mes "- such as all the members are not on the normal condition, -";
396                                        next;
397                                        mes "- they lost their memory partially -";
398                                        next;
399                                        mes "- and about Royal Myst's comment...-";
400                                        next;
401                                        mes "- Or who is Egnigem that all members talked about? -";
402                                        next;
403                                        mes "- All these thoughts clogged your brain so you were just talking aboutissues regarding the members that were not that important.-";
404                                        next;
405                                        mes "[Rebarev Doug]";
406                                        mes "?!...I cannot understand what you're talking about...you're all over the place.";
407                                        next;
408                                        mes "[Rebarev Doug]";
409                                        mes "Stop looking at me like that, talk to me something!";
410                                        mes "If you are done with talking, let me excuse myself. I need to think of something.";
411                                        next;
412                                        mes "[Rebarev Doug]";
413                                        mes "I appreciate you for delivering me the news of my members -";
414                                        mes "Now, I need to go continue my research...under the commend of His Majesty.";
415                                        mes "May God bless you.";
416                                        set god_eremes,21;
417                                        close;
418                                break;
419
420                                case 2:
421                                        mes "- You pretended as nothing happened -";
422                                        next;
423                                        mes "- and told him about the members of the 1st squad in the 3rd platoon.-";
424                                        next;
425                                        mes "- Of course, you didn't tell him the whole truth but the stuffs you have read from the record plus some real news. -";
426                                        next;
427                                        mes "[Rebarev Doug]";
428                                        mes "Hmm~ I see. I am so relieved to hear they are doing okay! Hahaha...";
429                                        next;
430                                        mes "- You felt the way of him looking at you have been slightly changed. It seemed he started guarding against you?-";
431                                        next;
432                                        mes "[Rebarev Doug]";
433                                        mes "I appreciate you for delivering me the news of my members -";
434                                        mes "Now, I need to go continue my research...under the commend of His Majesty.";
435                                        mes "May God bless you.";
436                                        next;
437                                        mes "- You felt detestableness from his smile.-";
438                                        set god_eremes,22;
439                                        close;
440                                break;
441                        }
442                }
443                else if(god_eremes > 22 && god_eremes < 25)
444                {
445                        mes "- While you were talking about the result of your travel, you mentioned of Egnigem.-";
446                        next;
447                        mes "- He didn't seem to be agitated as though he knew something more than I did.-";
448                        next;
449                        mes "[Rebarev Doug]";
450                        mes "It is too late to talk about the issue...";
451                        mes "even if I felt sorry for you to know that...?";
452                        mes "However...there is nothing left that you can prove.";
453                        mes "Giggle giggle giggle....";
454                        next;
455                        mes "[Rebarev Doug]";
456                        mes "No matter how hard you struggle,";
457                        mes "after all, the elite as me rules the world.";
458                        mes "Giggle giggle...let them roll over the floor as cold and rotten corpses! I do not care about the low!";
459                        next;
460                        mes "[Rebarev Doug]";
461                        mes "Do you hate me? Do you really hate me?";
462                        mes "Let me tell you what you can do.";
463                        next;
464                        mes "[Rebarev Doug]";
465                        mes "Take a look at my back. You will see a judge who is in charge of all the military crimes.";
466                        next;
467                        mes "[Rebarev Doug]";
468                        mes "It seems he will hold a trial if at least 100 people report a same crime...";
469                        mes "So, you can do it if you really want to reveal the issue to the public!";
470                        mes "Muhahahahaha!";
471                        close;
472                }
473                else if(god_eremes > 23 && god_eremes < 26)
474                {
475                        mes "[Rebarev Doug]";
476                        mes "Bah...I didn't know you would actually did it.";
477                        mes "Hey...you will be sorry later...";
478                        mes "After all, the elite as me rules the world.";
479                        close;
480                }
481                else
482                {
483                        mes "[Rebarev Doug]";
484                        mes "No matter how hard you struggle,";
485                        mes "after all, the elite as me rules the world.";
486                        mes "Giggle giggle...let them roll over the floor as cold and rotten corpses! I do not care about the low!";
487                        close;
488                }
489        }
490        else
491        {
492                mes "[Rebarev Doug]";
493                mes "You are not even at a level to speak to me.";
494                mes "Even if you are an adventurer, you are supposed to have some experience and knowledge to have a conversation with me.";
495                mes "don't you agree?";
496                close;
497        }
498}
499else
500{
501        mes "[Rebarev Doug]";
502        mes "We are crusaders who prepare a holy war under the will of Odin.";
503        mes "As we did a thousand years ago, we are waiting for the day to eliminate demons from the world.";
504        close;
505}
506
507}
508
509prt_castle,48,164,0     script  Crusader#God    734,{
510
511if($God1 > 49 && $God2 < 100)
512{
513        if(god_eremes > 22 && god_eremes < 25)
514        {
515                mes "[Max Von Shedough]";
516                mes "Welcome, friend!";
517                mes "Here in the Prontera Castle, we Crusaders are busily preparing for the Holy War that is to come.";
518                next;
519                mes "[Max Von Shedough]";
520                mes "Let me introduce myself. My name is Max Von Shedough, the military judge! Do you have any business with me?";
521                next;
522                mes "^3355FFYou handed Max Von Shedough the petition against Rebarev Doug based on your investigation with Egnigem.^000000";
523                next;
524                mes "[Max Von Shedough]";
525                mes "Hm? This is serious.";
526                mes "Alright, I will investigate your claim to the best of my ability.";
527                next;
528                mes "[Max Von Shedough]";
529                mes "However, as of now, the petition you've just given me is considered classified information. Please keep this a military secret.";
530
531                set $God2,$God2+1;
532
533                if($God2 == 50)
534                        announce "The 2nd seal of [Megingjard] has appeared.",bc_all;
535                else if($God1 > 99 && $God2 > 99 && $God3 > 99 && $God4 > 99)
536                        announce "The four seals have been released at the same time with the seals of [Megingjard].",bc_all;
537                else if($God2 > 99)
538                        announce "The seals of [Megingjard] have been released.",bc_all;
539
540                if(god_eremes == 23)
541                        set god_eremes,25;
542                else if(god_eremes == 24)
543                        set god_eremes,26;
544                close;
545        }
546        else if(god_eremes > 26)
547        {
548                mes "[Max Von Shedough]";
549                mes "Unfortunately, I'm not sure if it's possible to hold a trial against Rebarev Doug.";
550                next;
551                mes "[Max Von Shedough]";
552                mes "Regrettably, it seems that he still has too much influence. Still, let me assure you that I will be trying my best I am not sure if we will hold a trial with the document you have submitted or not...";
553                next;
554                mes "[Max Von Shedough]";
555                mes "But count on me, I am trying my best to get him indicted.";
556                close;
557        }
558        else
559        {
560                mes "[Max Von Shedough]";
561                mes "Welcome, my friend! This is a sacred place to prepare the holy war, the crusader commander's room.";
562                mes "Anyone who wishes to participate in the holy war will be welcomed!";
563                close;
564        }
565}
566else
567{
568        mes "[Max Von Shedough]";
569        mes "Welcome, my friend! This is a sacred place to prepare the holy war, the crusader commander's room.";
570        mes "Anyone who wishes to participate in the holy war will be welcomed!";
571        close;
572}
573
574}
575
576prt_in,172,109,0        script  A File#God1     111,{
577
578if(god_eremes == 12)
579{
580        mes "You have found ^0000FF- The 3rd company personnel in&out record crews -^000000!";
581        close;
582}
583else if(god_eremes > 6 && god_eremes < 12)
584{
585        if(rand(1,10) > 6 && god_eremes > 6)
586        {
587                mes "You found a shelf filled with many files.";
588                mes "You started searching files one by one.";
589                set god_eremes,god_eremes+1;
590                close;
591        }
592        else
593        {
594                mes "You found a shelf filled with many files.";
595                mes "You started searching files one by one.";
596                close;
597        }
598}
599else if(god_eremes < 7)
600{
601        mes "[Librarian Jekan]";
602        if(Sex)
603                mes "I'm sorry sir,";
604        else
605                mes "I'm sorry ma'am,";
606        mes "but special authorization is required to browse that section. Otherwise, it's off limits.";
607        close;
608}
609else
610{
611        mes "[Librarian Jekan]";
612        mes "Please do not enter that section.";
613        next;
614        mes "- You stepped back as he told you to -";
615        close;
616}
617
618}
619
620prt_in,170,109,0        script  A File#God2     111,{
621
622if(god_eremes == 12)
623{
624        mes "You have found ^0000FF- The 3rd company personnel in&out record crews -^000000!";
625        close;
626}
627else if(god_eremes > 6 && god_eremes < 12)
628{
629        if (rand(1,10) > 6 && god_eremes > 6)
630        {
631                mes "You found a shelf filled with many files.";
632                mes "You started searching files one by one.";
633                set god_eremes,god_eremes+1;
634                close;
635        }
636        else
637        {
638                mes "You found a shelf filled with many files.";
639                mes "You started searching files one by one.";
640                close;
641        }
642}
643else if(god_eremes < 7)
644{
645        mes "[Librarian Jekan]";
646        mes "Please do not enter that section.";
647        next;
648        mes "- You stepped back as he told you to -";
649        close;
650}
651else
652{
653        mes "[Librarian Jekan]";
654        mes "Please do not enter that section.";
655        next;
656        mes "- You stepped back as he told you to -";
657        close;
658}
659
660}
661
662prt_in,168,109,0        script  A File#God3     111,{
663
664if(god_eremes == 12)
665{
666        mes "You have found ^0000FF- The 3rd company personnel in&out record crews -^000000!";
667        close;
668}
669else if(god_eremes > 6 && god_eremes < 12)
670{
671        if (rand(1,10) > 6 && god_eremes > 6)
672        {
673                mes "You found a shelf filled with many files.";
674                mes "You started searching files one by one.";
675                set god_eremes,god_eremes+1;
676                close;
677        }
678        else
679        {
680                mes "You found a shelf filled with many files.";
681                mes "You started searching files one by one.";
682                close;
683        }
684}
685else if(god_eremes < 7)
686{
687        mes "[Librarian Jekan]";
688        mes "Please do not enter that section.";
689        next;
690        mes "- You stepped back as he told you to -";
691        close;
692}
693else
694{
695        mes "[Librarian Jekan]";
696        mes "Please do not enter that section.";
697        next;
698        mes "- You stepped back as he told you to -";
699        close;
700}
701
702}
703
704prt_in,169,109,0        script  A File#God4     111,{
705
706if(god_eremes == 12)
707{
708        mes "You have found ^0000FF- The 3rd company personnel in&out record crews -^000000!";
709        close;
710}
711else if(god_eremes > 6 && god_eremes < 12)
712{
713        if (rand(1,10) > 6 && god_eremes > 6)
714        {
715                mes "You found a shelf filled with many files.";
716                mes "You started searching files one by one.";
717                set god_eremes,god_eremes+1;
718                close;
719        }
720        else
721        {
722                mes "You found a shelf filled with many files.";
723                mes "You started searching files one by one.";
724                close;
725        }
726}
727else if(god_eremes < 7)
728{
729        mes "[Librarian Jekan]";
730        mes "Please do not enter that section.";
731        next;
732        mes "- You stepped back as he told you to -";
733        close;
734}
735else
736{
737        mes "[Librarian Jekan]";
738        mes "Please do not enter that section.";
739        next;
740        mes "- You stepped back as he told you to -";
741        close;
742}
743
744}
745
746prt_in,166,109,0        script  A File#God5     111,{
747
748if(god_eremes == 12)
749{
750        mes "You have found ^0000FF- The 3rd company personnel in&out record crews -^000000!";
751        close;
752}
753else if(god_eremes > 6 && god_eremes < 12)
754{
755        if (rand(1,10) > 6 && god_eremes > 6)
756        {
757                mes "You found a shelf filled with many files.";
758                mes "You started searching files one by one.";
759                set god_eremes,god_eremes+1;
760                close;
761        }
762        else
763        {
764                mes "You found a shelf filled with many files.";
765                mes "You started searching files one by one.";
766                close;
767        }
768}
769else if(god_eremes < 7)
770{
771        mes "[Librarian Jekan]";
772        mes "Please do not enter that section.";
773        next;
774        mes "- You stepped back as he told you to -";
775        close;
776}
777else
778{
779        mes "[Librarian Jekan]";
780        mes "Please do not enter that section.";
781        next;
782        mes "- You stepped back as he told you to -";
783        close;
784}
785
786}
787
788prt_in,172,106,0        script  Librarian#God   833,{
789
790if($God1 > 49 && $God2 < 100)
791{
792        if(god_eremes > 2 && god_eremes < 7)
793        {
794                mes "[Librarian Jekan]";
795                mes "Ah, please do not touch the files at this section.";
796                next;
797                mes "[Librarian Jekan]";
798                mes "Some of the information there is classified, and it is therefore prohibited by the Prontera Military to browse through them.";
799                next;
800                mes "[Librarian Jekan]";
801                mes "I'm currently in the process of searching for the classified files in that section, so that I can separate it from the information that is public domain, so I'd appreciate it if you didn't interfere with my work.";
802                next;
803                mes "[Librarian Jekan]";
804                mes "Darn it! I can't read anything when the light is this dim! It's bad enough my eyes have gone bad...";
805                next;
806                mes "[Librarian Jekan]";
807                mes "If you're looking for a book, you ought to go search through another section.";
808                next;
809                        switch( select( "You have bad eyes?", "I want to read some documents.", "Let me help you find those files...", "What kind of files are you looking for?" ) )
810                        {
811                                case 1:
812                                        mes "[Librarian Jekan]";
813                                        mes "Since I have worked under a dim light for a long time, my eyes have gone bad.";
814                                        mes "They should get me ^0000FFa new light^000000, otherwise I will be gone blind sooner or later...";
815                                        if(god_eremes == 5 && ( countitem(2203) > 0 || countitem(1041) > 0 ) )
816                                        {
817                                                next;
818                                                mes "[Librarian Jekan]";
819                                                mes "?! Oh~ you have very useful stuff with you!";
820                                                mes "Do you mind if I use the stuff for a while? It will be very helpful for me to find the files!";
821                                                next;
822                                                switch( select( "Yes, I do mind.", "No, I don't mind." ) )
823                                                {
824                                                        case 1:
825                                                                mes "[Librarian Jekan]";
826                                                                mes "...bah. Never mind then.";
827                                                                close;
828                                                        break;
829
830                                                        case 2:
831                                                                mes "[Librarian Jekan]";
832                                                                mes "What a kind person you are!";
833                                                                mes "Now I can believe that you really meant to help me!";
834                                                                if(countitem(2203) && countitem(1041))
835                                                                {
836                                                                        delitem 1041,countitem(1041);
837                                                                        delitem 2203,1;
838                                                                }
839                                                                else if(countitem(2203))
840                                                                        delitem 2203,1;
841                                                                else if(countitem(1041))
842                                                                        delitem 1041,countitem(1041);
843                                                                set god_eremes,6;
844                                                                next;
845                                                                mes "[Librarian Jekan]";
846                                                                mes "Thank you, thank you so much. Now I can find the file with less worry.";
847                                                                mes "...if it's possible, I wish you could help me to find the file...can you?";
848                                                        break;
849
850                                                }
851                                        }
852                                        else if(god_eremes > 5)
853                                        {
854                                                mes "[Librarian Jekan]";
855                                                mes "Thank you. It will be a good help to find the file.";
856                                        }
857                                        close;
858                                break;
859
860                                case 2:
861                                        if(god_eremes == 6)
862                                        {
863                                                mes "[Librarian Jekan]";
864                                                mes "Read some documents? Well, you've come here to the Library. That's a good start.";
865                                                next;
866                                                mes "[Librarian Jekan]";
867                                                mes "Well, as long as you know what kind of document you're looking for, you might be able to find it.";
868                                                next;
869                                                mes "[Librarian Jekin]";
870                                                mes "Just keep in mind that this particular section is off limits for now. Why don't you check the files at the front?";
871                                                next;
872                                                mes "[Librarian Jekin]";
873                                                mes "I've got to find that classified file as soon as I can!";
874                                                set god_eremes,7;
875                                                close;
876                                        }
877                                        else
878                                        {
879                                                mes "[Librarian Jekan]";
880                                                mes "Hmm...?";
881                                                mes "Hey, haven't";
882                                                mes "I told you already?";
883                                                next;
884                                                mes "[Librarian Jekan]";
885                                                mes "The public is prohibited from browsing the files in this section! How many times do I need to repeat myself?";
886                                                close;
887                                        }
888                                break;
889
890                                case 3:
891                                        if(god_eremes == 4)
892                                        {
893                                                mes "[Librarian Jekan]";
894                                                mes "Hmm. Well, I'd gladly accept your help if it weren't for the fact that I cannot allow classified information to be released to the public.";
895                                                next;
896                                                mes "[Librarian Jekan]";
897                                                mes "I have no idea how something so important was shuffled into the files here in Prontera Library, but we can't allow the public to access it.";
898                                                next;
899                                                mes "[Librarian Jekan]";
900                                                mes "Still, that file doesn't seem to be that important, but I still have to waste my time on finding it...";
901                                                next;
902                                                mes "[Librarian Jekan]";
903                                                mes "Damn, my eyes are sore. Working as a government official is easy except for the times when the bureaucrats make you do stuff like this.";
904                                                set god_eremes,5;
905                                                close;
906                                        }
907                                        else if(god_eremes > 4)
908                                        {
909                                                mes "[Librarian Jekan]";
910                                                mes "I think I'm going to go insane looking for this file...!";
911                                                next;
912                                                mes "[Librarian Jekan]";
913                                                mes "Huh...?";
914                                                mes "Did you just say that you wanted to help me? Sure, I'd appreciate it.";
915                                                close;
916                                        }
917                                        else
918                                        {
919                                                mes "[Librarian Jekan]";
920                                                mes "Um, you're not even supposed to know what kind of file I'm looking for. Even if you did, I'm not allowed to show you what's inside!";
921                                                close;
922                                        }
923                                break;
924
925                                case 4:
926                                        mes "[Librarian Jekan]";
927                                        mes "Hmm. I'm not really allowed to disclose any information related to that file. I'm sorry about that.";
928                                        next;
929                                        mes "[" + strcharinfo(0) + "]";
930                                        mes "But isn't";
931                                        mes "the file about...";
932                                        input @str$;
933                                        mes "^0000FF" + @str$ + "?";
934                                        next;
935                                        if (@str$ == "The 3rd company personnel in&out record crews" || @str$ == "the 3rd company personnel in&out record crews")
936                                        {
937                                                mes "[Librarian Jekan]";
938                                                mes "Hmm...?";
939                                                mes "How did you";
940                                                mes "know about that?";
941                                                set god_eremes,4;
942                                                close;
943                                        }
944                                        else
945                                        {
946                                                mes "[Librarian Jekan]";
947                                                mes "Errmmm...";
948                                                mes "I don't think so....?";
949                                                close;
950                                        }       
951                                break;
952                        }
953        }
954        else if(god_eremes == 2)
955        {
956                mes "[Librarian Jekan]";
957                mes "Ah, please do not touch files in this section. Usually, it's public domain but it seems that a classified file managed to get misplaced there.";
958                next;
959                mes "[Librarian Jekan]";
960                mes "For now, I cannot let anyone without special authorization to look through that section. I must find that file and send it to the Prontera military as soon as I can.";
961                next;
962                mes "[Librarian Jekan]";
963                mes "Ergh! This light isn't bright enough for my eyes. They're starting to get sore again...";
964                next;
965                mes "[Librarian Jekan]";
966                mes "So what brings you here? If you're looking for something in particular, you should try another section.";
967                next;
968                switch( select( "I want to read some documents.", "Do you have bad eyes?", "Let me help you to find the files.", "What kind of files are you looking for?" ) )
969                {
970                        case 1:
971                                mes "[Librarian Jekan]";
972                                mes "Grrrrrrr~ I told you already!";
973                                mes "Files at this section are not for public exhibition, okay?";
974                                mes "Why do you make me repeat the same thing over and over again?";
975                                close;
976                        break;
977
978                        case 2:
979                                mes "[Librarian Jekan]";
980                                mes "Since I have worked under a dim light for a long time, my eyes have gone bad.";
981                                mes "They should get me a new light, otherwise I will be gone blind sooner or later...";
982                                close;
983                        break;
984
985                        case 3:
986                                mes "[Librarian Jekan]";
987                                mes "Um? How do you know what file I am looking for?";
988                                mes "You don't even know what is written inside?";
989                                mes "Stop interrupting me, leave!";
990                                close;
991                        break;
992
993                        case 4:
994                                mes "[Librarian Jekan]";
995                                mes "Hmm. I am not supposed to reveal anything related to the file.";
996                                next;
997                                mes "[" + strcharinfo(0) + "]";
998                                mes "Isn't the file about...";
999                                input @str$;
1000                                mes "[" + strcharinfo(0) + "]";
1001                                mes "^0000FF" + @str$ + "?";
1002                                next;
1003                                mes "[Librarian Jekan]";
1004                                mes "Maybe...";
1005                                mes "Maybe not~";
1006                                close;
1007                        break;
1008
1009                }
1010        }
1011        else if(god_eremes > 6 && god_eremes < 12)
1012        {
1013                if(rand(1,10) > 4)
1014                {
1015                        mes "[Librarian Jekan]";
1016                        mes "Hmm? So did you find it? I've been searching for that file for a long time, but I haven't been able to find it.";
1017                        next;
1018                        mes "[Librarian Jekan]";
1019                        mes "I'll go ahead and search the right side, so do you think you could search the left?";
1020                        close;
1021                }
1022                else
1023                {
1024                        mes "[Librarian Jekan]";
1025                        mes "Did you find it yet? All this time, and I still haven't been able to dig up that file.";
1026                        next;
1027                        mes "[Librarian Jekan]";
1028                        mes "I'll go ahead and check the left side, so would you look for it in the middle or the right side?";
1029                        close;
1030                }
1031        }
1032        else if(god_eremes == 12)
1033        {
1034                mes "[Librarian Jekan]";
1035                mes "Ah! There it is!";
1036                mes "Thank you so much! I'm glad to see that there are still kind and thoughtful people like you in the world.";
1037                next;
1038                mes "[Librarian Jekan]";
1039                mes "I really want to give you something to show you my gratitude, but I've got to send this back to the Prontera Military right away.";
1040                next;
1041                menu "I want to read the document.",-;
1042
1043                mes "[Librarian Jekan]";
1044                mes "Oh, right, you mentioned that, didn't you? It doesn't seem seem so important, but I'm not really quite sure...";
1045                next;
1046                mes "[Librarian Jekan]";
1047                mes "Well, it couldn't hurt if I made a copy of this first for you to read, but first I'll need some materials.";
1048                next;
1049                mes "[Librarian Jekan]";
1050                mes "I'll even cast the search magic on it, so that it'll be just like the original. All right, I need the following things to make a copy...";
1051                next;
1052                mes "[Librarian Jekan]";
1053                mes "2 Slick Paper,";
1054                mes "1 Oil Paper,";
1055                mes "3 Squid Ink,";
1056                mes "3 Feather of Birds and";
1057                mes "20 Blue Gemstones.";
1058                next;
1059                mes "[Librarian Jekan]";
1060                mes "Please get those as soon as possible, and I'll be here making the other preparations to make a copy.";
1061                next;
1062                mes "[Librarian Jekan]";
1063                mes "Also, I'll keep this copy in the Library for you to read, and to prevent it from being leaked to the public. So you'll have to come visit each time you wish to read it.";
1064                next;
1065                mes "[Librarian Jekan]";
1066                mes "Okay, now...";
1067                mes "Come back here";
1068                mes "as soon as you can.";
1069                set god_eremes,13;
1070                close;
1071        }
1072        else if(god_eremes == 13)
1073        {
1074                if(countitem(7111) > 1 && countitem(7151) && countitem(1024) > 2 && countitem(916) > 2 && countitem(717) > 19)
1075                {
1076                        mes "[Librarian Jekan]";
1077                        mes "Oh, you came back. I didn't expect you to return here so quickly. Whatever's inside must be really important for you to know.";
1078                        next;
1079                        mes "[Librarian Jekan]";
1080                        mes "Anyway, please give me a moment while I make that copy for you.";
1081                        delitem 7111,2;
1082                        delitem 7151,1;
1083                        delitem 1024,3;
1084                        delitem 916,3;
1085                        delitem 717,20;
1086                        set god_eremes,14;
1087                        next;
1088                        mes "[Librarian Jekan]";
1089                        mes "Alright then...";
1090                        mes "I'll see you in a bit.";
1091                        close;
1092                }
1093                else
1094                {
1095                        mes "[Librarian Jekan]";
1096                        mes "Have you forgotten what you need to make a copy? Alright, let me tell you again...";
1097                        next;
1098                        mes "[Librarian Jekan]";
1099                        mes "2 Slick Paper,";
1100                        mes "1 Oil Paper,";
1101                        mes "3 Squid Ink,";
1102                        mes "3 Feather of Birds and";
1103                        mes "20 Blue Gemstones.";
1104                        next;
1105                        mes "[Librarian Jekan]";
1106                        mes "Please come back with those items as soon as you can.";
1107                        close;
1108                }
1109        }
1110        else if(god_eremes > 13 && god_eremes < 16)
1111        {
1112                if(rand(1,10) > 4)
1113                {
1114                        mes "[Librarian Jekan]";
1115                        mes "Let me go over and review the document before I make a copy.";
1116                        close;
1117                }
1118                else
1119                {
1120                        mes "[Librarian Jekan]";
1121                        mes "Let me go over and review the document before I make a copy.";
1122                        set god_eremes,god_eremes+1;
1123                        close;
1124                }
1125        }
1126        else if(god_eremes == 16)
1127        {
1128                mes "[Librarian Jekan]";
1129                mes "There you go. As I thought, the document didn't seem to contain any crucially important data.";
1130                next;
1131                mes "[Librarian Jekan]";
1132                mes "Just remember, this copy needs to stay in the Prontera Library. That means you have to come back if you need to read the document again.";
1133                set god_eremes,17;
1134                close;
1135        }
1136        else if(god_eremes > 16)
1137        {
1138                mes "[Librarian Jekan]";
1139                mes "Welcome, my friend!";
1140                mes "So, what do you need today?";
1141                next;
1142                        switch( select( "Search words on the document.", "Quit searching.", "Converse." ) )
1143                        {
1144                                case 1:
1145                                        mes "- Search Magic Initiated -";
1146                                        mes "- Please enter a keyword. -";
1147                                        next;
1148                                        input @str$;
1149                                        if(@str$ == "Crusader" || @str$ == "crusader")
1150                                        {
1151                                                mes "- search with the keyword : Crusader -";
1152                                                mes "Crusader : Warriors that prepare themselves for a holy war. They are selected from well-experienced and religious swordsmen.";
1153                                                mes "Any data regarding the military power is confidential, cannot be searched.";
1154                                                next;
1155                                                mes "This document is specified with the personnel in&out record of the 3rd company.";
1156                                                set @godtemplib4,1;
1157                                                close;
1158                                        }
1159                                        else if((@str$ == "The 3rd company" || @str$ == "the 3rd company" || @str$ == "The third company") && @godtemplib4)
1160                                        {
1161                                                mes "- search with the keyword : " + @str$ + " -";
1162                                                mes "The 3rd company : Crusaders.";
1163                                                mes "The 3rd comany is known as organized with the best members of crusaders,";
1164                                                mes "there have been no report regarding the personnel in&out record of this company. However,";
1165                                                next;
1166                                                mes "The 3rd squad in the 1st platoon of the 3rd comany was an exception of that case,";
1167                                                mes "the members of the 1st squad were all retired or transfered to other forces.";
1168                                                mes "Specific information can be searched within the article about the 1st platoon.";
1169                                                set @godtemplib1,1;
1170                                                close;
1171                                        }
1172                                        else if((@str$ == "The 1st platoon" || @str$ == "the 1st platoon" || @str$ == "The first platoon") && @godtemplib1)
1173                                        {
1174                                                mes "- search with the keyword : " + @str$ + " -";
1175                                                mes "The 1st platoon : The 1st platoon of the 3rd company, Crusaders.";
1176                                                mes "Each company consists of 4 platoons, and this is only one record regarding the 3rd squad of the 1st platoon.";
1177                                                next;
1178                                                mes "Specific information can be searched within the article about the 3rd squad.";
1179                                                set @godtemplib2,1;
1180                                                close;
1181                                        }
1182                                        else if((@str$ == "The 3rd squad" || @str$ == "the 3rd squad" || @str$ == "The third squad") && @godtemplib2)
1183                                        {
1184                                                mes "- search with the keyword : " + @str$ + " -";
1185                                                mes "The 3rd squad : Crusaders.";
1186                                                mes "Member list who participated in ^0000FFthe last mission^000000.";
1187                                                next;
1188                                                mes "^0000FF : Rebarev Doug";
1189                                                mes " : Jack O";
1190                                                mes " : Zan.Huadoku";
1191                                                mes " : Cuaque Donon";
1192                                                mes " : Emma Searth";
1193                                                mes " : Royal Myst";
1194                                                mes " : The Nineball^000000";
1195                                                set @godtemplib3,1;
1196                                                if(god_eremes == 17)set god_eremes,18;
1197                                                close;
1198                                        }
1199                                        else if((@str$ == "The last mission" || @str$ == "the last mission") && @godtemplib3)
1200                                        {
1201                                                mes "- search with the keyword : " + @str$ + " -";
1202                                                mes "The upper part decided to disband the 3rd squad which was the best search party of the crusader force after the following mission.";
1203                                                next;
1204                                                mes "The 3rd squad was secretly assigned to track down ^0000FFthe signs of God^000000 under a command from the royal court.";
1205                                                next;
1206                                                mes "During the mission, an unexpected incident happened.";
1207                                                mes "A member started second guessing the squad leader's leadership and ^0000FFacting on his own authority^000000.";
1208                                                next;
1209                                                mes "It resulted in a factional dispute. In order to solve the problem, the leader held a meeting with the others.";
1210                                                mes "Based on other's opinions, the squad leader concluded the member's behaviour as ^0000FFinsubordination^000000,";
1211                                                next;
1212                                                mes "and he and other members did a physical punishment onto the member. The member was reported to be injured and dropped from the squad during the mission.";
1213                                                next;
1214                                                mes "Due to this disgraceful incident, the 3rd squad could not complete the mission.";
1215                                                mes "And because of the unsatisfying mission result, the 3rd squad leader was pressed hard by the 1st platoon leader and the 3rd company commendant.";
1216                                                next;
1217                                                mes "The 3rd company commandant proposed disband of the 3rd squad to upper hierarchy and his proposal was accepted.";
1218                                                mes "After the 3rd squad was disbanded, the members including the squad leader were sent to diciplinary retraining for 3 moths. After that retraining, all of them were transfered to the other squad.";
1219                                                next;
1220                                                mes "Currently Rebarev Doug who was the 3rd squad leader at the time have been researching the signs of God based on the mission result.";
1221                                                mes "And the research was ordered by the King of Rune-Midgarts Kingdom.";
1222                                                close2;
1223                                                if(god_eremes == 18)set god_eremes,19;
1224                                                end;
1225                                        }
1226                                        else if((@str$ == "The 1st platoon" || @str$ == "the 1st platoon" || @str$ == "The first platoon") && @godtemplib4)
1227                                        {
1228                                                mes "- search with the keyword : " + @str$ + " -";
1229                                                mes "The 1st platoon : The 1st platoon of the 3rd company, Crusaders.";
1230                                                mes "Each company consists of 4 platoons and this is the first of the four.";
1231                                                next;
1232                                                mes "The 1st platoon of the 1st company, Crusader force.";
1233                                                mes "Suggested to search 'Company' a higher rank keyword.";
1234                                                next;
1235                                                mes "Other information is confidential, cannot be searched on this document.";
1236                                                close;
1237                                        }
1238                                        else if((@str$ == "The 3rd squad" || @str$ == "the 3rd squad" || @str$ == "The third squad") && @godtemplib1)
1239                                                {
1240                                                mes "- search with the keyword : " + @str$ + " -";
1241                                                mes "The 3rd squad : Crusaders.";
1242                                                mes "Each platoon consists of 4 squads and this is the third of the four.";
1243                                                mes "Suggested to search 'Platoon' a higher rank keyword.";
1244                                                next;
1245                                                mes "Generally a squad has 8 members within.";
1246                                                mes "Other information is confidential, cannot be searched on this document.";
1247                                                close;
1248                                        }
1249                                        else if(@str$ == "The last mission" || @str$ == "the last mission")
1250                                        {
1251                                                mes "- search with the keyword : " + @str$ + " -";
1252                                                mes "- No result has been found.-";
1253                                                mes "- Suggested to enter a specific name of the force for a better research.-";
1254                                                close;
1255                                        }
1256                                        else if((@str$ == "Crusader" || @str$ == "crusader") && @godtemplib4)
1257                                        {
1258                                                mes "- search with a keyword : " + @str$ + " -";
1259                                                mes "The 3rd company : Crusaders.";
1260                                                mes "The 3rd comany is known as organized with the best members of crusaders,";
1261                                                mes "there have been no report regarding the personnel in&out record of this company. However,";
1262                                                next;
1263                                                mes "The 3rd squad in the 1st platoon of the 3rd comany was an exception of that case,";
1264                                                mes "the members of the 1st squad were all retired or transfered to other forces.";
1265                                                mes "Specific information can be searched within the article about the 1st platoon.";
1266                                                close;
1267                                        }
1268                                        else if(@str$ == "The 1st platoon" || @str$ == "the 1st platoon" || @str$ == "The first platoon")
1269                                        {
1270                                                mes "- search with the keyword : " + @str$ + " -";
1271                                                mes "The 1st platoon : ";
1272                                                mes "- No result has been found.-";
1273                                                mes "- Suggested to enter a more specific keyword.-";
1274                                                close;
1275                                        }
1276                                        else if(@str$ == "The 3rd squad" || @str$ == "the 3rd squad" || @str$ == "The third squad")
1277                                        {
1278                                                mes "- search with the keyword : " + @str$ + " -";
1279                                                mes "The 3rd company : ";
1280                                                mes "- No result has been found.-";
1281                                                mes "- Suggested to enter a more specific keyword.-";
1282                                                close;
1283                                        }
1284                                        else if((@str$ == "The last mission" || @str$ == "the last mission") && god_eremes > 17) // ž¶Áöž· ÀÓ¹«
1285                                        {
1286                                                mes "- search with the keyword : " + @str$ + " -";
1287                                                mes "- No result has been found.-";
1288                                                mes "- Suggested to enter a specific name of the force for a better research.-";
1289                                                close;
1290                                        }
1291                                        else if(@str$ == "Rebarev Doug")
1292                                        {
1293                                                mes "- search with the keyword : " + @str$ + " -";
1294                                                mes "The former leader of the 3rd squad in the 1st platoon of the 3rd company.";
1295                                                mes "Has been in service as an instructor of crusader boot camp with the Prontera Castle.";
1296                                                mes "Also he's in charge of a research under a command from the royal court.";
1297                                                close;
1298                                        }
1299                                        else if(@str$ == "Egnigem")
1300                                        {
1301                                                mes "- search with the keyword : " + @str$ + " -";
1302                                                mes "No result has been found.";
1303                                                mes "No result has been found.";
1304                                                mes "No result has been found.";
1305                                                mes "No result has been found.";
1306                                                mes "No result has been found.";
1307                                                mes "No result has been found.";
1308                                                mes "^FF0000This word is prohibited to research.^000000";
1309                                                close;
1310                                        }
1311                                        else if(@str$ == "Zan.Huadoku")
1312                                        {
1313                                                mes "- search with the keyword : " + @str$ + " -";
1314                                                mes "The former member of the 3rd squad in the 1st platoon of the 3rd company.";
1315                                                mes "Has been in service as a weapon quartermaster in Geffen ever since the squad was disbanded.";
1316                                                mes "Current location : Blacksmith guild, Geffen.";
1317                                                close;
1318                                        }
1319                                        else if(@str$ == "Cuaque Donon")
1320                                        {
1321                                                mes "- search with the keyword : " + @str$ + " -";
1322                                                mes "The former member of the 3rd squad in the 1st platoon of the 3rd company.";
1323                                                mes "Retired from service and went back to his home town, Morroc ever since the squad was disbanded.";
1324                                                mes "Reported to work for an inn in Morroc.";
1325                                                close;
1326                                        }
1327                                        else if(@str$ == "Jack O")
1328                                        {
1329                                                mes "- search with the keyword : " + @str$ + " -";
1330                                                mes "The former member of the 3rd squad in the 1st platoon of the 3rd company.";
1331                                                mes "Has been in service as a recruiting officer in Alberta ever since the squad was disbanded.";
1332                                                mes "Current location : Near Alberta port.";
1333                                                close;
1334                                        }
1335                                        else if(@str$ == "Emma Searth")
1336                                        {
1337                                                mes "- search with the keyword : " + @str$ + " -";
1338                                                mes "The former member of the 3rd squad in the 1st platoon of the 3rd company.";
1339                                                mes "Retired from service and went to Al De Baran to do something different ever since the squad was disbanded.";
1340                                                mes "Reported to submit a resume to the Kafra corporation.";
1341                                                close;
1342                                        }
1343                                        else if(@str$ == "Royal Myst")
1344                                        {
1345                                                mes "- search with the keyword : " + @str$ + " -";
1346                                                mes "The former member of the 3rd squad in the 1st platoon of the 3rd company.";
1347                                                mes "Has been in service in Comodo ever since the squad was disbanded.";
1348                                                mes "Current duty is unknown.";
1349                                                mes "Current lcation : A casino in Comodo.";
1350                                                close;
1351                                        }
1352                                        else if(@str$ == "The Nineball")
1353                                        {
1354                                                mes "- search with the keyword : " + @str$ + " -";
1355                                                mes "The former member of the 3rd squad in the 1st platoon of the 3rd company.";
1356                                                mes "Has been in service as the security officer of Jawaii ever since the squad was disbanded.";
1357                                                mes "Current location : A tavern in Jawaii.";
1358                                                close;
1359                                        }
1360                                        else
1361                                        {
1362                                                mes "- search with the keyword : " + @str$ + " -";
1363                                                mes "- No result has been found.-";
1364                                                close;
1365                                        }
1366                                break;
1367
1368                                case 2:
1369                                        mes "- Search magic is being shut down.-";
1370                                        next;
1371                                        mes "- There is no response from the search magic.-";
1372                                        mes "- Would you like to shut down immediately?-";
1373                                        next;
1374                                        mes " - If you shut down without properly closing the magic -";
1375                                        mes "- there is a high possibility to damage unsaved data. -";
1376                                        next;
1377                                        mes "- ... -";
1378                                        next;
1379                                        mes "- ...... -";
1380                                        next;
1381                                        mes "- ........search magic is being shut down. -";
1382                                        close;
1383                                break;
1384
1385                                case 3:
1386                                        mes "[Librarian Jekan]";
1387                                        mes "You can tell our government doesn't really know how to allocate its funds and resources.";
1388                                        next;
1389                                        mes "[Librarian Jekan]";
1390                                        mes "First, there's Jawaii. Do newlyweds really need an entire island for themselves? Then again, I am single so I'm probably biased.";
1391                                        next;
1392                                        mes "[Librarian Jekan]";
1393                                        mes "And look at me. Geniuses aren't supposed to waste their precious time doing useless things for libraries!";
1394                                        close;
1395                                break;
1396                        }
1397        }
1398        else
1399        {
1400                mes "[Librarian Jekan]";
1401                mes "Ah, please do not touch any books in that section. ...I'm sure there's nothing there that could be useful to you.";
1402                next;
1403                switch( select( "Ignore him and check books.", "Step back." ) )
1404                {
1405                        case 1:
1406                                mes "[Librarian Jekan]";
1407                                mes "Hey...!";
1408                                mes "I thought I said";
1409                                mes "not to touch those!";
1410                                close2;
1411                                warp "prontera",120,264;
1412                                end;
1413                        break;
1414
1415                        case 2:
1416                                mes "[Librarian Jekan]";
1417                                mes "Thank you. Feel free to browse through the other sections.";
1418                                next;
1419                                mes "[Librarian Jekan]";
1420                                mes "It's really nice to have visitors in the Library, especially when so many people don't read books nowadays.";
1421                                close;
1422                        break;
1423                }
1424        }
1425}
1426else
1427{
1428        mes "[Librarian Jekan]";
1429        mes "Ah, please do not touch any books in that section.";
1430        mes "....there is nothing much useful for you there.";
1431        next;
1432        switch( select( "Ignore him and check books.", "Step back." ) )
1433        {
1434                case 1:
1435                        mes "[Librarian Jekan]";
1436                        mes "I told you not to touch books there!";
1437                        close2;
1438                        warp "prontera",120,264;
1439                        end;
1440                break;
1441
1442                case 2:
1443                        mes "[Librarian Jekan]";
1444                        mes "Good, you may go check other sections though.";
1445                        mes "It's good to see a man visiting a library when people don't read books nowadays.";
1446                        close;
1447                break;
1448        }
1449}
1450
1451}
1452
1453geffen_in,109,161,3     script  Crusader#God1   751,{
1454
1455if($God1 > 49 && $God2 < 100)
1456{
1457        if(god_eremes > 17 && god_megin_1 < 2)
1458        {
1459                mes "[Zan.Huadoku]";
1460                mes "^333333*Phew...*^000000";
1461                mes "This work is really getting to me. Going on a mission with my war buddies sounds a lot better than this.";
1462                next;
1463                mes "[Zan.Huadoku]";
1464                mes "At least in those days, I felt like I was actually doing something useful!";
1465                next;
1466                mes "[Zan.Huadoku]";
1467                mes "Hey...";
1468                mes "Can I help you";
1469                mes "with anything?";
1470                next;
1471                switch( select( "Ask him about the 3rd squad.", "Ask him how he's been doing.", "Ask him about the 3rd Squad's last mission." ) )
1472                {
1473                        case 1:
1474                                if(god_eremes == 18)
1475                                {
1476                                        mes "[Zan.Huadoku]";
1477                                        mes "Yeah, I was a member of the 3rd squad in the 1st platoon a long time ago. How did you know that?";
1478                                        next;
1479                                        mes "[Zan.Huadoku]";
1480                                        mes "I miss the guys back in the squad. I wonder how our leader's been doing recently...";
1481                                        next;
1482                                        mes "^3355FFYou tell Zan about Rebarev Doug, and about how he is now an instructor for Crusader Boot Camp. He seems to be absorbed in his thoughts of the past.^000000";
1483                                        close;
1484                                }
1485                                else if(god_eremes > 18)
1486                                {
1487                                        mes "[Zan.Huadoku]";
1488                                        mes "Yeah, I was a member of the 3rd squad in the 1st platoon a long time ago. How did you know that?";
1489                                        next;
1490                                        mes "[Zan.Huadoku]";
1491                                        mes "I miss the guys back in the squad. I wonder how our leader's been doing recently...";
1492                                        next;
1493                                        mes "^3355FFYou tell Zan about Rebarev Doug, and about how he is now an instructor for Crusader Boot Camp. He seems to be absorbed in his thoughts of the past.^000000";
1494                                        next;
1495                                        mes "[Zan.Huadoku]";
1496                                        mes "...";
1497                                        mes "......";
1498                                        next;
1499                                        mes "[Zan.Huadoku]";
1500                                        mes "Before we went out on our last mission, the seven of us were like brothers and sisters. If ^FF0000he^000000 didn't disobey the order, we'd still be together today.";
1501                                        next;
1502                                        mes "[Zan.Huadoku]";
1503                                        mes "Wait, what was his name...? That's weird. There's no way I could forget something like that...";
1504                                        next;
1505                                        mes "[Zan.Huadoku]";
1506                                        mes "H-how can I not remember his name! He's the reason my life is...!";
1507                                        next;
1508                                        mes "[Zan.Huadoku]";
1509                                        mes "^333333*Groan...*^000000";
1510                                        mes "I.... My head...";
1511                                        mes "My head hurts...";
1512                                        next;
1513                                        mes "[Zan.Huadoku]";
1514                                        mes "^3355FFZan looks very confused and his eyes begin to glaze with a dazed look. You try speaking to him again, but he doesn't respond at all.^000000";
1515                                        if(!god_megin_1)set god_megin_1,1;
1516                                        close;
1517                                }
1518                        break;
1519
1520                        case 2:
1521                                mes "[Zan.Huadoku]";
1522                                mes "How am I been doing?";
1523                                mes "Well, I work for the Blacksmith Guild, picking out good weapons to supply the Crusaders.";
1524                                next;
1525                                mes "[Zan.Huadoku]";
1526                                mes "Sometimes, I get really bored with what I'm doing. I keep trying to convince myself that my job's important to future Crusaders, but...";
1527                                next;
1528                                mes "[Zan.Huadoku]";
1529                                mes "You know what? A lot of people have been asking me weird questions about me recently. I feel like I'm getting spied on, but maybe I'm just getting paranoid.";
1530                                close;
1531                        break;
1532
1533                        case 3:
1534                                if(god_eremes == 18)
1535                                {
1536                                        mes "[Zan.Huadoku]";
1537                                        mes "Yeah, on our";
1538                                        mes "final mission...";
1539                                        next;
1540                                        mes "[Zan.Huadoku]";
1541                                        mes "Final...? What the? I know it happened, but for some reason, all I can envision is a complete blank when I try to think about it.";
1542                                        next;
1543                                        mes "[Zan.Huadoku]";
1544                                        mes "I...";
1545                                        mes "I guess I need something to remind me? I know it happened, but... I'm so confused.";
1546                                        next;
1547                                        mes "^3355FFZan seems to be having a very difficult time recalling that specific memory of his past.^000000";
1548                                        close;
1549                                }
1550                                else if(god_eremes > 18 && god_megin_1 > 0)
1551                                {
1552                                        mes "[Zan.Huadoku]";
1553                                        mes "The last mission...";
1554                                        next;
1555                                        mes "[Zan.Huadoku]";
1556                                        mes "Umm...I cannot recall any memory about the mission...maybe I need a clue.";
1557                                        next;
1558                                        mes "- He seemed to have a hard time to remember something. -";
1559                                        next;
1560                                        mes "- You started telling him what you have read from the document.-";
1561                                        next;
1562                                        mes ".....";
1563                                        next;
1564                                        mes "The upper part decided to disband the 3rd squad which was the best search party of the crusader force after the following mission.";
1565                                        next;
1566                                        mes "The 3rd squad was secretly assigned to track down ^0000FFthe signs of God^000000 under a command from the royal court.";
1567                                        next;
1568                                        mes "During the mission, an unexpected incident happened.";
1569                                        mes "A member started second guessing the squad leader's leadership and ^0000FFacting on his own authority^000000.";
1570                                        next;
1571                                        mes "It resulted in a factional dispute. In order to solve the problem, the leader held a meeting with the others.";
1572                                        mes "Based on other's opinions, the squad leader concluded the member's behaviour as ^0000FFinsubordination^000000,";
1573                                        next;
1574                                        mes "and he and other members did a physical punishment onto the member. The member was reported to be injured and dropped from the squad during the mission.";
1575                                        next;
1576                                        mes "Due to this disgraceful incident, the 3rd squad could not complete the mission.";
1577                                        mes "And because of the unsatisfying mission result, the 3rd squad leader was pressed hard by the 1st platoon leader and the 3rd company commendant.";
1578                                        next;
1579                                        mes "The 3rd company commandant proposed disband of the 3rd squad to upper hierarchy and his proposal was accepted.";
1580                                        mes "After the 3rd squad was disbanded, the members including the squad leader were sent to diciplinary retraining for 3 moths. After that retraining, all of them were transfered to the other squad.";
1581                                        next;
1582                                        mes "Currently Rebarev Doug who was the 3rd squad leader at the time have been researching the signs of God based on the mission result.";
1583                                        mes "And the research was ordered by the King of Rune-Midgarts Kingdom.";
1584                                        next;
1585                                        mes ".....................";
1586                                        next;
1587                                        mes "............";
1588                                        next;
1589                                        mes ".....";
1590                                        next;
1591                                        mes "[Zan.Huadoku]";
1592                                        mes "Y-yeah that's right! And then three days after we started the mission, we found some kind of...";
1593                                        next;
1594                                        mes "[Zan.Huadoku]";
1595                                        mes "Well, I'm not sure what it was. But we found an ^0000FFunknown fragment^000000 that was a sign from God! And then...!";
1596                                        next;
1597                                        mes "[Zan.Huadoku]";
1598                                        mes "And then...";
1599                                        mes "Oh. Oh God.";
1600                                        mes "I can't remember...";
1601                                        next;
1602                                        mes "[Zan.Huadoku]";
1603                                        mes "I can't think about anything further than that. I can't even remember what we found. But I'm sure it was damned important.";
1604                                        next;
1605                                        mes "^3355FFZan stood still in silence, with a pained look on his face.^000000";
1606                                        if(god_megin_1 == 1)set god_megin_1,2;
1607                                        close;
1608                                }
1609                                else
1610                                {
1611                                        mes "[Zan.Huadoku]";
1612                                        mes "The last mission...";
1613                                        next;
1614                                        mes "[Zan.Huadoku]";
1615                                        mes "Umm...I cannot recall any memory about the mission...maybe I need a clue.";
1616                                        next;
1617                                        mes "- He seemed to have a hard time to remember something. -";
1618                                        close;
1619                                }
1620                        break;
1621                }
1622        }
1623        else if(god_megin_1 > 1 && god_megin_1 < 3)
1624        {
1625                mes ".....................";
1626                next;
1627                mes "............";
1628                next;
1629                mes ".....";
1630                next;
1631                mes "[Zan.Huadoku]";
1632                mes "I recalled something.";
1633                mes "3 days later from the day we started our mission, we found ^0000FFan unknown fragment^000000 that was a sign of God!";
1634                mes "And then...";
1635                mes "And then...";
1636                mes "And then...";
1637                next;
1638                mes "[Zan.Huadoku]";
1639                mes "I am sorry...I cannot remember more than that...";
1640                mes "I cannot even remember what it was that we found...";
1641                mes "I have been suffering ^0000FFever since the 3 months^000000 later...";
1642                next;
1643                mes "- He stood still with a painful look on his face.-";
1644                set god_megin_1,3;
1645                close;
1646        }
1647        else if(god_megin_1 > 2)
1648        {
1649                mes "^3355FFGrabbing his head, tearing his hair and writhing in Agony, Zan kept repeating the same words over and over again...^000000";
1650                next;
1651                mes "[Zan.Huadoku]";
1652                mes "3 days later! We f-found some ^0000FFfragment^000000! It was G-God's sign! But why can't I remember?! Why?!";
1653                close;
1654        }
1655        else
1656        {
1657                mes "[Zan.Huadoku]";
1658                mes "Hey yo.";
1659                mes "Can I help you?";
1660                close;
1661        }
1662}
1663else
1664{
1665        mes "[Zan.Huadoku]";
1666        mes "Good day!";
1667        mes "Do you know the";
1668        mes "importance of supply?";
1669        next;
1670        switch( select( "No.", "Yes!" ) )
1671        {
1672                case 1:
1673                        mes "[Zan.Huadoku]";
1674                        mes "Any military force or party needs their supplies to be replenished if they are to continue battling for a prolonged period of time.";
1675                        next;
1676                        mes "[Zan.Huadoku]";
1677                        mes "For instance, let's say your group go on hunting without a healer. In this case, everyone would consume health restoration items, like potions.";
1678                        next;
1679                        mes "[Zan.Huadoku]";
1680                        mes "Since you can only carry so many items at once, you'll eventually run out of potions.";
1681                        next;
1682                        mes "[Zan.Huadoku]";
1683                        mes "But if one of your party members traveled between town and the hunting area, he could supply your party with new healing items.";
1684                        next;
1685                        mes "[Zan.Huadoku]";
1686                        mes "Supplying your party in this way would let you hunt with less worry. For that duty, the Merchant class would be the best by using their Carts.";
1687                        next;
1688                        mes "[Zan.Huadoku]";
1689                        mes "I suppose that's why I'm working here in the Blacksmith Guild. As weapon quartermaster, I'm obligated to provide supplies for the Crusader forces.";
1690                        next;
1691                        mes "[Zan.Huadoku]";
1692                        mes "The Blacksmiths in this guild also help me provide high quality weapons for the Crusades as well.";
1693                        next;
1694                        mes "[Zan.Huadoku]";
1695                        mes "If you happen to run out of health items while hunting, why don't you ask a Merchant for help?";
1696                        next;
1697                        mes "[Zan.Huadoku]";
1698                        mes "Most likely, they will have some spare items and would be willing to share with you if you ask nicely enough.";
1699                        next;
1700                        mes "[Zan.Huadoku]";
1701                        mes "I hope to see you later again! May Odin protect you on your journeys.";
1702                        close;
1703                break;
1704
1705                case 2:
1706                        mes "[Zan.Huadoku]";
1707                        mes "Oh...";
1708                        mes "Well then.";
1709                        mes "In that case.";
1710                        next;
1711                        mes "[Zan.Huadoku]";
1712                        mes "Let me tell you about some useful knowledge I learned while working with the Blacksmiths.";
1713                        next;
1714                        mes "[Zan.Huadoku]";
1715                        mes "A Blacksmith character's forging skills are affected by the DEX and LUK stats. DEX and LUK also affect the item creation skills for Alchemists.";
1716                        next;
1717                        mes "[Zan.Huadoku]";
1718                        mes "Since I've been staying here in the Blacksmith guild, I'm trying to better understand Blacksmiths and develop a deeper appreciation of their work.";
1719                        next;
1720                        mes "[Zan.Huadoku]";
1721                        mes "Alright then...";
1722                        mes "Take it easy.";
1723                        close;
1724                break;
1725        }
1726}
1727
1728}
1729
1730morocc_in,146,179,0     script  Employee#God1   66,{
1731
1732if($God1 > 49 && $God2 < 100)
1733{
1734        if(god_eremes > 17 && god_megin_2 < 1)
1735        {
1736                mes "^3355FFThe Inn Employee eyes you suspiciously.^000000";
1737                next;
1738                mes "[Inn Employee]";
1739                mes "May I help you?";
1740                next;
1741                mes "[Inn Employee]";
1742                mes "Excuse me.";
1743                mes "How can I help you?";
1744                next;
1745                input @str$;
1746                if (@str$ == "Cuaque Donon" || @str$ == "Cuaque" || @str$ == "Donon")
1747                {
1748                        mes "[" + strcharinfo(0) + "]";
1749                        mes "Do you happen to know a person named " + @str$ + " ...?";
1750                        if (god_eremes == 18)
1751                        {
1752                                mes "[Inn Employee]";
1753                                mes "I don't think I know that person. I guess that guy left before I started working here, maybe?";
1754                                close;
1755                        }
1756                        else if(god_eremes > 18)
1757                        {
1758                                next;
1759                                mes "^3355FFOnce you said that name, she immediately drew closer to you and began speaking in a low, threatening tone.^000000";
1760                                next;
1761                                mes "[Scary Inn Employee]";
1762                                mes "Who the hell are you? If you try anything funny, I'll rip your heart out!";
1763                                next;
1764                                mes "[Ms. Scary Inn Employee]";
1765                                mes "Why are you so curious?! Are you one of them?! How the hell did you find me?!";
1766                                next;
1767                                switch( select( "Rebarev Doug is wondering about you.", "I am wondering why he's hiding.", "Just a curiosity." ) )
1768                                {
1769                                        case 1:
1770                                                if(rand(1,10) > 3)
1771                                                {
1772                                                        mes "[Ms. Scary Inn Employee]";
1773                                                        mes "Hah!...yeah, I was told thousand times about that.";
1774                                                        mes "That old must be afraid of the rumor spreaded to public...";
1775                                                        mes "...he must be that desperate to send men to find me.";
1776                                                        next;
1777                                                        mes "[Ms. Scary Inn Employee]";
1778                                                        mes "However!";
1779                                                        mes "I am not in the mood for guiding you to him today!";
1780                                                        next;
1781                                                        mes "- As she released the grip of a sword, -";
1782                                                        mes "- she hit you with might by the nape of your neck. -";
1783                                                        close2;
1784                                                        percentheal -100,0;
1785                                                        end;
1786                                                }
1787                                                else
1788                                                {
1789                                                        mes "[Ms. Scary Inn Employee]";
1790                                                        mes "Hah!...yeah, I was told thousand times about that.";
1791                                                        mes "That old must be afraid of the rumor spreaded to public...";
1792                                                        mes "...he must be that desperate to send men to find me.";
1793                                                        next;
1794                                                        mes "[Ms. Scary Inn Employee]";
1795                                                        mes "Okay, I think it's the time to give out a hint to the old dog. But, you got only one chance to listen to me.";
1796                                                        next;
1797                                                        mes "- She whispered to your ears.-";
1798                                                        mes "^0000FFAragham never hoarded upgrade items.^000000";
1799                                                        set god_megin_2,1;
1800                                                        close;
1801                                                }
1802                                        break;
1803
1804                                        case 2:
1805                                                if(rand(1,10) > 4)
1806                                                {
1807                                                        mes "[Ms. Scary Inn Employee]";
1808                                                        mes "Bah...since you are here, that means you know why he has hid himself in here.";
1809                                                        mes "I cannot trust you as I saw you lying.";
1810                                                        next;
1811                                                        mes "[Ms. Scary Inn Employee]";
1812                                                        mes "It's the time to go to bed!";
1813                                                        mes "I am not in the mood for guiding you to him today!";
1814                                                        next;
1815                                                        mes "- As she released the grip of a sword, -";
1816                                                        mes "- she hit you with might by the nape of your neck. -";
1817                                                        close2;
1818                                                        percentheal -100,0;
1819                                                }
1820                                                else
1821                                                {
1822                                                        mes "[Ms. Scary Inn Employee]";
1823                                                        mes "Bah...since you are here, that means you know why he has hid himself in here.";
1824                                                        mes "You're a sly dog, aren't you?";
1825                                                        next;
1826                                                        mes "[Ms. Scary Inn Employee]";
1827                                                        mes "Well, I don't think a hint will do any harm. Somehow you don't look that dangerous.";
1828                                                        next;
1829                                                        mes "- She whispered to your ears.-";
1830                                                        mes "^0000FFAragham never hoarded upgrade items.^000000";
1831                                                        set god_megin_2,1;
1832                                                        close;
1833                                                }
1834                                        break;
1835
1836                                        case 3:
1837                                                if (rand(1,10) > 3)
1838                                                {
1839                                                        mes "[Ms. Scary Inn Employee]";
1840                                                        mes "Just a curiosity? Hahaha!";
1841                                                        mes "You have a lot of guts, don't you?";
1842                                                        next;
1843                                                        mes "[Ms. Scary Inn Employee]";
1844                                                        mes "I am sorry to tell you this...but";
1845                                                        next;
1846                                                        mes "[Ms. Scary Inn Employee]";
1847                                                        mes "You are the type of a man that";
1848                                                        mes "I hate the most!";
1849                                                        next;
1850                                                        mes "- As she released the grip of a sword, -";
1851                                                        mes "- she hit you with might by the nape of your neck. -";
1852                                                        close2;
1853                                                        percentheal -100,0;
1854                                                        end;
1855                                                }
1856                                                else
1857                                                {
1858                                                        mes "[Ms. Scary Inn Employee]";
1859                                                        mes "Just a curiosity? Hahaha!";
1860                                                        mes "You have a lot of guts, don't you?";
1861                                                        next;
1862                                                        mes "[Ms. Scary Inn Employee]";
1863                                                        mes "Oh well, sometimes that can be looked as cute.";
1864                                                        mes "Listen to me well, I am giving you only one chance.";
1865                                                        next;
1866                                                        mes "- She whispered to your ears.-";
1867                                                        mes "^0000FFAragham never hoarded upgrade items.^000000";
1868                                                        set god_megin_2,1;
1869                                                        close;
1870                                                }
1871                                        break;
1872                                }
1873                        }
1874                }
1875                else
1876                {
1877                        mes "[Inn Employee]";
1878                        mes "......?";
1879                        mes "I am sorry but I think you misunderstood something here.";
1880                        close;
1881                }
1882        }
1883        else if(god_megin_2 > 0)
1884        {
1885                mes "[Inn Employee]";
1886                mes "How can I help you?";
1887                next;
1888                mes "[Inn Employee]";
1889                mes "Welcome to the inn.";
1890                mes "When you move to the entrance, you can also enter a PvP zone though a PvP doorman.";
1891                next;
1892                mes "[Inn Employee]";
1893                mes "Usually you can visit inns in big towns.";
1894                mes "If you want to take some rest or to compete your power with others, this is the place where you come.";
1895                next;
1896                mes "- She welcomed you with professional manner as though there was nothing happened. -";
1897                close;
1898        }
1899        else
1900        {
1901                mes "[Inn Employee]";
1902                mes "How can I help you?";
1903                next;
1904                mes "[Inn Employee]";
1905                mes "Welcome to the inn.";
1906                mes "When you move to the entrance, you can also enter a PvP zone though a PvP doorman.";
1907                next;
1908                mes "[Inn Employee]";
1909                mes "Usually you can visit inns in big towns.";
1910                mes "If you want to take some rest or to compete your power with others, this is the place where you come.";
1911                close;
1912        }
1913}
1914else
1915{
1916        mes "[Inn Employee]";
1917        mes "How can I help you?";
1918        next;
1919        mes "[Inn Employee]";
1920        mes "Welcome to the inn.";
1921        mes "When you move to the entrance, you can also enter a PvP zone though a PvP doorman.";
1922        next;
1923        mes "[Inn Employee]";
1924        mes "Usually you can visit inns in big towns.";
1925        mes "If you want to take some rest or to compete your power with others, this is the place where you come.";
1926        next;
1927        mes "[Inn Employee]";
1928        mes "Oh, also I have a secret to tell you...";
1929        mes "I was told that the inn master is planning some kind of shady business.";
1930        next;
1931        mes "[Inn Employee]";
1932        mes " - I think it was called as 'the rest project for all' or something...";
1933        next;
1934        mes "[Inn Employee]";
1935        mes "But don't tell anyone that I told you this, please!";
1936        close;
1937}
1938
1939}
1940
1941in_rogue,243,61,0       script  Suspicious Man#God      748,{
1942
1943        if($God1 > 49 && $God2 < 100)
1944{
1945                if(god_eremes == 18)
1946        {
1947                mes "[Cuaque Donon]";
1948                mes "Wha...what are you! How the hell did you come in here!";
1949                mes "Get away, get away from me!";
1950                mes "Geeeet awwwway!";
1951                close;
1952        }
1953                else if(god_eremes > 18)
1954        {
1955                        if(god_megin_2 > 0 && god_megin_2 < 4)
1956                {
1957                        mes "[Cuaque Donon]";
1958                        mes "Wha...what are you! How the hell did you come in here!";
1959                        mes "Get away, get away from me!";
1960                        mes "Geeeet awwwway!";
1961                        next;
1962                        mes "- You tried your best to make him calm down and told him what you have found from the document.-";
1963                        next;
1964                                if (countitem(740) > 0 || countitem(741) > 0 || countitem(742) > 0 || countitem(743) > 0 || countitem(750) > 0 || countitem(751) > 0 || countitem(752) > 0 || countitem(753) > 0 || countitem(754) > 0 || countitem(7206) > 0 || countitem(7212) > 0)
1965                        {
1966                                mes "- You pulled out a doll and used it as though it spoke to him a story. -";
1967                        }
1968                                else
1969                        {
1970                                mes "The upper part decided to disband the 3rd squad which was the best search party of the crusader force after the following mission.";
1971                                next;
1972                                mes "The 3rd squad was secretly assigned to track down ^0000FFthe signs of God^000000 under a command from the royal court.";
1973                                next;
1974                                mes "During the mission, an unexpected incident happened.";
1975                                mes "A member started second guessing the squad leader's leadership and ^0000FFacting on his own authority^000000.";
1976                                next;
1977                                mes "It resulted in a factional dispute. In order to solve the problem, the leader held a meeting with the others.";
1978                                mes "Based on other's opinions, the squad leader concluded the member's behaviour as ^0000FFinsubordination^000000,";
1979                                next;
1980                                mes "and he and other members did a physical punishment onto the member. The member was reported to be injured and dropped from the squad during the mission.";
1981                                next;
1982                                mes "Due to this disgraceful incident, the 3rd squad could not complete the mission.";
1983                                mes "And because of the unsatisfying mission result, the 3rd squad leader was pressed hard by the 1st platoon leader and the 3rd company commendant.";
1984                                next;
1985                                mes "The 3rd company commandant proposed disband of the 3rd squad to upper hierarchy and his proposal was accepted.";
1986                                mes "After the 3rd squad was disbanded, the members including the squad leader were sent to diciplinary retraining for 3 moths. After that retraining, all of them were transfered to the other squad.";
1987                                next;
1988                                mes "Currently Rebarev Doug who was the 3rd squad leader at the time have been researching the signs of God based on the mission result.";
1989                                mes "And the research was ordered by the King of Rune-Midgarts Kingdom.";
1990                                next;
1991                                mes "-You must find something that can make him calm down.-";
1992                                next;
1993                                mes "- As you saw him acting like a child, it would be a good idea to bring something that is attractive to children. -";
1994                                close;
1995                        }
1996
1997                        next;
1998                        mes "- He was nodded his head and chewing his finger happily just like children do when they're happy. -";
1999                        next;
2000                        mes "- He seemed to be fine enough to be asked few questions.-";
2001                        next;
2002                                switch( select( "Ask him about the inn maid.", "Ask him how he's been doing.", "Ask him about the last mission of the 3rd squad." ) )
2003                        {
2004                                case 1:
2005                                        mes "[Cuaque Donon]";
2006                                        mes "She...she's my sister.";
2007                                        mes "And she's also a rogue.";
2008                                        mes "When I was retired from service....";
2009                                        next;
2010                                        mes "[Cuaque Donon]";
2011                                        mes ".................";
2012                                        next;
2013                                        mes "[Cuaque Donon]";
2014                                        mes "My family always expected more than I could do from me ever since I was born.";
2015                                        mes "That was why I volunteered to be a crusader.";
2016                                        mes "Crusader is not only a highly respectable but also a well-paying job...";
2017                                        mes "And I was retired from service.";
2018                                        next;
2019                                        mes "[Cuaque Donon]";
2020                                        mes "My sister was so upset at me...at that time.";
2021                                        mes "She is the only one I have...she was so upset";
2022                                        mes "at the fact that I messed up...";
2023                                        next;
2024                                        mes "[Cuaque Donon]";
2025                                        mes "And she got me a job in the inn";
2026                                        mes "even after yelling at me that I am worthless, she got me a job anyway.";
2027                                        next;
2028                                        mes "[Cuaque Donon]";
2029                                        mes "Since when, I have noticed that there have been many people visiting me for some reason.";
2030                                        mes "It seemed they wanted something from me...awwwwwwwwwww....my head..! My head is hurt!";
2031                                        next;
2032                                        mes "[Cuaque Donon]";
2033                                        mes "...I don't know what I have said to them.";
2034                                        mes "They were all excited at what I said and they tried to hurt me.";
2035                                        next;
2036                                        mes "[Cuaque Donon]";
2037                                        mes "So, she hid me here.";
2038                                        mes "But, I am so bored to be alone. A guy in the downstairs always do nothing but yelling at me...";
2039                                        mes "He always yells at me to leave.";
2040                                        next;
2041                                        mes "[Cuaque Donon]";
2042                                        mes "Even the rogue guild where my sister is in sometimes come to listen to me.";
2043                                        mes "And they are always excited just like the others and yell at me to say something I am supposed to know.";
2044                                        next;
2045                                        mes "[Cuaque Donon]";
2046                                        mes "I am telling you, I cannot remember anything!";
2047                                        mes "I know this place is safe from those dangerous people.";
2048                                        next;
2049                                        mes "[Cuaque Donon]";
2050                                        mes "She is the only one I have now...still I don't want her to be upset at me.";
2051                                        next;
2052                                        mes "[Cuaque Donon]";
2053                                        mes "She said I must tell the rogue guild guys what I know...otherwise they will not protect her and me any longer.";
2054                                        mes "She looked sad when she sad that...";
2055                                                if (god_megin_2 == 2)
2056                                        {
2057                                                next;
2058                                                mes "[Cuaque Donon]";
2059                                                mes "Oh, I remember something.";
2060                                                mes "She told me not to tell anyone but I am gonna tell you...";
2061                                                next;
2062                                                mes "- He whispered to your ears.-";
2063                                                next;
2064                                                mes "[Cuaque Donon]";
2065                                                mes "She said...it seems rogue guild wants something from me.";
2066                                                mes "So she's gonna send me good people that she trust and that can help me.";
2067                                                next;
2068                                                mes "[Cuaque Donon]";
2069                                                mes "But still this is the safest place to stay for a while.";
2070                                                mes "At the same time, I am always ready to run...";
2071                                                set god_megin_2,3;
2072                                                close;
2073                                        }
2074                                        close;
2075                                break;
2076
2077                                case 2:
2078                                        mes "[Cuaque Donon]";
2079                                        mes "How have I been doing?";
2080                                        mes "I am afraid of the people visiting me with purpose.";
2081                                        next;
2082                                        mes "[Cuaque Donon]";
2083                                        mes "Rogue guild promised to protect me...but they scared the hell out of me sometimes by coming out of the floor without a warning.";
2084                                        mes "Ah, and my sister said she's gonna complain to my ex boss about something.";
2085                                        next;
2086                                        mes "[Cuaque Donon]";
2087                                        mes "She said I was okay before. But ever since I was retired from the service, I have acted strange...";
2088                                        next;
2089                                        mes "[Cuaque Donon]";
2090                                        mes "But he doesn't want to meet my sister...that's what she said. So she's gonna ask a help to her rogue guild to spread some kind of rumors...";
2091                                        mes "Like a rumor that anyone who volunteers to crusader through my ex boss will become retarded....";
2092                                        next;
2093                                        mes "[Cuaque Donon]";
2094                                        mes "That's how I have been recently.";
2095                                        if (god_megin_2 == 1) set god_megin_2,2;
2096                                        close;
2097                                break;
2098
2099                                case 3:
2100                                        mes "[Cuaque Donon]";
2101                                        mes "I don't know...I cannot remember it...";
2102                                                if (god_megin_2 == 3)
2103                                        {
2104                                                next;
2105                                                mes "[Cuaque Donon]";
2106                                                mes "?!... Wait, I just remembered a thing...";
2107                                                mes "I saw ^0000FFMegingjard^000000. That thing looked like a fragment of something, but I knew its name was Megingjard without being told.";
2108                                                next;
2109                                                        if (rand(1,10) > 4)
2110                                                {
2111                                                                switch( select( "^FF0000Megingjard^000000!", "^FFFFFFListen to him quitely^000000." ) )
2112                                                        {
2113                                                                case 1:
2114                                                                        mes "[Cuaque Donon]";
2115                                                                        mes "Waaaaaaaaaaaaahhhhhhh!";
2116                                                                        mes "You are same as others! Go away from me!";
2117                                                                        set god_megin_2,0;
2118                                                                        close;
2119                                                                break;
2120
2121                                                                case 2:
2122                                                                        mes "[Cuaque Donon]";
2123                                                                        mes "And...that night...I heard ^0000FFhe^000000 had an argue with the leader.";
2124                                                                        mes "I was keeping a night watch and happened to hear thm arguing.";
2125                                                                        next;
2126                                                                        mes "[Cuaque Donon]";
2127                                                                        mes "I cannot remember anything other than that.";
2128                                                                        set god_megin_2,4;
2129                                                                        close;
2130                                                                break;
2131                                                        }
2132                                                }
2133                                                        else
2134                                                {
2135                                                                switch( select( "^FF0000Megingjard^000000!", "^FFFFFFMegingjard!^000000.", "^FFFFFFListen to him quitely^000000" ) )
2136                                                        {
2137                                                                case 1:
2138                                                                        mes "[Cuaque Donon]";
2139                                                                        mes "Waaaaaaaaaaaaahhhhhhh!";
2140                                                                        mes "You are same as others! Go away from me!";
2141                                                                        set god_megin_2,0;
2142                                                                        close;
2143                                                                break;
2144
2145                                                                case 2:
2146                                                                        mes "[Cuaque Donon]";
2147                                                                        mes "Waaaaaaaaaaaaahhhhhhh!";
2148                                                                        mes "You are same as others! Go away from me!";
2149                                                                        set god_megin_2,0;
2150                                                                        close;
2151                                                                break;
2152                                                                case 3:
2153                                                                        mes "[Cuaque Donon]";
2154                                                                        mes "And...that night...I heard ^0000FFhe^000000 had an argue with the leader.";
2155                                                                        mes "I was keeping a night watch and happened to hear thm arguing.";
2156                                                                        next;
2157                                                                        mes "[Cuaque Donon]";
2158                                                                        mes "I cannot remember anything other than that.";
2159                                                                        set god_megin_2,4;
2160                                                                        close;
2161                                                                break;
2162                                                        }
2163                                                }
2164                                        }
2165                                        close;
2166                                break;
2167                        }
2168                }
2169                        else if(god_megin_2 == 4)
2170                {
2171                        mes "[Cuaque Donon]";
2172                        mes "And...that night...I heard ^0000FFhe^000000 had an argue with the leader.";
2173                        mes "I was keeping a night watch and happened to hear thm arguing.";
2174                        next;
2175                        mes "[Cuaque Donon]";
2176                        mes "I cannot remember anything other than that.";
2177                        next;
2178                        mes "[Cuaque Donon]";
2179                        mes "Sleepy...my head is hurting. I want to rest now...";
2180                        close;
2181                }
2182                        else
2183                {
2184                        mes "[Cuaque Donon]";
2185                        mes "Wha...what are you! How the hell did you come in here!";
2186                        mes "Get away, get away from me!";
2187                        mes "Geeeet awwwway!";
2188                        close;
2189                }
2190        }
2191}
2192        else
2193{
2194        mes "[Cuaque Donon]";
2195        mes "Wha...what are you! How the hell did you come in here!";
2196        mes "Wahhhhh! My head...my head is hurting so bad!";
2197        mes "I am scared! I am scared!";
2198        close;
2199}
2200
2201}
2202
2203alberta,196,146,0       script  Crusader#megin2 751,{
2204
2205        if ($God1 > 49 && $God2 < 100)
2206{
2207                if(god_eremes == 18)
2208        {
2209                mes "[Jack O]";
2210                mes "^333333*Yawn...*^000000";
2211                mes "It's quiet and boring, as per usual. Let's see if there's any Swordmen I can recruit today.";
2212                next;
2213                mes "[Jack O]";
2214                mes "Eh...?";
2215                next;
2216                        switch( select( "Ask him about Rebarev Doug.", "Ask him how he's been doing.", "Ask him about the last mission of the 3rd squad." ) )
2217                {
2218                        case 1:
2219                                mes "[Jack O]";
2220                                mes "Ah! Yeah, our old leader back in the 3rd Squad. Heh. I haven't seen him since we were disbanded.";
2221                                close;
2222                        break;
2223
2224                        case 2:
2225                                mes "[Jack O]";
2226                                mes "Me? Yeah, I'm always busy recruiting future Crusaders.";
2227                                mes "We always welcome Swordmen";
2228                                mes "of great ability!";
2229                                next;
2230                                mes "[Jack O]";
2231                                mes "How does it sound? Why don't you volunteer to become a Crusader?";
2232                                close;
2233                        break;
2234
2235                        case 3:
2236                                mes "[Jack O]";
2237                                mes "Last mission?";
2238                                mes "Eh, I don't really remember it.";
2239                                close;
2240                        break;
2241                }
2242        }
2243                else if(god_eremes > 18)
2244        {
2245                        if (god_megin_3 == 0 || god_megin_3 == 1)
2246                {
2247                        mes "[Jack O]";
2248                        mes "*yawn*...so boring.";
2249                        mes "Let's see...if there is any swordsman I can recruit...?";
2250                        next;
2251                        mes "[Jack O]";
2252                        mes "Umm...?";
2253                        next;
2254                                switch( select( "Ask him about Rebarev Doug.", "Ask him how he's been doing.", "Ask about 3rd Squad's final mission." ) )
2255                        {
2256                                case 1:
2257                                                if (god_megin_3 == 1)
2258                                        {
2259                                                mes "[Jack O]";
2260                                                mes "Ah right. Our old leader.";
2261                                                mes "Now I remember: He was";
2262                                                mes "a pretty self righteous jerk";
2263                                                mes "now that I think about it!";
2264                                                next;
2265                                                mes "[Jack O]";
2266                                                mes "Can you believe he used to say that ^0000FFno one is more religious than him in this world^000000?! That's egoism right there. And maybe insanity.";
2267                                                next;
2268                                                mes "[Jack O]";
2269                                                mes "Anyway, everyone in the squad";
2270                                                mes "took pride in their faith. When";
2271                                                mes "you're having a rough time in the";
2272                                                mes "real world, you depend on religion, you know?";
2273                                                next;
2274                                                mes "[Jack O]";
2275                                                mes "Anyways, in the records about";
2276                                                mes "our squad, it says that one of us was punished for insubordination, rebelling or something. That's";
2277                                                mes "a complete lie.";
2278                                                next;
2279                                                mes "[Jack O]";
2280                                                mes "During our final mission,";
2281                                                mes "our old leader had a huge argument with one us over something we found. I remember it being some kind of godly artifact, but I can't clearly remember what it was.";
2282                                                next;
2283                                                mes "[Jack O]";
2284                                                mes "Although there was an obvious dispute, I think it was our squad leader who was out of line.";
2285                                                mes "I... I can't really say...";
2286                                                next;
2287                                                mes "[Jack O]";
2288                                                mes "I can't for the life of me";
2289                                                mes "remember how the guy who";
2290                                                mes "argued with the squad leader";
2291                                                mes "looked like. The higher-ups";
2292                                                mes "musta did something to me...";
2293                                                next;
2294                                                mes "[Jack O]";
2295                                                mes "Anyway, I know for sure that whatever that guy did, it wasn't insubordination. In fact, I think he might've been right!";
2296                                                next;
2297                                                mes "[Jack O]";
2298                                                mes "That's all I can remember.";
2299                                                mes "I better take some Green Herbs now. My head throbs like crazy whenever I think about that time.";
2300                                                set god_megin_3,2;
2301                                                close;
2302                                        }
2303                                                else
2304                                        {
2305                                                mes "[Jack O]";
2306                                                mes "Ah! Yeah, our old leader back in the 3rd Squad. Heh. I haven't seen him since we were disbanded.";
2307                                                close;
2308                                        }
2309                                break;
2310
2311                                case 2:
2312                                        mes "[Jack O]";
2313                                        mes "Me? Yeah, I'm not doing so bad. Keeping busy recruiting future Crusaders. We welcome all";
2314                                        mes "Swordmen if they show potential~";
2315                                        close;
2316                                break;
2317
2318                                case 3:
2319                                        mes "[Jack O]";
2320                                        mes "Huh...?";
2321                                        mes "Why would";
2322                                        mes "you want to know?";
2323                                        next;
2324                                        mes "- You told him what you have found from the document. -";
2325                                        next;
2326                                        mes "^0000FFThe last mission of the 3rd squad^000000";
2327                                        mes "The upper part decided to disband the 3rd squad which was the best search party of the crusader force after the following mission.";
2328                                        next;
2329                                        mes "The 3rd squad was secretly assigned to track down ^0000FFthe signs of God^000000 under a command from the royal court.";
2330                                        next;
2331                                        mes "During the mission, an unexpected incident happened.";
2332                                        mes "A member started second guessing the squad leader's leadership and ^0000FFacting on his own authority^000000.";
2333                                        next;
2334                                        mes "It resulted in a factional dispute. In order to solve the problem, the leader held a meeting with the others.";
2335                                        mes "Based on other's opinions, the squad leader concluded the member's behaviour as ^0000FFinsubordination^000000,";
2336                                        next;
2337                                        mes "and he and other members did a physical punishment onto the member. The member was reported to be injured and dropped from the squad during the mission.";
2338                                        next;
2339                                        mes "Due to this disgraceful incident, the 3rd squad could not complete the mission.";
2340                                        mes "And because of the unsatisfying mission result, the 3rd squad leader was pressed hard by the 1st platoon leader and the 3rd company commendant.";
2341                                        next;
2342                                        mes "The 3rd company commandant proposed disband of the 3rd squad to upper hierarchy and his proposal was accepted.";
2343                                        mes "After the 3rd squad was disbanded, the members including the squad leader were sent to diciplinary retraining for 3 moths. After that retraining, all of them were transfered to the other squad.";
2344                                        next;
2345                                        mes "Currently Rebarev Doug who was the 3rd squad leader at the time have been researching the signs of God based on the mission result.";
2346                                        mes "And the research was ordered by the King of Rune-Midgarts Kingdom.";
2347                                        next;
2348                                        mes "^3355FFAs he listened to the record of the 3rd Squad, Jack O looked a little confused.^000000";
2349                                        next;
2350                                        mes "[Jack O]";
2351                                        mes "Huh...?";
2352                                        mes "I might not be able to remember";
2353                                        mes "a whole lot from back then, but the part about ^0000FFinsubordination^000000 can't be right. I'm sure of that.";
2354                                        if (god_megin_3 == 0) set god_megin_3,1;
2355                                        close;
2356                                break;
2357                        }
2358                }
2359                        else if (god_megin_3 == 2)
2360                {
2361                        mes "[Jack O]";
2362                        mes "Our old leader was";
2363                        mes "so arrogant to the point";
2364                        mes "of being a little off his rocker.";
2365                        next;
2366                        mes "[Jack O]";
2367                        mes "I mean, normal people";
2368                        mes "don't say things like '^0000FFI am the most religious man in the universe! Kneel before me!^000000' Yeah. Not a normal thing to say.";
2369                        next;
2370                        mes "[Jack O]";
2371                        mes "Anyway, if the squad";
2372                        mes "leader punished anyone for insubordination, I'm sure that it was unwarranted. I don't remember too much, but I'm sure of that.";
2373                        next;
2374                        mes "[Jack O]";
2375                        mes "Excuse me, I need to take some Green Herbs. Taking these seems";
2376                        mes "to be the only thing that works for my headache.";
2377                        next;
2378                        mes "^3355FFJack O busily chewed";
2379                        mes "on some Green Herbs.";
2380                        mes "It seemed to greatly relieve him from the pain of his headaches.^000000";
2381                        close;
2382                }
2383                        else
2384                {
2385                        mes "[Jack O]";
2386                        mes "^333333*Yawn...*^000000";
2387                        mes "It's quiet and boring, as per usual. Let's see if there's any Swordmen I can recruit today.";
2388                        close;
2389                }
2390        }
2391                else
2392        {
2393                mes "[Jack O]";
2394                mes "Hey kid!";
2395                mes "Ever think about";
2396                mes "bein' a Crusader?";
2397                close;
2398        }
2399}
2400        else
2401{
2402                if (Class == Job_Swordman)
2403        {
2404                mes "[Jack O]";
2405                mes "Hey kid!";
2406                mes "Ever think about";
2407                mes "bein' a Crusader?";
2408                next;
2409                mes "[Jack O]";
2410                mes "Basically, you'd be volunteering to be part of our military, as well as train for the Holy War.";
2411                next;
2412                mes "[Jack O]";
2413                mes "If you have some faith and know how to wield a sword, you'll be more than welcome here.";
2414                next;
2415                mes "[Jack O]";
2416                mes "Just think about my suggestion";
2417                mes "and come back if you're interested. Alright then, see you later~";
2418                close;
2419        }
2420                else
2421        {
2422                mes "[Jack O]";
2423                mes "^333333*Yawn...*^000000";
2424                mes "It's quiet and boring, as per usual. Let's see if there's any Swordmen I can recruit today.";
2425                next;
2426                mes "[Jack O]";
2427                mes "Huh...?";
2428                mes "Are you interested in knowing more about Crusaders? Hahaha, I guess that must be the case.";
2429                next;
2430                mes "[Jack O]";
2431                mes "By the way, bring a doll to";
2432                mes "the kid in front of me. If you're lucky, she'll give you something neat in return. What it is, I don't know. I've got no dolls.";
2433                next;
2434                mes "[Jack O]";
2435                mes "In accordance with the Crusader code, I'm not supposed to lie. So yeah, you can trust me!";
2436                close;
2437        }
2438}
2439
2440}
2441
2442aldebaran,66,213,0      script  Lady#megin      69,{
2443
2444        if ($God1 > 49 && $God2 < 100)
2445{
2446                if(god_eremes == 18)
2447        {
2448                mes "[Emma Searth]";
2449                mes "^333333*Sigh...*^000000 I haven't gotten any response from them. I don't know";
2450                mes "if I can wait much longer to join the Kafra Corporation.";
2451                close;
2452        }
2453                else if(god_eremes > 18 && god_eremes < 26)
2454        {
2455                        if (god_megin_4 < 2)
2456                {
2457                        mes "[Emma Searth]";
2458                        mes "^333333*Sigh...*^000000 I haven't gotten any response from them. I don't know";
2459                        mes "if I can wait much longer to join the Kafra Corporation.";
2460                        next;
2461                        mes "[Emma Searth]";
2462                        mes "Oh, an adventurer! I actually used to work in the same field that you do. More specifically, I used to be a Crusader.";
2463                        next;
2464                        mes "[Emma Searth]";
2465                        mes "My name is Emma Searth. Right now, I'm following my dream and applying to be a Kafra Lady. So my days of wielding a sword are over.";
2466                        next;
2467                        mes "[Emma Searth]";
2468                        mes "Sadly, I haven't succeeded yet because I was diagnosed with";
2469                        mes "some weird ^0000FFamnesia^000000.";
2470                        next;
2471                        mes "[Emma Searth]";
2472                        mes "Of course, I understand that";
2473                        mes "Kafra Corporation is a large, professional company, but";
2474                        mes "if I can work for them even if it's just part-time...";
2475                        next;
2476                        mes "[Emma Searth]";
2477                        mes "Is it that big of a problem?";
2478                        mes "I suppose they're worried";
2479                        mes "that I'd forget important customer information once I'm hired.";
2480                        next;
2481                        mes "[Emma Searth]";
2482                        mes "It's strange. When I was";
2483                        mes "a Crusader, I remembered";
2484                        mes "everything lucidly, and I never had any problems recalling the past.";
2485                        next;
2486                        mes "[Emma Searth]";
2487                        mes "But now I get these migraines whenever I try to focus on my memories from those times";
2488                        mes "when I used to fight in the Prontera Military.";
2489                        next;
2490                        mes "[Emma Searth]";
2491                        mes "^333333*Sigh...*^000000";
2492                        next;
2493                                switch( select( "About her past.", "Why be a Kafra Lady?", "About memories she can remember." ) )
2494                        {
2495                                case 1:
2496                                                if (countitem(7015) > 0)
2497                                        {
2498                                                mes "^3355FFThe scent of your";
2499                                                mes "Memory Bookmark";
2500                                                mes "seems to bring clarity";
2501                                                mes "to her thoughts.^000000";
2502                                                next;
2503                                                mes "[Emma Searth]";
2504                                                mes "I was born in a wealthy family where I was raised to learn etiquette, fencing, Peco riding, and music lessons since I was";
2505                                                mes "born. I suppose you can say I'm pretty well educated.";
2506                                                next;
2507                                                mes "[Emma Searth]";
2508                                                mes "However, my parents weren't";
2509                                                mes "pleased when they learned that I wanted to become a Kafra Lady.";
2510                                                next;
2511                                                mes "[Emma Searth]";
2512                                                mes "My parents insisted that";
2513                                                mes "I become a Sage or a Scholar.";
2514                                                mes "In the end, I ended up running";
2515                                                mes "away from them by joining the Crusaders.";
2516                                                next;
2517                                                mes "[Emma Searth]";
2518                                                mes "Luckily, the Crusaders were advertising their recruitment at the time, so I took that chance. Plus, having military experience might even help me join Kafra!";
2519                                                next;
2520                                                mes "[Emma Searth]";
2521                                                mes "Since I did so well in Boot Camp,";
2522                                                mes "I got the chance to join an elite squad. My squad was often assigned difficult missions, and we never failed to complete those.";
2523                                                next;
2524                                                mes "[Emma Searth]";
2525                                                mes "Eventually, my reputation as a female Crusader, and being in a respectable military position, was enough to satisfy my family.";
2526                                                next;
2527                                                mes "[Emma Searth]";
2528                                                mes "But after that day,";
2529                                                mes "everything went wrong.";
2530                                                mes "I only remember that it";
2531                                                mes "was very sad and depressing.";
2532                                                mes "Somehow, I feel like we were";
2533                                                mes "even betrayed...";
2534                                                next;
2535                                                mes "[Emma Searth]";
2536                                                mes "I think I can";
2537                                                mes "try to remember";
2538                                                mes "my comrades...";
2539                                                set god_megin_4,1;
2540                                                close;
2541                                        }
2542                                                else
2543                                        {
2544                                                mes "[Emma Searth]";
2545                                                mes "Ah, let's not talk about it. It's too depressing. Maybe if you had some sort of ^0000FFmemory^000000 aid, I might be able to recall my forgotten past. Anything, like a reminder, a scheduler, a bookmark, a string...";
2546                                                close;
2547                                        }
2548                                break;
2549
2550                                case 2:
2551                                        mes "[Emma Searth]";
2552                                        mes "One day, I happened to see Ms. Leilah at work here in Al De Baran. She was shining with confidence and commanded respect, even from her customers!";
2553                                        next;
2554                                        mes "[Emma Searth]";
2555                                        mes "She carried herself like a professional, no matter what the situation. Even though I knew she was tired from working in the summer heat, she made everything look effortless!";
2556                                        next;
2557                                        mes "[Emma Searth]";
2558                                        mes "When the male customers try to flirt with her, she never loses her poise. She just adjusts her glasses and does what she needs to do.";
2559                                        next;
2560                                        mes "[Emma Searth]";
2561                                        mes "To me, she's like a lone, guardian angel. At that moment, it seemed the world existed just to be mocked by Ms. Leila.";
2562                                        next;
2563                                        mes "[Emma Searth]";
2564                                        mes "I've also heard that Kafra Ladies are always traveling around the world, which is something I've always dreamed of doing.";
2565                                        next;
2566                                        mes "[Emma Searth]";
2567                                        mes "Ms. Leilah is my idol,";
2568                                        mes "and she's the reason why";
2569                                        mes "I want to become a Kafra Lady.";
2570                                        close;
2571                                break;
2572
2573                                case 3:
2574                                                if (countitem(511) > 0 && god_megin_3 > 1)
2575                                        {
2576                                                mes "^3355FFEmma Searth clutches her head and winces as she suffers from another migraine.^000000";
2577                                                next;
2578                                                mes "^3355FFRemembering that a Green Herb was able to relieve Jack O, you gave a Green Herb to Emma. She takes it, and looks a little more relaxed.^000000";
2579                                                next;
2580                                                mes "[Emma Searth]";
2581                                                mes "I'm not even sure";
2582                                                mes "how much I can remember";
2583                                                mes "and how much I've actually";
2584                                                mes "forgotten.";
2585                                                next;
2586                                                mes "[Emma Searth]";
2587                                                mes "Let me...";
2588                                                mes "Try to remember every one in our squad. Let's see, there was Jack O, The Nineball. Z-Zan. Zan.H-Huadoku. C-Cuaque Donon. Myself. Um, E... Eni... Egni... Um...";
2589                                                next;
2590                                                mes "[Emma Searth]";
2591                                                mes "Egni...";
2592                                                mes "Egnigem?^000000";
2593                                                mes "Who was that?";
2594                                                mes "Oh no. I'm sure he might";
2595                                                mes "have, no, was there someone";
2596                                                mes "named that with us?";
2597                                                close2;
2598                                                set god_megin_4,2;
2599                                                end;
2600                                        }
2601                                                else
2602                                        {
2603                                                mes "^3355FFEmma Searth clutches her head and winces as she suffers from another migraine.^000000";
2604                                                next;
2605                                                mes "[Emma Searth]";
2606                                                mes "I'm not even sure";
2607                                                mes "how much I can remember";
2608                                                mes "and how much I've actually";
2609                                                mes "forgotten.";
2610                                                close;
2611                                        }
2612                                break;
2613                        }
2614                }
2615                        else if(god_megin_4 > 1)
2616                {
2617                        mes "[Emma Searth]";
2618                        mes "^0000FFJack O, The Nineball, Zan.Huadoku, Cuaque Donon, Egnigem.^000000 Oh, I really miss those guys...";
2619                        close;
2620                }
2621                        else
2622                {
2623                        mes "[Emma Searth]";
2624                        mes "^333333*Sigh...*^000000 I haven't gotten any response from them. I don't know";
2625                        mes "if I can wait much longer to join the Kafra Corporation.";
2626                        close;
2627                }
2628        }
2629                else if (god_eremes == 25)
2630        {
2631                mes "[Emma Searth]";
2632                mes "Egnigem...";
2633                mes "That name makes";
2634                mes "me so sad. I'm not";
2635                mes "quite sure why, but...";
2636                close;
2637        }
2638                else if (god_eremes == 26 || god_eremes == 27)
2639        {
2640                mes "[Emma Searth]";
2641                mes "Egnigem...";
2642                mes "That name makes";
2643                mes "me so sad. I'm not";
2644                mes "quite sure why, but...";
2645                next;
2646                mes "^3355FFEmma turns away before you can see her cry. Still, her shoulders heave with each sob as you imagine the hardship she's had to endure.^000000";
2647                next;
2648                mes "[Emma Searth]";
2649                mes "I wish I knew what that name really means. I'm sure it's linked to an important memory from my past.";
2650                next;
2651                mes "[Emma Searth]";
2652                mes "I really appreciate you coming here to talk to me about the old days. I, I want you to have this.";
2653                set god_eremes,28;
2654                getitem 603,1;
2655                if (BaseLevel < 56)
2656                        getexp 27000,0;
2657                else if (BaseLevel > 55 && BaseLevel < 61)
2658                        getexp 30000,0;
2659                else if (BaseLevel > 60 && BaseLevel < 66)
2660                        getexp 56052,0;
2661                else if (BaseLevel > 65 && BaseLevel < 71)
2662                        getexp 82233,0;
2663                else if (BaseLevel > 70 && BaseLevel < 76)
2664                        getexp 212271,0;
2665                else if (BaseLevel > 75 && BaseLevel < 81)
2666                        getexp 390738,0;
2667                else if (BaseLevel > 80 && BaseLevel < 86)
2668                        getexp 451020,0;
2669                else if (BaseLevel > 85 && BaseLevel < 91)
2670                        getexp 546156,0;
2671                else if (BaseLevel > 90)
2672                        getexp 1220358,0;
2673                close;
2674        }
2675                else if (god_eremes == 28)
2676        {
2677                mes "[Emma Searth]";
2678                mes "Egnigem...";
2679                mes "That name makes";
2680                mes "me so sad. I'm not";
2681                mes "quite sure why, but...";
2682                next;
2683                mes "^3355FFEmma turns away before you can see her cry. Still, her shoulders heave with each sob as you imagine the hardship she's had to endure.^000000";
2684                close;
2685        }
2686                else
2687        {
2688                mes "[Emma Searth]";
2689                mes "^333333*Sigh...*^000000 I haven't gotten any response from them. I don't know";
2690                mes "if I can wait much longer to join the Kafra Corporation.";
2691                close;
2692        }
2693}
2694        else
2695{
2696        mes "[Emma Searth]";
2697        mes "I hear the Kafra Ladies always travel around the world, something I've always dreamed of doing! Hopefully, one of these days, I'll be able to work for the Kafra Corporation too.";
2698        next;
2699        mes "[Emma Searth]";
2700        mes "^333333*Sigh...*^000000";
2701        mes "Still, it's discouraging. I haven't heard anything from them...";
2702        close;
2703}
2704
2705}
2706
2707cmd_in02,190,94,3       script  Man#megin       828,{
2708
2709        if ($God1 > 49 && $God2 < 100)
2710{
2711                if (god_eremes == 18)
2712        {
2713                mes "[Royal Myst]";
2714                mes "Wha...?";
2715                mes "You wanna talk?";
2716                next;
2717                mes "[Royal Myst]";
2718                mes "What am I, your personal psychiatrist?! Lemme alone,";
2719                mes "I'm busy here! Awright, now";
2720                mes "which one do I bet on...?";
2721                next;
2722                        switch( select("Speak of Rebarev Doug.", "Speak of the 3rd squad.", "Talk about gambling.", "Discuss hobbies.") )
2723                {
2724                        case 1:
2725                                mes "[Royal Myst]";
2726                                mes "Wha--? Him again?! Tell him I'm fine! Dandy, even! Why's he gotta send all these people just to ask";
2727                                mes "a silly question?";
2728                                close;
2729                        break;
2730                        case 2:
2731                                mes "[Royal Myst]";
2732                                mes "3rd squad? Yeah, I used to be in that. All of us in the squad used to be real good buddies too.";
2733                                next;
2734                                mes "[Royal Myst]";
2735                                mes "Zan.Huadoku, Cuaque Donon,";
2736                                mes "Jack O, Emma Searth and The Nineball. Yeah... I wonder what they're all up to?";
2737                                close;
2738                        break;
2739                        case 3:
2740                                mes "[Royal Myst]";
2741                                mes "Gambling? I love it, you";
2742                                mes "know? Eh, I don't win all the time, but I love it the most when I leave with more Zeny than I came in with! Hahaha!";
2743                                close;
2744                        break;
2745                        case 4:
2746                                mes "[Royal Myst]";
2747                                mes "Hobbies?";
2748                                mes "What, you comin'";
2749                                mes "on to me?";
2750                                next;
2751                                mes "[Royal Myst]";
2752                                mes "A man's hobby is drinking, or didn't you know that? I happen to be real good at it too! Mwahahaha!";
2753                                close;
2754                        break;
2755                }
2756        }
2757                else if (god_eremes > 18 && god_eremes < 21)
2758        {
2759                        if (god_megin_6 == 0 && god_megin_5 > 4 && god_megin_4 > 1 && god_megin_3 > 1 && god_megin_2 > 3 && god_megin_1 > 2)
2760                {
2761                        mes "[Royal Myst]";
2762                        mes "Wha...?";
2763                        mes "You wanna talk?";
2764                        next;
2765                        mes "[Royal Myst]";
2766                        mes "What am I, your personal psychiatrist?! Lemme alone,";
2767                        mes "I'm busy here! Awright, now";
2768                        mes "which one do I bet on...?";
2769                        next;
2770                }
2771                        else if(god_megin_6 > 0)
2772                {
2773                        mes "[Royal Myst]";
2774                        mes "Hmm?";
2775                        mes "What's up?";
2776                        next;
2777                }
2778                        else
2779                {
2780                        mes "[Royal Myst]";
2781                        mes "Wha...?";
2782                        mes "You wanna talk?";
2783                        next;
2784                        mes "[Royal Myst]";
2785                        mes "What am I, your personal psychiatrist?! Lemme alone,";
2786                        mes "I'm busy here! Awright, now";
2787                        mes "which one do I bet on...?";
2788                        close;
2789                }
2790                        if (god_megin_6 < 16)
2791                {
2792                                switch( select("Speak of Rebarev Doug.", "Speak of the 3rd squad.", "Talk about gambling.", "Discuss hobbies.") )
2793                        {
2794                                case 1:
2795                                                if (god_megin_6 == 0)
2796                                        {
2797                                                mes "[Royal Myst]";
2798                                                mes "Huh? What's that old geezer want this time? Tell 'em I'm fine, dandy even! Why the hell does he keep sending people...";
2799                                                set god_megin_6,1;
2800                                                close;
2801                                        }
2802                                                else if (god_megin_6 > 0 && god_megin_6 < 15)
2803                                        {
2804                                                mes "[Royal Myst]";
2805                                                mes "What the hell!? Stop talking about him! I never wanna see his face again! Tell him to leave me the hell alone!";
2806                                                close;
2807                                        }
2808                                                else if (god_megin_6 > 14)
2809                                        {
2810                                                mes "[Royal Myst]";
2811                                                mes "Damn geezer...";
2812                                                mes "How much is he being paid for studying what we all found?! Eh, somehow, I don't care as long as";
2813                                                mes "he pays me...";
2814                                                next;
2815                                                mes "[Royal Myst]";
2816                                                mes "Yeah...";
2817                                                mes "I just don't";
2818                                                mes "care anymore.";
2819                                                close;
2820                                        }
2821                                break;
2822                                case 2:
2823                                                if (god_megin_6 < 15)
2824                                        {
2825                                                mes "[Royal Myst]";
2826                                                mes "3rd squad? Yeah, I used to be in that. All of us in the squad used to be real good buddies too.";
2827                                                next;
2828                                                mes "[Royal Myst]";
2829                                                mes "Zan.Huadoku, Cuaque Donon,";
2830                                                mes "Jack O, Emma Searth and The Nineball. Yeah... I wonder what they're all up to?";
2831                                                close;
2832                                        }
2833                                                else if (god_megin_6 > 14)
2834                                        {
2835                                                mes "[Royal Myst]";
2836                                                mes "3rd squad?";
2837                                                mes "Don't know, don't care~";
2838                                                mes "Do I look like a stupid Crusader?";
2839                                                close;
2840                                        }
2841                                        else
2842                                break;
2843                                case 3:
2844                                                if (god_megin_6 < 15)
2845                                        {
2846                                                mes "[Royal Myst]";
2847                                                mes "Gambling? ! Oh man...";
2848                                                mes "I love gambling, you know!";
2849                                                mes "Heh, but I haven't been lucky enough to win yet. Hahaha~!";
2850                                                close;
2851                                        }
2852                                                else if (god_megin_6 > 14)
2853                                        {
2854                                                mes "[Royal Myst]";
2855                                                mes "Gambling...!";
2856                                                mes "Heh heh! Some risks you take,";
2857                                                mes "and others you really shouldn't.";
2858                                                mes "I can't help but feel sorry for that guy, E--";
2859                                                next;
2860                                                mes "[Royal Myst]";
2861                                                mes "Ergh...?";
2862                                                mes "Damn, I can never remember his name. You'd think I wouldn't forget the guy whose rap I'm taking but... Eh, I'll remember once I sober up.";
2863                                                next;
2864                                                mes "[Royal Myst]";
2865                                                mes "Hey, what do you think happens to Crusaders when they're framed and killed, huh? Where exactly do they go? Niflheim, Vahalla...?";
2866                                                set god_eremes,20;
2867                                                close;
2868                                        }
2869                                break;
2870                                case 4:
2871                                                if (god_megin_6 == 0)
2872                                        {
2873                                                mes "Hobbies?";
2874                                                mes "What, you comin'";
2875                                                mes "on to me?";
2876                                                next;
2877                                                mes "[Royal Myst]";
2878                                                mes "A man's hobby is drinking, or didn't you know that? I happen to be real good at it too! Mwahahaha!";
2879                                                close;
2880                                        }
2881                                                else if (god_megin_6 > 0 && god_megin_6 < 15)
2882                                        {
2883                                                        if (countitem(970) > 0)
2884                                                {
2885                                                        mes "[Royal Myst]";
2886                                                        mes "Speaking of which,";
2887                                                        mes "I haven't had a drink";
2888                                                        mes "for a looong time. Almost";
2889                                                        mes "a couple hours now.";
2890                                                        next;
2891                                                        mes "[Royal Myst]";
2892                                                        mes "Oooh, looks like you've got a tasty beverage I can enjoy. Bwahahaha! Gimmie~!";
2893                                                        next;
2894                                                        mes "^3355FFBefore you can even think,";
2895                                                        mes "Royal Myst dips his hand into your inventory and helps himself to an Alcohol.^000000";
2896                                                        delitem 970,1;
2897                                                        set god_megin_6,god_megin_6 +2;
2898                                                        close;
2899                                                }
2900                                                        else
2901                                                {
2902                                                        mes "[Royal Myst]";
2903                                                        mes "Why mention it? You gonna bring me something I'll like? Cuz I'm more than willing to take it! Bwahahaha!";
2904                                                        close;
2905                                                }
2906                                        }
2907                                                else if (god_megin_6 > 14)
2908                                        {
2909                                                mes "[Royal Myst]";
2910                                                mes "^333333*Hiccup*^000000 Oh yeah, this is the stuff. Not like that imitation junk they've been serving at the Bars nowadays...";
2911                                                next;
2912                                                mes "[Royal Myst]";
2913                                                mes "Hey! There anything you wanna";
2914                                                mes "know about me? You did me a favor, so I'll tell you anything! Eeeeeverythiiing~~!!";
2915                                                close;
2916                                        }
2917                                break;
2918                        }
2919                }
2920        }
2921                else
2922        {
2923                mes "[Royal Myst]";
2924                mes "Eh heh heh~";
2925                mes "I just know";
2926                mes "I'm gonna win";
2927                mes "this time!";
2928                close;
2929        }
2930}
2931        else
2932{
2933        mes "[Royal Myst]";
2934        mes "Wha...?";
2935        mes "You wanna talk?";
2936        next;
2937        mes "[Royal Myst]";
2938        mes "What am I, your personal psychiatrist?! Lemme alone,";
2939        mes "I'm busy here! Awright, now";
2940        mes "which one do I bet on...?";
2941        close;
2942}
2943
2944}
2945
2946jawaii_in,44,110,0      script  Security Officer#megin  734,{
2947
2948        if ($God1 > 49 && $God2 < 100)
2949{
2950                if (god_eremes == 18)
2951        {
2952                mes "[The Nineball]";
2953                mes "Welcome to Jawaii,";
2954                mes "the paradise resort!";
2955                next;
2956                mes "[The Nineball]";
2957                mes "I'm the 'The Nineball', the security officer of Jawaii! If you encounter any trouble, or find any Singles, please don't hesitate to report to me as soon as you can~";
2958                next;
2959                mes "[The Nineball]";
2960                mes "I've been told that there have";
2961                mes "been many unruly drunkards here lately, but it is in our best interest to make your experience here as enjoyable as possible.";
2962                close;
2963        }
2964                else if (god_eremes > 18)
2965        {
2966                        if (god_megin_5 < 5)
2967                {
2968                        mes "[The Nineball]";
2969                        mes "Welcome to Jawaii,";
2970                        mes "the paradise resort!";
2971                        next;
2972                        mes "[The Nineball]";
2973                        mes "I'm the 'The Nineball, the security officer of Jawaii! If you encounter any trouble, or find any Singles, please don't hesitate to report to me as soon as you can~";
2974                        next;
2975                        mes "[The Nineball]";
2976                        mes "I've been told that there have";
2977                        mes "been many unruly drunkards here lately, but it is in our best interest to make your experience here as enjoyable as possible.";
2978                        set god_megin_5,god_megin_5 +1;
2979                        close;
2980                }
2981                        else if (god_megin_5 == 5)
2982                {
2983                        mes "^3355FFHe acted very bright and friendly, but for a fleeting moment, you were able to glimpse a hint of sadness in his eyes.^000000";
2984                        next;
2985                        mes "^3355FFIt doesn't seem that";
2986                        mes "you'll be able to get him";
2987                        mes "to talk about what exactly";
2988                        mes "happened in the 3rd Squad...^000000";
2989                        close;
2990                }
2991        }
2992}
2993        else
2994{
2995        mes "[The Nineball]";
2996        mes "Welcome to Jawaii,";
2997        mes "the paradise resort!";
2998        next;
2999        mes "[The Nineball]";
3000        mes "I'm the 'The Nineball, the security officer of Jawaii! If you encounter any trouble, or find any Singles, please don't hesitate to report to me as soon as you can~";
3001        next;
3002        mes "[The Nineball]";
3003        mes "I've been told that there have";
3004        mes "been many unruly drunkards here lately, but it is in our best interest to make your experience here as enjoyable as possible.";
3005        close;
3006}
3007
3008}
3009
3010niflheim,109,254,0      script  Egnigem 796,{
3011
3012        if ($God1 > 49 && $God2 < 100)
3013{
3014                if (god_eremes > 19 && god_eremes < 25)
3015        {
3016                        if (god_eremes > 22)
3017                {
3018                        mes "[Egnigem]";
3019                        mes "Why have you returned to";
3020                        mes "this lonely place of darkness?";
3021                        next;
3022                        mes "[Egnigem]";
3023                        mes "Please go back to the world";
3024                        mes "of the living. To be here is to suffer, such is the nature of Nifflheim.";
3025                        close;
3026                }
3027                        else
3028                {
3029                        mes "[Egnigem]";
3030                        mes "Greetings...";
3031                        mes ""+ strcharinfo(0) +".";
3032                        mes "I've been watching you in the";
3033                        mes "world of the living. I see you've been busy looking for the truth about the 3rd Squad, haven't you?";
3034                        next;
3035                        mes "[Egnigem]";
3036                        mes "I can provide you with the answers. After all, I'm the only member of the 3rd Squad to retain all of my memories...";
3037                        next;
3038                        mes "[Egnigem]";
3039                        mes "Heh heh...";
3040                        mes "Let me tell you everything";
3041                        mes "about the 3rd Squad that's";
3042                        mes "been forgotten...";
3043                        L_Menu:
3044                        next;
3045                                switch( select( "The Mission", "Fate of the 3rd Squad", "Why are you in Nifflheim?", "Thanks, I've heard enough." ) )
3046                        {
3047                                        case 1:
3048                                                mes "[Egnigem]";
3049                                                mes "First of all, the official record of our mission is misleading.";
3050                                                mes "It contains some truth, based";
3051                                                mes "on verbal evidence, but the most important details have been left out or changed.";
3052                                                next;
3053                                                mes "[Egnigem]";
3054                                                mes "Now, we were secretly assigned";
3055                                                mes "to find ^0000FFgodly artifacts^000000 by royal decree. In only three days, we succeeded and found Megingjard!";
3056                                                next;
3057                                                mes "[Egnigem]";
3058                                                mes "Now, the records say the mission was unsatisfactory, correct? That would be because of me.";
3059                                                next;
3060                                                mes "[Egnigem]";
3061                                                mes "Are you aware that Megingjard";
3062                                                mes "was a belt worn by gods? It was actually one of the keys to Thor's great strength. Another name for it is the 'Girdle of Might.'";
3063                                                next;
3064                                                mes "[Egnigem]";
3065                                                mes "Now, if a human were to wear";
3066                                                mes "that, there's a possibility that Megingjard would give him strength comparable to a god. Naturally, you'd be afraid of such a thing falling into the wrong hands.";
3067                                                next;
3068                                                mes "[Egnigem]";
3069                                                mes "In Rebarev Doug's mind, he";
3070                                                mes "was the only person worthy of the belt since he considered himself the most religious person alive, and thus, closest to the gods.";
3071                                                next;
3072                                                mes "[Egnigem]";
3073                                                mes "He made it clear to us that only he would wear Megingjard. Although he was our leader, some of us felt uneasy about him wearing the belt and not giving it to his superiors, our mission objective.";
3074                                                next;
3075                                                mes "[Egnigem]";
3076                                                mes "Naturally, I opposed him. He was clearly unbalanced, and it would be dangerous to give him control of such power. It led to something of a fist fight between us.";
3077                                                next;
3078                                                mes "[Egnigem]";
3079                                                mes "The rest of the squad couldn't";
3080                                                mes "agree on whether or not we should simply obey our leader and let him have the belt. Some just wanted to complete the mission, while others were afraid of what might happen.";
3081                                                next;
3082                                                mes "[Egnigem]";
3083                                                mes "But Rebarev didn't wait for us to decide. He destroyed Megingjard into pieces, intending to keep most of it and somehow reconstruct it later, and only bring one piece to the Prontera Military.";
3084                                                next;
3085                                                mes "[Egnigem]";
3086                                                mes "He knew that he couldn't get";
3087                                                mes "away with keeping all of Megingjard to himself, as the entire squad could easily discredit him.";
3088                                                next;
3089                                                mes "[Egnigem]";
3090                                                mes "But Rebarev knew";
3091                                                mes "that he could deceive his";
3092                                                mes "superiors by giving them just a fragment of the artifact, and say that the rest of it was destroyed.";
3093                                                next;
3094                                                mes "[Egnigem]";
3095                                                mes "I discovered his intention when";
3096                                                mes "I found him taking Megingjard apart. Before I could stop him,";
3097                                                mes "I was killed. That bastard had";
3098                                                mes "a trap ready for me...";
3099                                                next;
3100                                                mes "[Egnigem]";
3101                                                mes "After the mission, Rebarev Doug only gave a piece of the belt back to the higher-ups, and gave them";
3102                                                mes "a different account than what had actually happened...";
3103                                                goto L_Menu;
3104                                        break;
3105                                        case 2:
3106                                                mes "[Egnigem]";
3107                                                mes "Once the mission was completed, Rebarev Doug reported back to the Prontera Military with the intent of keeping most of Megingjard for himself.";
3108                                                next;
3109                                                mes "[Egnigem]";
3110                                                mes "For some reason, he has a very strong influence in the military hierarchy. Now, by this time, I'm sure the squad pretty much figured out that he killed me.";
3111                                                next;
3112                                                mes "[Egnigem]";
3113                                                mes "But Rebarev Doug expected this, and explained to his superiors that the squad was tempted by Megingjard's power and that I led some of us in a mutiny against him.";
3114                                                next;
3115                                                mes "[Egnigem]";
3116                                                mes "He told his superiors that Megingjard was damaged as we";
3117                                                mes "fought amongst each other, and that the fragment he gave them was all that remained.";
3118                                                next;
3119                                                mes "[Egnigem]";
3120                                                mes "Because of the confidential nature of our mission, the 3rd squad was disbanded and we weren't given the story Rebarev fed the beaureaucrats until it was too late.";
3121                                                next;
3122                                                mes "[Egnigem]";
3123                                                mes "The squad was punished and";
3124                                                mes "sent for disciplinary retraining for three months. During this time, specific memories were unnaturally erased from the squad members.";
3125                                                next;
3126                                                mes "[Egnigem]";
3127                                                mes "In the end, everyone was transferred to other squads and positions. My name had to be removed from all the records since hearing or reading my name might undo the brain washing.";
3128                                                next;
3129                                                mes "[Egnigem]";
3130                                                mes "However, they still needed an official scapegoat, so they used Royal Myst's name in the records. That's probably why he's been going through hard times right now.";
3131                                                next;
3132                                                mes "[Egnigem]";
3133                                                mes "And now Rebarev Doug has been studying godly artifacts based on the pieces of Megingjard that we found on that mission using kingdom research funds. Someday, he might be able to reconstruct the belt.";
3134                                                next;
3135                                                mes "[Egnigem]";
3136                                                mes "There are also";
3137                                                mes "a few questions that";
3138                                                mes "I've never been able";
3139                                                mes "to answer.";
3140                                                next;
3141                                                mes "[Egnigem]";
3142                                                mes "I've never known why the King Tristram III ordered the research of godly artifacts. It also bothers me that Rebarev Doug is in charge of Megingjard's research. There must be some reason.";
3143                                                next;
3144                                                mes "[Egnigem]";
3145                                                mes "In any case, for the sake of Rune-Midgard, it will be your responsibility to find the answers.";
3146                                                next;
3147                                                mes "[Egnigem]";
3148                                                mes "There's not much a dead man";
3149                                                mes "can do. But what's worse is that no one remembers me any more. I died alone and I'm still lonely in this place for the dead.";
3150                                                goto L_Menu;
3151                                        break;
3152                                        case 3:
3153                                                mes "[Egnigem]";
3154                                                mes "The worst part of the squad";
3155                                                mes "having their memories erased is";
3156                                                mes "that Emma Searth has absolutely";
3157                                                mes "no recollection of me.";
3158                                                next;
3159                                                mes "[Egnigem]";
3160                                                mes "Do you mind listening";
3161                                                mes "to me for a while? You're";
3162                                                mes "the only person with whom";
3163                                                mes "I can talk about this...";
3164                                                next;
3165                                                mes "[Egnigem]";
3166                                                mes "From here, I've seen that Emma";
3167                                                mes "is chasing her dream again, and";
3168                                                mes "I'm happy for her. But it's still";
3169                                                mes "not easy, knowing the woman you";
3170                                                mes "love has totally forgotten you.";
3171                                                next;
3172                                                mes "[Egnigem]";
3173                                                mes "I remember the first time I met her. I guess it was love at first sight. But I was too cowardly to confess my love, so I despaired when she joined the Crusaders.";
3174                                                next;
3175                                                mes "[Egnigem]";
3176                                                mes "It took me a while, but I made up my mind to enlist as a Crusader";
3177                                                mes "as well. I wanted to be closer to her so much.";
3178                                                next;
3179                                                mes "[Egnigem]";
3180                                                mes "Now, after all our adventures and good times together, I'm in the worst possible scenario.";
3181                                                next;
3182                                                mes "[Egnigem]";
3183                                                mes "I'm dead...";
3184                                                mes "But I don't even have the consolation that she is";
3185                                                mes "mourning my loss.";
3186                                                next;
3187                                                mes "[Egnigem]";
3188                                                mes "I suppose that's why I'm here";
3189                                                mes "in Nifflheim. I can't quite move on to heaven, Valhalla or anywhere else without her.";
3190                                                next;
3191                                                mes "[Egnigem]";
3192                                                mes "Anyway, go and visit the Crusader Headquarters. You might be able to learn more about Rebarev Doug and stop any new shadiness he might be plotting. Good luck, my friend.";
3193                                                goto L_Menu;
3194                                        break;
3195                                        case 4:
3196                                                mes "[Egnigem]";
3197                                                mes "Thank you for";
3198                                                mes "listening to me...";
3199                                                if (god_eremes == 21) set god_eremes,23;
3200                                                else if(god_eremes == 22) set god_eremes,24;
3201                                                close;
3202                                        break;
3203                                }
3204                }
3205        }
3206                else if (god_eremes == 25)
3207        {
3208                mes "[Egnigem]";
3209                mes "Listen...";
3210                mes "I'm going to imbue you with the ^FF0000last vestiges of my strength^000000...";
3211                next;
3212                mes "[Egnigem]";
3213                mes "This is all I can do for you in return...";
3214                set god_eremes,27;
3215                if (BaseLevel < 56)
3216                        getexp 27000,0;
3217                else if (BaseLevel > 55 && BaseLevel < 61)
3218                        getexp 30000,0;
3219                else if (BaseLevel > 60 && BaseLevel < 66)
3220                        getexp 56052,0;
3221                else if (BaseLevel > 65 && BaseLevel < 71)
3222                        getexp 82233,0;
3223                else if (BaseLevel > 70 && BaseLevel < 76)
3224                        getexp 212271,0;
3225                else if (BaseLevel > 75 && BaseLevel < 81)
3226                        getexp 390738,0;
3227                else if (BaseLevel > 80 && BaseLevel < 86)
3228                        getexp 451020,0;
3229                else if (BaseLevel > 85 && BaseLevel < 91)
3230                        getexp 546156,0;
3231                else if (BaseLevel > 90)
3232                        getexp 1220358,0;
3233                close;
3234        }
3235                else if (god_eremes == 26)
3236        {
3237                mes "[Egnigem]";
3238                mes "As a Crusader...";
3239                mes "This is the best thing";
3240                mes "I can do in return for";
3241                mes "what you have done for me.";
3242                next;
3243                mes "[Egnigem]";
3244                mes "Listen...";
3245                mes "I'm going to";
3246                mes "imbue you with the";
3247                mes "^666666last vestiges of my strength^000000...";
3248                specialeffect 57;
3249                specialeffect2 152;
3250                next;
3251                mes "[Egnigem]";
3252                mes "May the heavens";
3253                mes "answer me as  I call upon the";
3254                mes "light of justice that empowers the defenders of truth, and threaten the enemies of peace.";
3255                specialeffect 58;
3256                specialeffect2 152;
3257                next;
3258                mes "[Egnigem]";
3259                mes "May you always shine with";
3260                mes "the light of truth. Let the light within you eradicate the shadows";
3261                mes "of deception, fear and malice.";
3262                specialeffect 58;
3263                specialeffect2 152;
3264                next;
3265                mes "[Egnigem]";
3266                mes "By the holy power";
3267                mes "invested in me, I humbly bestow upon you my remaining strength. Fight honorably, and do not lose sight of righteousness.";
3268                specialeffect 60;
3269                specialeffect2 245;
3270                set god_eremes,27;
3271                if (BaseLevel < 56)
3272                        getexp 27000,0;
3273                else if (BaseLevel > 55 && BaseLevel < 61)
3274                        getexp 30000,0;
3275                else if (BaseLevel > 60 && BaseLevel < 66)
3276                        getexp 56052,0;
3277                else if (BaseLevel > 65 && BaseLevel < 71)
3278                        getexp 82233,0;
3279                else if (BaseLevel > 70 && BaseLevel < 76)
3280                        getexp 212271,0;
3281                else if (BaseLevel > 75 && BaseLevel < 81)
3282                        getexp 390738,0;
3283                else if (BaseLevel > 80 && BaseLevel < 86)
3284                        getexp 451020,0;
3285                else if (BaseLevel > 85 && BaseLevel < 91)
3286                        getexp 546156,0;
3287                else if (BaseLevel > 90)
3288                        getexp 1220358,0;
3289                close;
3290        }
3291                else if (god_eremes < 20)
3292        {
3293                mes "[Egnigem]";
3294                mes "Were you betrayed by fate as well, or are you simply a wanderer that's stumbled into this land of darkness?";
3295                next;
3296                mes "[Egnigem]";
3297                mes "Hmm, the living don't deserve";
3298                mes "to be in this realm of cold and suffering. But I can only help you escape by telling you what little";
3299                mes "I know.";
3300                next;
3301                        switch( select( "Ask him about buildings.", "Remove marks on mini-map.", "Cancel." ) )
3302                {
3303                        case 1:
3304                                mes "[Egnigem]";
3305                                mes "I see. If you better understand Niflheim's layout, you have a greater chance of surviving and escaping.";
3306                                next;
3307                                        switch( select( "Witch's Castle", "Tool Shop", "Weapon Shop", "Tavern", "Cancel" ) )
3308                                {
3309                                        case 1:
3310                                                mes "[Egnigem]";
3311                                                mes "The witch of Nifflheim...";
3312                                                mes "You can find her castle at the ^FF3355+^000000 mark I've made on your mini-map.";
3313                                                next;
3314                                                mes "[Egnigem]";
3315                                                mes "Hrrrm...";
3316                                                mes "It seems that the living who wind up in Nifflheim are seeking out the witch. But I don't quite understand what's so important about her.";
3317                                                viewpoint 1,253,191,2,0xFFFF33;
3318                                        break;
3319                                        case 2:
3320                                                mes "[Egnigem]";
3321                                                mes "The Tool shop? Here in Nifflheim, they sell some unique items that";
3322                                                mes "you can't buy anywhere else.";
3323                                                next;
3324                                                mes "[Egnigem]";
3325                                                mes "You might want to see their";
3326                                                mes "wares for yourself. I've drawn";
3327                                                mes "a ^CE6300+^000000 on your mini-map to mark";
3328                                                mes "its location.";
3329                                                viewpoint 1,217,196,3,0xFFCE63;
3330                                        break;
3331                                        case 3:
3332                                                mes "[Egnigem]";
3333                                                mes "I've marked the location of the Weapon Shop at ^55FF33+^000000. There's nothing too special over there, though.";
3334                                                viewpoint 1,216,171,4,0xFF55FF;
3335                                        break;
3336                                        case 4:
3337                                                mes "[Egnigem]";
3338                                                mes "Tavern is at ^3355FF+^000000. They only sell drinks to the dead, though...";
3339                                                viewpoint 1,189,207,5,0xFF3355;
3340                                        break;
3341                                        case 5:
3342                                                mes "[Egnigem]";
3343                                                mes "Choose 'Remove marks on mini-map' from the menu to remove all the building location marks I've made.";
3344                                                close;
3345                                        break;
3346                                }
3347                                close;
3348                        break;
3349                        case 2:
3350                                viewpoint 2,253,191,2,0xFF00FF;
3351                                viewpoint 2,217,196,3,0xFF00FF;
3352                                viewpoint 2,216,171,4,0xFF00FF;
3353                                viewpoint 2,189,207,5,0xFF00FF;
3354                                mes "[Egnigem]";
3355                                mes "Alright, all the marks I've made have been removed from your mini-map. If you want to check the locations in Nifflheim again, go ahead and ask me.";
3356                                close;
3357                        break;
3358                        case 3:
3359                                mes "[Egnigem]";
3360                                mes "You're gonna explore this place on your own? Pretty brave, aren't you? Just be careful: here in Nifflheim, darkness reigns supreme.";
3361                                close;
3362                        break;
3363                }
3364        }
3365                else
3366        {
3367                mes "[Egnigem]";
3368                mes "I really wish that";
3369                mes "Emma Searth could";
3370                mes "remember me...";
3371                next;
3372                mes "^3355FFHis eyes seemed";
3373                mes "to moisten with sadness.";
3374                mes "Is it really possible for the";
3375                mes "dead to shed tears?^000000";
3376                close;
3377        }
3378}
3379        else
3380{
3381        mes "[Egnigem]";
3382        mes "Were you betrayed by fate as well, or are you simply a wanderer that's stumbled into this land of darkness?";
3383        next;
3384        mes "[Egnigem]";
3385        mes "Hmm, the living don't deserve";
3386        mes "to be in this realm of cold and suffering. But I can only help you escape by telling you what little";
3387        mes "I know.";
3388        next;
3389                switch( select( "Ask him about buildings.", "Remove marks on mini-map.", "Cancel." ) )
3390        {
3391                case 1:
3392                        mes "[Egnigem]";
3393                        mes "...I see. Now, let me introduce you all buildings in Nifflheim!";
3394                        next;
3395                                        switch( select( "Witch's Castle", "Tool Shop", "Weapon Shop", "Tavern", "Cancel" ) )
3396                                {
3397                                        case 1:
3398                                                mes "[Egnigem]";
3399                                                mes "The witch of Nifflheim...";
3400                                                mes "You can find her castle at the ^FF3355+^000000 mark I've made on your mini-map.";
3401                                                next;
3402                                                mes "[Egnigem]";
3403                                                mes "Hrrrm...";
3404                                                mes "It seems that the living who wind up in Nifflheim are seeking out the witch. But I don't quite understand what's so important about her.";
3405                                                viewpoint 1,253,191,6,0xFFFF33;
3406                                        break;
3407                                        case 2:
3408                                                mes "[Egnigem]";
3409                                                mes "The Tool shop? Here in Nifflheim, they sell some unique items that";
3410                                                mes "you can't buy anywhere else.";
3411                                                next;
3412                                                mes "[Egnigem]";
3413                                                mes "You might want to see their";
3414                                                mes "wares for yourself. I've drawn";
3415                                                mes "a ^CE6300+^000000 on your mini-map to mark";
3416                                                mes "its location.";
3417                                                viewpoint 1,217,196,7,0xFFCE63;
3418                                        break;
3419                                        case 3:
3420                                                mes "[Egnigem]";
3421                                                mes "I've marked the location of the Weapon Shop at ^55FF33+^000000. There's nothing too special over there, though.";
3422                                                viewpoint 1,216,171,8,0xFF55FF;
3423                                        break;
3424                                        case 4:
3425                                                mes "[Egnigem]";
3426                                                mes "Tavern is at ^3355FF+^000000. They only sell drinks to the dead, though...";
3427                                                viewpoint 1,189,207,9,0xFF3355;
3428                                        break;
3429                                        case 5:
3430                                                mes "[Egnigem]";
3431                                                mes "Choose 'Remove marks on mini-map' from the menu to remove all the building location marks I've made.";
3432                                                close;
3433                                        break;
3434                                }
3435                                close;
3436                        break;
3437                        case 2:
3438                                viewpoint 2,253,191,6,0xFF00FF;
3439                                viewpoint 2,217,196,7,0xFF00FF;
3440                                viewpoint 2,216,171,8,0xFF00FF;
3441                                viewpoint 2,189,207,9,0xFF00FF;
3442                                mes "[Egnigem]";
3443                                mes "Alright, all the marks I've made have been removed from your mini-map. If you want to check the locations in Nifflheim again, go ahead and ask me.";
3444                                close;
3445                break;
3446                case 3:
3447                        mes "[Egnigem]";
3448                        mes "You're gonna explore this place on your own? Pretty brave, aren't you? Just be careful: here in Nifflheim, darkness reigns supreme.";
3449                        close;
3450                break;
3451        }
3452        close;
3453}
3454
3455}
Note: See TracBrowser for help on using the browser.