1 | //===== eAthena Script ======================================= |
---|
2 | //= Children Week Event |
---|
3 | //===== By: ================================================== |
---|
4 | //= Samuray22 |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.1 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena SVN |
---|
9 | //===== Description: ========================================= |
---|
10 | //= [Aegis Conversion] |
---|
11 | //= Indian Ro: Children Week Event |
---|
12 | //===== Additional Comments: ================================= |
---|
13 | //= 1.1 First Beta. [Samuray22] |
---|
14 | //============================================================ |
---|
15 | |
---|
16 | prontera,146,91,5 script Pandit chacha#child07 61,{ |
---|
17 | if(BaseLevel > 50) { |
---|
18 | mes "[Pandit chacha]"; |
---|
19 | mes "Hahaha."; |
---|
20 | mes "It is special day, comes only one time in a year."; |
---|
21 | mes "If you see little adventurers around you send to me~"; |
---|
22 | mes "I will give the special gift."; |
---|
23 | close; |
---|
24 | } else if(BaseLevel < 20) { |
---|
25 | mes "[Pandit chacha]"; |
---|
26 | mes "Hahaha."; |
---|
27 | mes "You are a baby adventurer not little adventurer."; |
---|
28 | mes "When you more grow up, come back again. hahaha."; |
---|
29 | close; |
---|
30 | } else if(oversea_event9 < 1) { |
---|
31 | mes "[Pandit chacha]"; |
---|
32 | mes "Hahaha."; |
---|
33 | mes "Welcome, little adventurers!"; |
---|
34 | mes "Today is special day, isn't it~?"; |
---|
35 | mes "I would like to give the small gift to little adventurer..."; |
---|
36 | mes "What about you? Do you want to take it?"; |
---|
37 | next; |
---|
38 | if(select("No. I will take it later.","Sure, i want.") == 1) { |
---|
39 | mes "[Pandit chacha]"; |
---|
40 | mes "That's too bad.... hum..."; |
---|
41 | mes "I gathered some stuffs from far a way world to make it...."; |
---|
42 | mes "Whenever come back again if you want it..."; |
---|
43 | close; |
---|
44 | } |
---|
45 | set oversea_event9,1; |
---|
46 | getitem 11705,10; //Children's Potion |
---|
47 | mes "[Pandit chacha]"; |
---|
48 | mes "Look. This is a child Potion."; |
---|
49 | mes "The weight is just 1 but recover much HP."; |
---|
50 | mes "If you want to get more, bring the 1 Wedding Bouquet and 1 Witherless Rose."; |
---|
51 | close; |
---|
52 | } else if(oversea_event9 == 1) { |
---|
53 | if(countitem(745) > 0 && countitem(748) > 0) { |
---|
54 | mes "[Pandit chacha]"; |
---|
55 | mes "Ahha!!"; |
---|
56 | mes "You have remembered my beautiful composition."; |
---|
57 | mes "You did good work."; |
---|
58 | mes "Could you give me 1 Wedding Bouquet and 1 Witherless Rose? "; |
---|
59 | next; |
---|
60 | if(select("Not yet.","Sure, take it.") == 1) { |
---|
61 | mes "[Pandit chacha]"; |
---|
62 | mes "If you are not prepared yet, call me when you ready."; |
---|
63 | close; |
---|
64 | } |
---|
65 | mes "[Pandit chacha]"; |
---|
66 | mes "Hahaha."; |
---|
67 | mes "Oh~ you get it."; |
---|
68 | mes "Here, I will exchange to the 50 child potion."; |
---|
69 | mes "Once you get this 50 child potion, I won't give any more."; |
---|
70 | close2; |
---|
71 | delitem 745,1; //Wedding Bouquet |
---|
72 | delitem 748,1; //Witherless Rose |
---|
73 | set oversea_event9,2; |
---|
74 | getitem 11705,50; //Children's Potion |
---|
75 | end; |
---|
76 | } |
---|
77 | mes "[Pandit chacha]"; |
---|
78 | mes "Little adventurers, you should bring the 1 Wedding Bouquet and 1 Witherless Rose."; |
---|
79 | mes "If you bring these stuffs I will exchange them for child Potion. "; |
---|
80 | close; |
---|
81 | } |
---|
82 | mes "[Pandit chacha]"; |
---|
83 | mes "Hahaha."; |
---|
84 | mes "Are you enjoying children week~? "; |
---|
85 | close; |
---|
86 | } |
---|