1 | //===== eAthena Script ======================================= |
---|
2 | //= Quest for 99 Base Level Players |
---|
3 | //===== By: ================================================== |
---|
4 | //= Lupus |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.0 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= Any eAthena Version |
---|
9 | //===== Description: ========================================= |
---|
10 | //= It makes players stay longer at 99th level and get a |
---|
11 | //= Jewel Case as a reward |
---|
12 | //===== Additional Comments: ================================= |
---|
13 | //= |
---|
14 | //============================================================ |
---|
15 | |
---|
16 | |
---|
17 | lighthalzen,108,229,2 script La Fenn 766,{ |
---|
18 | mes "[La Fenn]"; |
---|
19 | if(BaseLevel<99) { |
---|
20 | if(Q_99LVL) { |
---|
21 | mes "You... You got younger!!! But you are defenitely YOU!"; |
---|
22 | mes "I couldn't think you were able to meet my condition..."; |
---|
23 | emotion e_hmm; |
---|
24 | next; |
---|
25 | mes "[La Fenn]"; |
---|
26 | mes "Here is your prize. It's yours for good."; |
---|
27 | set Q_99LVL,0; |
---|
28 | getitem 12106,1; //Jewel Case |
---|
29 | emotion e_grat; |
---|
30 | } else { |
---|
31 | mes callfunc("F_Hi"); |
---|
32 | mes "..."; |
---|
33 | emotion e_yawn; |
---|
34 | next; |
---|
35 | mes "[La Fenn]"; |
---|
36 | mes "I've got a riddle for a strong man of 2nd Class and 99 Base Level."; |
---|
37 | mes "*Yawn* If you meet some, please tell them about my riddle."; |
---|
38 | } |
---|
39 | close; |
---|
40 | } |
---|
41 | if(BaseLevel==99 && Upper==0) { |
---|
42 | if(Q_99LVL) { |
---|
43 | mes "Now go forth and get younger!"; |
---|
44 | mes "If you solve my riddle, then I'll give you a magical Jewel Case with a rare accessory."; |
---|
45 | } else { |
---|
46 | mes callfunc("F_Hi")+" The Hero!"; |
---|
47 | if(BaseExp<1000000) { |
---|
48 | mes "Now you're strong."; |
---|
49 | mes "But... not quite strong for my riddle."; |
---|
50 | if(rand(2)) { |
---|
51 | mes "Kill "+((1000000-BaseExp)/3765+1)+" more Seals and return."; |
---|
52 | } else { |
---|
53 | mes "Kill "+((1000000-BaseExp)/81+1)+" more Poporings and come back."; |
---|
54 | } |
---|
55 | } else { |
---|
56 | mes "Now you're REALLY strong."; |
---|
57 | mes "And if you get younger than now I'll give you my treasure."; |
---|
58 | set Q_99LVL,1; |
---|
59 | emotion e_no1; |
---|
60 | } |
---|
61 | } |
---|
62 | close; |
---|
63 | } |
---|
64 | emotion e_hmm; |
---|
65 | mes "..."; |
---|
66 | close; |
---|
67 | } |
---|