OSDN Git Service

First version
[st-ro/stro.git] / npc / pre-re / quests / collection / quest_disguiseloliruri.txt
1 //===== rAthena Script =======================================
2 //= iRO Repeatable EXP Quests.
3 //===== By: ==================================================
4 //= Masao
5 //===== Current Version: =====================================
6 //= 1.0
7 //===== Compatible With: =====================================
8 //= rAthena Project
9 //===== Description: =========================================
10 //= Custom Version.
11 //= Repeatable EXP Quest : Kill 50 Disguise or Loli Ruri.
12 //===== Additional Comments: =================================
13 //= 1.0 First version.
14 //============================================================
15
16 nif_fild01,332,327,4    script  Deadman 795,{
17
18         if (checkquest(60173) != -1) {
19                 if (checkquest(60173,HUNTING) != 2 ) {
20                         mes "[Deadman]";
21                         mes "Have you finished hunting the 50 Disguise?";
22                         next;
23                         switch(select("Yes:No:I want to quit")) {
24                         case 1:
25                                 mes "[Deadman]";
26                                 mes "Hmm, I don't think you've hunted 50 yet.";
27                                 close;
28                         case 2:
29                                 mes "[Deadman]";
30                                 mes "Remember, I need help hunting Disguise so go and hunt 50 of them.";
31                                 close;
32                         case 3:
33                                 mes "[Deadman]";
34                                 mes "Are you sure that you want to stop hunting?";
35                                 mes "Any progress that you've made will be erased";
36                                 next;
37                                 switch(select("Yes:No")) {
38                                 case 1:
39                                         mes "[Deadman]";
40                                         mes "Ok then, well come back here if you change your mind.";
41                                         erasequest 60173;
42                                         close;
43                                 case 2:
44                                         mes "[Deadman]";
45                                         mes "Please kill 50 Disguise in order to make this a Place were people can go to and gather Experience.";
46                                         close;
47                                 }
48                         }
49                 }
50                 mes "[Deadman]";
51                 mes "Amazing, you did that with speed.";
52                 getexp 140600,95800;
53                 erasequest 60173;
54                 close;
55         }
56         if (checkquest(60176) != -1) {
57                 if (checkquest(60176,HUNTING) != 2 ) {
58                         mes "[Deadman]";
59                         mes "Have you finished hunting the 50 Loli Ruri?";
60                         next;
61                         switch(select("Yes:No:I want to quit")) {
62                         case 1:
63                                 mes "[Deadman]";
64                                 mes "Hmm, I don't think you've hunted 50 yet.";
65                                 close;
66                         case 2:
67                                 mes "[Deadman]";
68                                 mes "Remember, I need help hunting Loli Ruri so go and hunt 50 of them.";
69                                 close;
70                         case 3:
71                                 mes "[Deadman]";
72                                 mes "Are you sure that you want to stop hunting?";
73                                 mes "Any progress that you've made will be erased";
74                                 next;
75                                 switch(select("Yes:No")) {
76                                 case 1:
77                                         mes "[Deadman]";
78                                         mes "Ok then, well come back here if you change your mind.";
79                                         erasequest 60176;
80                                         close;
81                                 case 2:
82                                         mes "[Deadman]";
83                                         mes "Please kill 50 Loli Ruri in order to make this a Place were people can go to and gather Experience.";
84                                         close;
85                                 }
86                         }
87                 }
88                 mes "[Deadman]";
89                 mes "Amazing, you did that with speed.";
90                 getexp 332000,239500;
91                 erasequest 60176;
92                 close;
93         }
94         if ((BaseLevel > 59) && (BaseLevel < 99)) {
95                 mes "[Deadman]";
96                 mes "Oh great!";
97                 mes "You are here to help me right?";
98                 mes "If not, i don't know what to do with the Monsters in this Place!";
99                 next;
100                 switch(select("Sure:No")) {
101                 case 1:
102                         mes "[Deadman]";
103                         mes "Great! I knew the moment i saw you that i can count on you!";
104                         mes "I need you to reduce the Amount of Monsters which are currently rampaging on this Map!";
105                         mes "There are to many Disguise and Loli Ruri around, which makes it impossible for the lower level players to gain good experience here.";
106                         next;
107                         mes "[Deadman]";
108                         mes "So, which of those Monsters would you like to hunt for me?";
109                         next;
110                         switch(select("Disguise:Loli Ruri:Cancel")) {
111                         case 1:
112                                 if (BaseLevel > 90) {
113                                         mes "[Deadman]";
114                                         mes "Thank you for your great help with the Disguise!";
115                                         mes "Currently the Situation is stable and i'm not in need of your help anymore to kill them.";
116                                         close;
117                                 }
118                                 mes "[Deadman]";
119                                 mes "Kill 50 of those Disguise and let me know when you're done. I will reward you for your efforts.";
120                                 setquest 60173;
121                                 close;
122                         case 2:
123                                 if (BaseLevel > 98) {
124                                         mes "[Deadman]";
125                                         mes "Thank you for your great help with the Loli Ruri!";
126                                         mes "Currently the Situation is stable and i'm not in need of your help anymore to kill them.";
127                                         close;
128                                 }
129                                 mes "[Deadman]";
130                                 mes "Kill 50 of those Loli Ruri and let me know when you're done. I will reward you for your efforts.";
131                                 setquest 60176;
132                                 close;
133                         case 3:
134                                 mes "[Deadman]";
135                                 mes "If you change your mind, please come back.";
136                                 close;
137                         }
138                 case 2:
139                         mes "[Deadman]";
140                         mes "If you change your mind, please come back.";
141                         close;
142                 }
143         }
144         mes "[Deadman]";
145         mes "Oh boy, Oh boy!";
146         next;
147         mes "[Deadman]";
148         mes "Sorry I can't talk right now I am in a world of pain here, these darn Disguise and Loli Ruri are going to kill me.";
149         close;
150 }