1 | //===== eAthena Script ======================================= |
---|
2 | //= 2006 Halloween Event |
---|
3 | //===== By: ================================================== |
---|
4 | //= Brainstorm |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.2 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena SVN |
---|
9 | //===== Description: ========================================= |
---|
10 | //= [Aegis Conversion] |
---|
11 | //= Event 1: Redeem "Pumpkin Mojo" for pumpkin headgear. |
---|
12 | //= Event 2: Create "Pumpkin Pie" item. |
---|
13 | //===== Additional Comments: ================================= |
---|
14 | //= 1.0 First semi-working conversion. [Brainstorm] |
---|
15 | //= 1.1 Refined Brainstorm's conversion. [L0ne_W0lf] |
---|
16 | //= 1.1a Minor fixes. (Screwed up weight checks somehow) [L0ne_W0lf] |
---|
17 | //= 1.2 Added missing checkweights. [L0ne_W0lf] |
---|
18 | //============================================================ |
---|
19 | |
---|
20 | // Pumpkin Mojo quest (Event 1) |
---|
21 | prontera,162,69,5 script Gloomy Jack#06_hw 1130,2,2,{ |
---|
22 | end; |
---|
23 | |
---|
24 | OnTouch: |
---|
25 | mes "[Cool Devi]"; |
---|
26 | mes "If you have something to say to him,"; |
---|
27 | mes "just talk to me."; |
---|
28 | mes "You won't even understand what stupid pumkin headed Jack is saying."; |
---|
29 | close; |
---|
30 | } |
---|
31 | |
---|
32 | prontera,164,69,3 script Cool Devi#06_hw 738,{ |
---|
33 | set .@now_weight,MaxWeight-Weight; |
---|
34 | if (.@now_weight < 2000 || checkweight(1201,1) == 0) { |
---|
35 | mes "^3355FFWait a second!"; |
---|
36 | mes "Right now, you're carrying"; |
---|
37 | mes "too many things with you."; |
---|
38 | mes "Please come back after"; |
---|
39 | mes "using the Kafra Service"; |
---|
40 | mes "to store some of your items.^000000"; |
---|
41 | close; |
---|
42 | } |
---|
43 | if (countitem(7609) > 0) { |
---|
44 | mes "[Gloomy Jack]"; |
---|
45 | mes "Oh wait, is that a Pumpkin Mojo you are carrying?"; |
---|
46 | mes " "; |
---|
47 | mes "[Cool Devi]"; |
---|
48 | mes "Says he."; |
---|
49 | next; |
---|
50 | mes "[Gloomy Jack]"; |
---|
51 | mes "Give it to me. I'll pay you back."; |
---|
52 | mes " "; |
---|
53 | mes "[Cool Devi]"; |
---|
54 | mes "Says he..."; |
---|
55 | mes "I just can guess what he will say next. So what do you say?"; |
---|
56 | next; |
---|
57 | if (select("What will he say?:I also know about it.") == 1) { |
---|
58 | mes "[" + strcharinfo(0) + "]"; |
---|
59 | mes "What will he say?"; |
---|
60 | next; |
---|
61 | mes "[Cool Devi]"; |
---|
62 | mes "Jack is not like others. He is halloween Jack."; |
---|
63 | mes "but one day, he lost his Pumpkin Mojo and turned into depressed Jack.."; |
---|
64 | mes "Pumpkin Mojo was his all."; |
---|
65 | next; |
---|
66 | mes "[Cool Devi]"; |
---|
67 | mes "Well, actually that's the main reason Jack came to town."; |
---|
68 | mes "To find his Pumpkin Mojo. Most suspicious suspect is ^4d4dffDelightful Lude^000000, the one known as Halloween monster"; |
---|
69 | next; |
---|
70 | mes "[Cool Devi]"; |
---|
71 | mes "Why don't you give him back the 'Pumpkin Mojo'."; |
---|
72 | mes "Don't worry he will compensate you."; |
---|
73 | next; |
---|
74 | mes "[" + strcharinfo(0) + "]"; |
---|
75 | mes "Compensate?With what?"; |
---|
76 | next; |
---|
77 | mes "[Cool Devi]"; |
---|
78 | mes "If you bring ^4d4dff 1 Pumpkin Mojo^000000 and a pumpkin head that we gave out to you last year,"; |
---|
79 | mes "he will make it to ^00ff00the most fantastic pumpkin hat^000000."; |
---|
80 | mes "Or if you don't have pumpkin head, you can just bring a ^3d3dff Pumpkin Mojo, a pumpkin, and a cap ^000000."; |
---|
81 | next; |
---|
82 | mes "[Cool Devi]"; |
---|
83 | mes "Well, that Pumpkin Mojo is useless if you just carry it. "; |
---|
84 | mes "Give it to Jack. Don't you feel pity for him?."; |
---|
85 | close; |
---|
86 | } |
---|
87 | mes "[Cool Devi]"; |
---|
88 | mes "Oh~Great."; |
---|
89 | mes "Then, let me see what you got."; |
---|
90 | next; |
---|
91 | if ((countitem(7609) > 0) && (countitem(5134) > 0)) { |
---|
92 | mes "[Gloomy Jack]"; |
---|
93 | mes "Oh, you brought the pumpkin head!"; |
---|
94 | mes "I'll make you to nicer one."; |
---|
95 | mes " "; |
---|
96 | mes "[Cool Devi]"; |
---|
97 | mes "says he."; |
---|
98 | next; |
---|
99 | if (select( "No, I'll come back later.:Oh, good. Make it now!") == 1) { |
---|
100 | mes "[Gloomy Jack]"; |
---|
101 | mes "Huh?"; |
---|
102 | mes " "; |
---|
103 | mes "[Cool Devi]"; |
---|
104 | mes "What? Look at Jack. He has got so dissapointed."; |
---|
105 | mes "Promise me to give the Pumpkin Mojo back to Jack later someday, will you?"; |
---|
106 | close; |
---|
107 | } |
---|
108 | mes "[Gloomy Jack]"; |
---|
109 | mes "Thanks for giving my thing back, I'll make your hat prettier."; |
---|
110 | mes " "; |
---|
111 | mes "[Cool Devi]"; |
---|
112 | mes "says he."; |
---|
113 | next; |
---|
114 | specialeffect 362; //EF_LEVEL99 |
---|
115 | mes "[Excited Jack]"; |
---|
116 | mes "Lalala~ lalala~"; |
---|
117 | mes " "; |
---|
118 | mes "(He starts singing. On a sudden, Jack's aura appeared.)"; |
---|
119 | delitem 7609,1; //Pumpkin_Mojo |
---|
120 | delitem 5134,1; //Pumpkin_Hat |
---|
121 | getitem 5202,1; //Pumpkin_Hat_ |
---|
122 | next; |
---|
123 | specialeffect 1; //EF_HIT2 |
---|
124 | mes "[Gloomy Jack]"; |
---|
125 | mes "My aura is not like it used to be. Maybe I need more Pumpkin Mojo."; |
---|
126 | mes " "; |
---|
127 | mes "[Cool Devi]"; |
---|
128 | mes "says he..."; |
---|
129 | next; |
---|
130 | mes "[Cool Devi]"; |
---|
131 | mes "Oh~poor Jack."; |
---|
132 | mes "Well, someday he'll get back all his Pumpkin Mojo back."; |
---|
133 | close; |
---|
134 | } |
---|
135 | else if ((countitem(7609) > 0) && (countitem(535) > 0) && (countitem(2226) > 0)) { |
---|
136 | mes "[Gloomy Jack]"; |
---|
137 | mes "Wow!"; |
---|
138 | mes "I'll turn your hat to very cool one."; |
---|
139 | mes " "; |
---|
140 | mes "[Cool Devi]"; |
---|
141 | mes "says he..."; |
---|
142 | next; |
---|
143 | if (select( "No, I'll come back later.:Oh,good. Make it now!") == 1) { |
---|
144 | mes "[Gloomy Jack]"; |
---|
145 | mes "Huh?"; |
---|
146 | mes " "; |
---|
147 | mes "[Cool Devi]"; |
---|
148 | mes "What? Look at Jack. He has got so dissapointed."; |
---|
149 | mes "Promise me to give the Pumpkin Mojo back to Jack later someday,will you?"; |
---|
150 | close; |
---|
151 | } |
---|
152 | mes "[Gloomy Jack]"; |
---|
153 | mes "Thanks for giving my thing back, I'll make your hat prettier."; |
---|
154 | mes " "; |
---|
155 | mes "[Cool Devi]"; |
---|
156 | mes "says he."; |
---|
157 | next; |
---|
158 | specialeffect 362; //EF_LEVEL99 |
---|
159 | mes "[Excited Jack]"; |
---|
160 | mes "Lalala~ lalala~"; |
---|
161 | mes " "; |
---|
162 | mes "(He starts singing. On a sudden, Jack's aura appeared.)"; |
---|
163 | delitem 7609, 1;//Pumpkin_Mojo |
---|
164 | delitem 535, 1;//Pumpkin |
---|
165 | delitem 2226, 1;//Cap |
---|
166 | getitem 5202, 1;//Pumpkin_Hat_ |
---|
167 | next; |
---|
168 | specialeffect 1; //EF_HIT2 |
---|
169 | mes "[Gloomy Jack]"; |
---|
170 | mes "My aura is not like it used to be. Maybe I need more Pumpkin Mojo."; |
---|
171 | mes " "; |
---|
172 | mes "[Cool Devi]"; |
---|
173 | mes "says he..."; |
---|
174 | next; |
---|
175 | mes "[Cool Devi]"; |
---|
176 | mes "Oh~poor Jack."; |
---|
177 | mes "Well, someday he'll get back all his Pumpkin Mojo back."; |
---|
178 | close; |
---|
179 | } |
---|
180 | else { |
---|
181 | mes "[Cool Devi]"; |
---|
182 | mes "Hey,there. You don't seem to have all materials for the fantastic hat. "; |
---|
183 | close; |
---|
184 | } |
---|
185 | } |
---|
186 | else { |
---|
187 | mes "[Gloomy Jack]"; |
---|
188 | mes "Hey,there. Why don't you come here and listen to my story."; |
---|
189 | mes " "; |
---|
190 | mes "[Cool Devi]"; |
---|
191 | mes "Says he."; |
---|
192 | next; |
---|
193 | mes "[Gloomy Jack]"; |
---|
194 | mes "I used to be very famous. But now....."; |
---|
195 | mes " "; |
---|
196 | mes "[Cool Devi]"; |
---|
197 | mes "Says he..."; |
---|
198 | mes "Well, I'll just tell you without translating."; |
---|
199 | next; |
---|
200 | mes "[Cool Devi]"; |
---|
201 | mes "Jack is not like others. He is halloween Jack."; |
---|
202 | mes "but one day, he lost his Pumpkin Mojo and turned into depressed Jack.."; |
---|
203 | mes "Pumpkin Mojo was his all."; |
---|
204 | next; |
---|
205 | mes "[Cool Devi]"; |
---|
206 | mes "Well, actually that's the main reason Jack came to town."; |
---|
207 | mes "To find his Pumpkin Mojo. Most suspicious suspect is ^4d4dffDelightful Lude^000000, the one known as Halloween monster."; |
---|
208 | next; |
---|
209 | mes "[Cool Devi]"; |
---|
210 | mes "Why don't you give him back the 'Pumpkin Mojo'."; |
---|
211 | mes "Don't worry he will compensate you."; |
---|
212 | next; |
---|
213 | mes "[" + strcharinfo(0) + "]"; |
---|
214 | mes "Compensate? With what?"; |
---|
215 | next; |
---|
216 | mes "[Cool Devi]"; |
---|
217 | mes "If you bring ^4d4dff 1 Pumpkin Mojo^000000 and a pumpkin head that we gave out to you last year,"; |
---|
218 | mes "he will make it to ^00ff00the most fantastic pumpkin hat^000000."; |
---|
219 | mes "Or if you don't have pumpkin head, you can just bring a ^3d3dff Pumpkin Mojo, a pumpkin, and a cap ^000000."; |
---|
220 | next; |
---|
221 | mes "[Cool Devi]"; |
---|
222 | mes "Well, that Pumpkin Mojo is useless if you just carry it. "; |
---|
223 | mes "Give it to Jack. Don't you feel pity for him?."; |
---|
224 | close; |
---|
225 | } |
---|
226 | } |
---|
227 | |
---|
228 | |
---|
229 | geffen,145,132,3 script Hoirin#06_hw 729,{ |
---|
230 | set .@now_weight,MaxWeight-Weight; |
---|
231 | if (.@now_weight < 2000 || checkweight(1201,1) == 0) { |
---|
232 | mes "^3355FFWait a second!"; |
---|
233 | mes "Right now, you're carrying"; |
---|
234 | mes "too many things with you."; |
---|
235 | mes "Please come back after"; |
---|
236 | mes "using the Kafra Service"; |
---|
237 | mes "to store some of your items.^000000"; |
---|
238 | close; |
---|
239 | } |
---|
240 | if (halloween < 100) { |
---|
241 | mes "[Hoirin]"; |
---|
242 | mes "Pumpkin is the gift that God had sent us."; |
---|
243 | mes "It provides good nutrition and helps you to stay healthy!"; |
---|
244 | mes "Bravo~bravo~!"; |
---|
245 | next; |
---|
246 | mes "[Hoirin]"; |
---|
247 | mes "I, Hoirin have always thought about a "; |
---|
248 | mes "way to eat pumpkin more deliciously."; |
---|
249 | mes "But all of a sudden, I realized."; |
---|
250 | next; |
---|
251 | mes "[Hoirin]"; |
---|
252 | mes "If I have that! I can make best the Pumpkin pie!!!!!"; |
---|
253 | next; |
---|
254 | if (select( "What's that?:Ignore.") == 1) { |
---|
255 | mes "[Hoirin]"; |
---|
256 | mes "What's the first image you see when you think of pumpkin?"; |
---|
257 | mes "I see Jack! I think Jack is the most evolved form of pumpkin!"; |
---|
258 | mes "I wonder what does Jack have something special? Can you imagine?"; |
---|
259 | next; |
---|
260 | mes "[Hoirin]"; |
---|
261 | mes "I always prefer unique pumpkin dish! Recently, I found out that there are many kinds of Jack in the world "; |
---|
262 | mes "and the extreme class Jack has blue aura around his body!"; |
---|
263 | next; |
---|
264 | mes "[Hoirin]"; |
---|
265 | mes "Guess what?! it was Halloween Jack!"; |
---|
266 | mes "Halloween Jack has somthing that is concentrated with pumpkin."; |
---|
267 | mes "It is called ^4d4dffPumpkin Mojo^000000. Only if i have it, i can finish making my special pie."; |
---|
268 | next; |
---|
269 | mes "[Hoirin]"; |
---|
270 | mes "Bring me the ingredients!"; |
---|
271 | mes "I'll make you a very special pie right away!"; |
---|
272 | mes "You'll get addicted to it."; |
---|
273 | mes "Don't be surprised after trying it."; |
---|
274 | next; |
---|
275 | mes "[" + strcharinfo(0) + "]"; |
---|
276 | mes "......................"; |
---|
277 | mes "You seem to be such a passionate person."; |
---|
278 | mes "So, what's the ingredient anyway.?"; |
---|
279 | next; |
---|
280 | mes "[Hoirin]"; |
---|
281 | mes "Good question!"; |
---|
282 | mes "To make my special Pumpkin pie, I need"; |
---|
283 | mes "^4d4dff 1 Pumpkin Mojo"; |
---|
284 | mes "2 Pumpkin"; |
---|
285 | mes "2 Egg^000000"; |
---|
286 | mes ""; |
---|
287 | next; |
---|
288 | mes "[Hoirin]"; |
---|
289 | mes "Just Bring Pumpkin Mojo, Pumpkin, and a Egg."; |
---|
290 | mes "Leave the rest for me..You'll get to try the best pumkin pie!"; |
---|
291 | set halloween, 100; |
---|
292 | close; |
---|
293 | } |
---|
294 | mes "[Hoirin]"; |
---|
295 | mes "Hm..You'll regret it!"; |
---|
296 | mes "Hoirin's pumpkin pie is just so delicious."; |
---|
297 | close; |
---|
298 | } |
---|
299 | else { |
---|
300 | mes "[Hoirin]"; |
---|
301 | mes "So, did you bring all materials?"; |
---|
302 | mes "Were there anything hard to find?"; |
---|
303 | next; |
---|
304 | switch(select( "I brought all ingredients.:How can I get eggs?:No,I'm just passing by.")) { |
---|
305 | case 1: |
---|
306 | if ((countitem(7609) > 0) && (countitem(535) > 1) && (countitem(574) > 1)) { |
---|
307 | mes "[Hoirin]"; |
---|
308 | mes "You are right!"; |
---|
309 | mes "You brought all things right. Give it to me!!"; |
---|
310 | specialeffect2 1; //EF_HIT1 |
---|
311 | next; |
---|
312 | specialeffect 148; //EF_PIERCESELF |
---|
313 | mes "[Hoirin]"; |
---|
314 | mes "Abracadabra~~"; |
---|
315 | mes "Abracadabra~~!"; |
---|
316 | next; |
---|
317 | mes "[Hoirin]"; |
---|
318 | mes "Ta-da(h)!"; |
---|
319 | mes "Here it is~ help yourself."; |
---|
320 | mes "It'll be good for your health. I added extra nutrient in it."; |
---|
321 | delitem 7609,1; //Pumpkin_Mojo |
---|
322 | delitem 535,2; //Pumpkin |
---|
323 | delitem 574,2; //Egg |
---|
324 | getitem 12192,1; //Pumpkin_Pie |
---|
325 | close; |
---|
326 | } |
---|
327 | else { |
---|
328 | mes "[Hoirin]"; |
---|
329 | mes "No!! This is not enough. I need"; |
---|
330 | mes "^4d4dff 1 Pumpkin Mojo"; |
---|
331 | mes "2 Pumpkin"; |
---|
332 | mes "2 Egg^000000"; |
---|
333 | mes " at least."; |
---|
334 | close; |
---|
335 | } |
---|
336 | case 2: |
---|
337 | if (halloween == 100) { |
---|
338 | mes "[Hoirin]"; |
---|
339 | mes "Egg?"; |
---|
340 | mes "Well, actually I know someone who can help you."; |
---|
341 | mes "There's a man who raise many chickens."; |
---|
342 | next; |
---|
343 | mes "[Hoirin]"; |
---|
344 | mes "I can send you to where he is if you want."; |
---|
345 | mes "^4d4dffBut only for once^000000."; |
---|
346 | next; |
---|
347 | if (select("Send me.:It's ok.") == 1) { |
---|
348 | mes "[Hoirin]"; |
---|
349 | mes "Ok, go get the eggs."; |
---|
350 | set halloween, 101; |
---|
351 | close2; |
---|
352 | warp "nif_fild01", 162, 113; |
---|
353 | end; |
---|
354 | } |
---|
355 | mes "[Hoirin]"; |
---|
356 | mes "Do you think you can go without my help?!"; |
---|
357 | mes "Ok! go ahead."; |
---|
358 | mes "Do you know where it is?"; |
---|
359 | close; |
---|
360 | } |
---|
361 | else { |
---|
362 | mes "[Hoirin]"; |
---|
363 | mes "if you go to ^4d4dfffarm of Skelington Town at Neiflheim^000000, you'll meet Chicken Masta. He raises chickens."; |
---|
364 | close; |
---|
365 | } |
---|
366 | case 3: |
---|
367 | mes "[Hoirin]"; |
---|
368 | mes "Next time, don't forget to bring "; |
---|
369 | mes "all the ingredients for pumpkin pie!"; |
---|
370 | close; |
---|
371 | } |
---|
372 | } |
---|
373 | } |
---|
374 | |
---|
375 | nif_in,18,34,5 script Loli Ruri#06_hw 1505,2,2,{ |
---|
376 | end; |
---|
377 | |
---|
378 | OnTouch: |
---|
379 | mes "[Deviruchi]"; |
---|
380 | mes "Hey there, if you have something to say to Loli Ruri, talk to me."; |
---|
381 | mes "She's not used to human language."; |
---|
382 | close; |
---|
383 | } |
---|
384 | |
---|
385 | nif_in,19,32,3 script Deviruchi#06_hw 738,{ |
---|
386 | set .@now_weight,MaxWeight-Weight; |
---|
387 | if (.@now_weight < 2000 || checkweight(1201,1) == 0) { |
---|
388 | mes "^3355FFWait a second!"; |
---|
389 | mes "Right now, you're carrying"; |
---|
390 | mes "too many things with you."; |
---|
391 | mes "Please come back after"; |
---|
392 | mes "using the Kafra Service"; |
---|
393 | mes "to store some of your items.^000000"; |
---|
394 | close; |
---|
395 | } |
---|
396 | mes "[Loli Ruri]"; |
---|
397 | mes "Devi~Where's the pumpkin pie?"; |
---|
398 | mes "Humans make them, don't they?"; |
---|
399 | mes "Do you have it then?"; |
---|
400 | mes " "; |
---|
401 | mes "[Deviruchi]"; |
---|
402 | mes "Says she."; |
---|
403 | next; |
---|
404 | mes "[Deviruchi]"; |
---|
405 | mes "If you have a pumpinkin pie, can I have one?"; |
---|
406 | mes "Cause we are the victim if Loli Ruri gets mad."; |
---|
407 | next; |
---|
408 | mes "[Deviruchi]"; |
---|
409 | mes "Well I'm not saying that I want it for free."; |
---|
410 | mes "Don't worry, I won't let you down."; |
---|
411 | next; |
---|
412 | switch(select( "Give him the pumpkin pie.:Do not give him the pumpkin pie.:Huh? What pumkin pie?")) { |
---|
413 | case 1: |
---|
414 | if (countitem(12192) > 0) { |
---|
415 | mes "[Loli Ruri]"; |
---|
416 | mes "Thanks for the pumkin pie!"; |
---|
417 | mes "Here, take this."; |
---|
418 | mes " "; |
---|
419 | mes "[Deviruchi]"; |
---|
420 | mes "Says she."; |
---|
421 | next; |
---|
422 | mes "[Deviruchi]"; |
---|
423 | mes "As I promised, I'll give you something worth the pie."; |
---|
424 | mes "Hang on...."; |
---|
425 | next; |
---|
426 | mes "[Deviruchi]"; |
---|
427 | mes "Hmm...This would be good."; |
---|
428 | mes "Here take this, and thanks again~"; |
---|
429 | delitem 12192, 1;//Pumpkin_Pie |
---|
430 | set @hw_temp,rand(1,3); |
---|
431 | if (@hw_temp == 2) getitem 12130,1; //Cookie_Bag |
---|
432 | else getitem 7460,3; //Nifl_Express_Ticket |
---|
433 | close; |
---|
434 | } |
---|
435 | else { |
---|
436 | mes "[Loli Ruri]"; |
---|
437 | mes "Are you kidding me?"; |
---|
438 | mes "Where's the pumpkin pie! Don't try to lie to me!"; |
---|
439 | mes " "; |
---|
440 | mes "[Deviruchi]"; |
---|
441 | mes "Say she..Seems like she's very angry...You are in trouble."; |
---|
442 | next; |
---|
443 | mes "[Loli Ruri]"; |
---|
444 | mes "Devi!!!!!You are the one who told me that I can get the pumpkin pie if I stand here and wait."; |
---|
445 | mes "Watch your back!"; |
---|
446 | mes " "; |
---|
447 | mes "[Deviruchi]"; |
---|
448 | mes "Says she..Huh?!!Me?!!"; |
---|
449 | next; |
---|
450 | mes "[" + strcharinfo(0) + "]"; |
---|
451 | mes "Poor Devi~"; |
---|
452 | mes "You shouldn't have lied~"; |
---|
453 | mes "Wish you a luck."; |
---|
454 | close; |
---|
455 | } |
---|
456 | case 2: |
---|
457 | mes "[Loli Ruri]"; |
---|
458 | mes "I want to eat pumpkin pie. Can I have one?Please~~~~"; |
---|
459 | mes " "; |
---|
460 | mes "[Deviruchi]"; |
---|
461 | mes "Says he.....Give me if you have one."; |
---|
462 | close; |
---|
463 | case 3: |
---|
464 | mes "[Deviruchi]"; |
---|
465 | mes "There's a man who makes a very special pumpkin pie."; |
---|
466 | mes "No one can forget what it taste like."; |
---|
467 | next; |
---|
468 | mes "[Deviruchi]"; |
---|
469 | mes "Lori Ruri is waiting here for someone who will get the pie for him."; |
---|
470 | mes "Can you get her one?"; |
---|
471 | mes "I'll treat you back."; |
---|
472 | close; |
---|
473 | } |
---|
474 | } |
---|
475 | |
---|
476 | // Creation of Pumpkin Pie (Event 2) |
---|
477 | nif_fild01,165,115,3 script Chicken Masta#06_hw 794,{ |
---|
478 | set .@now_weight,MaxWeight-Weight; |
---|
479 | if (.@now_weight < 2000 || checkweight(1201,1) == 0) { |
---|
480 | mes "^3355FFWait a second!"; |
---|
481 | mes "Right now, you're carrying"; |
---|
482 | mes "too many things with you."; |
---|
483 | mes "Please come back after"; |
---|
484 | mes "using the Kafra Service"; |
---|
485 | mes "to store some of your items.^000000"; |
---|
486 | close; |
---|
487 | } |
---|
488 | if (halloween == 101) { |
---|
489 | mes "[Chicken Masta]"; |
---|
490 | mes "Where did the chicken have gone?!"; |
---|
491 | mes "Oh, hey stranger. How can I help you?"; |
---|
492 | next; |
---|
493 | mes "[Chicken Masta]"; |
---|
494 | mes "This town is too dangerous for you to hang around."; |
---|
495 | mes "You'd better go back to where you came from...."; |
---|
496 | next; |
---|
497 | mes "[Chicken Masta]"; |
---|
498 | mes "...Are you looking for eggs?"; |
---|
499 | mes "Recently, people are asking me for eggs to make some kind of pie....are you one of them?"; |
---|
500 | next; |
---|
501 | if (select( "Actually, yes. I came here to get some eggs.:Nope.") == 1) { |
---|
502 | mes "[Chicken Masta]"; |
---|
503 | mes "Ok. But some of my chickens ran away,"; |
---|
504 | mes "so I have no eggs much left."; |
---|
505 | mes "1000 zeny for 2 eggs! how's that?"; |
---|
506 | next; |
---|
507 | switch(select( "Ok,I'll take it.:I'll just buy one.:Whew~it's too expensive.")) { |
---|
508 | case 1: |
---|
509 | if (Zeny > 1999) { |
---|
510 | mes "[Chicken Masta]"; |
---|
511 | mes "Thanks."; |
---|
512 | mes "Here are the eggs."; |
---|
513 | set Zeny,Zeny-2000; |
---|
514 | set halloween, 102; |
---|
515 | getitem 574,2; //Egg |
---|
516 | close; |
---|
517 | } |
---|
518 | else { |
---|
519 | mes "[Chicken Masta]"; |
---|
520 | mes "Hey this is not enough~"; |
---|
521 | mes "1000zeny per each, so if you buy two,that means 2000zeny."; |
---|
522 | close; |
---|
523 | } |
---|
524 | case 2: |
---|
525 | if (Zeny > 999) { |
---|
526 | mes "[Chicken Masta]"; |
---|
527 | mes "Thanks."; |
---|
528 | mes "Here are the eggs."; |
---|
529 | set Zeny,Zeny-1000; |
---|
530 | set halloween, 102; |
---|
531 | getitem 574,1; //Egg |
---|
532 | close; |
---|
533 | } |
---|
534 | else { |
---|
535 | mes "[Chicken Masta]"; |
---|
536 | mes "You don't seem to have enough money..."; |
---|
537 | mes "It's 1000 zeny per each."; |
---|
538 | close; |
---|
539 | } |
---|
540 | case 3: |
---|
541 | mes "[Chicken Masta]"; |
---|
542 | mes "Well...I know it's liitle bit expensive but as I told you, my chickens ran away."; |
---|
543 | mes "You have to understand."; |
---|
544 | close; |
---|
545 | } |
---|
546 | } |
---|
547 | mes "[Chicken Masta]"; |
---|
548 | mes "Let me tell you just one thing!"; |
---|
549 | mes "If you don't want to die,"; |
---|
550 | mes "you'd better run away. It's too dangerous in here."; |
---|
551 | close; |
---|
552 | } |
---|
553 | else if (halloween == 102) { |
---|
554 | mes "[Chicken Masta]"; |
---|
555 | mes "Do you need eggs?..."; |
---|
556 | mes "Then, help me first."; |
---|
557 | mes "8 of my chickens ran away."; |
---|
558 | mes "I just don't know where they are."; |
---|
559 | next; |
---|
560 | mes "[Chicken Masta]"; |
---|
561 | mes "I don't expect all chickens to come back home."; |
---|
562 | mes "Only if you find me one of them, I'll sell three eggs for you."; |
---|
563 | next; |
---|
564 | mes "[Chicken Masta]"; |
---|
565 | mes "Isn't it a great deal?"; |
---|
566 | mes "Chickens must be around here somewhere."; |
---|
567 | next; |
---|
568 | mes "[Chicken Masta]"; |
---|
569 | mes "You don't have to bring back chickens to me if you find one,"; |
---|
570 | mes "Just insert the word ^4d4dff'Return'^000000."; |
---|
571 | mes "........."; |
---|
572 | next; |
---|
573 | mes "[Chicken Masta]"; |
---|
574 | mes "It's a spell to make chickens to go back home."; |
---|
575 | mes "........."; |
---|
576 | mes "Don't forget the word 'Return'!"; |
---|
577 | next; |
---|
578 | mes "[Chicken Masta]"; |
---|
579 | mes "I hope you can find my chickens."; |
---|
580 | close; |
---|
581 | } |
---|
582 | else if (halloween == 103) { |
---|
583 | mes "[Chicken Masta]"; |
---|
584 | mes "Oh, you came back. I've been waiting for you."; |
---|
585 | mes "And thanks for the chickens you sent me."; |
---|
586 | mes "They are saftly kept in the henhouse, in case of running away again."; |
---|
587 | next; |
---|
588 | mes "[Chicken Masta]"; |
---|
589 | mes "I didn't forget what we have promised."; |
---|
590 | mes "Tell me how many eggs you want."; |
---|
591 | mes "It's 1000zeny per each."; |
---|
592 | mes "And maximum 3 is all you can get."; |
---|
593 | next; |
---|
594 | while(1) { |
---|
595 | input .@input; |
---|
596 | if (.@input == 0) { |
---|
597 | mes "[Chicken Masta]"; |
---|
598 | mes "You don't have to buy it, if you don't need it."; |
---|
599 | close; |
---|
600 | } |
---|
601 | else if (@input > 3) { |
---|
602 | mes "[Chicken Masta]"; |
---|
603 | mes "What did I tell you."; |
---|
604 | mes "I'm going to sell only three eggs."; |
---|
605 | next; |
---|
606 | } |
---|
607 | else |
---|
608 | break; |
---|
609 | } |
---|
610 | set .@hw_egg, .@input * 1000; |
---|
611 | if (Zeny < @hw_egg) { |
---|
612 | mes "[Chicken Masta]"; |
---|
613 | mes "You don't seem to have enough zeny."; |
---|
614 | close; |
---|
615 | } |
---|
616 | mes "[Chicken Masta]"; |
---|
617 | mes "Here you are."; |
---|
618 | mes "But no more."; |
---|
619 | mes "If you want more eggs, find me more chickens."; |
---|
620 | set Zeny,Zeny-@hw_egg; |
---|
621 | getitem 574, @input;//Egg |
---|
622 | set halloween, 102; |
---|
623 | close; |
---|
624 | } |
---|
625 | else { |
---|
626 | mes "[Chicken Masta]"; |
---|
627 | mes "Where did the chicken have gone?!"; |
---|
628 | mes "Oh, hey stranger. How can I help you?"; |
---|
629 | next; |
---|
630 | mes "[Chicken Masta]"; |
---|
631 | mes "This town is too dangerous for you to hang around."; |
---|
632 | mes "You'd better go back to where you came from...."; |
---|
633 | close; |
---|
634 | } |
---|
635 | } |
---|
636 | |
---|
637 | nif_fild01,167,113,3 script Masta's chicken#06_hw01 800,{ |
---|
638 | mes "Drowsing chicken."; |
---|
639 | close; |
---|
640 | } |
---|
641 | |
---|
642 | - script HwChicken::HwChicken -1,{ |
---|
643 | if ((halloween == 102) || (halloween == 103)) { |
---|
644 | mes "Oh, this must be Chicken Masta's chicken."; |
---|
645 | mes "I should insert the magic word."; |
---|
646 | next; |
---|
647 | input @inputstr$; |
---|
648 | if( @inputstr$ == "Return" ) { |
---|
649 | emotion e_omg; |
---|
650 | specialeffect 34; //EF_TELEPORTATION |
---|
651 | mes "The magic spell has been casted."; |
---|
652 | set halloween, 103; |
---|
653 | disablenpc "Masta's chicken#"+strnpcinfo(1); |
---|
654 | close2; |
---|
655 | sleep 180000; |
---|
656 | enablenpc "Masta's chicken#"+strnpcinfo(1); |
---|
657 | end; |
---|
658 | } |
---|
659 | else { |
---|
660 | mes "[" + strcharinfo(0) + "]"; |
---|
661 | mes "Hm...I must have misspelled."; |
---|
662 | close; |
---|
663 | } |
---|
664 | } |
---|
665 | else { |
---|
666 | mes "Drowsing chicken."; |
---|
667 | close; |
---|
668 | } |
---|
669 | } |
---|
670 | |
---|
671 | - script HwChicken2::HwChicken2 -1,{ |
---|
672 | set @egg_temp,rand(1,4); |
---|
673 | if( @egg_temp == 3) { |
---|
674 | mes "As soon as you got close to the chicken and touched it, it disappeared completely."; |
---|
675 | mes "You got an 'egg' in the place where the chicken disappeared."; |
---|
676 | disablenpc "Chicken#"+strnpcinfo(1); |
---|
677 | getitem 574,1; //Egg |
---|
678 | close; |
---|
679 | } |
---|
680 | else { |
---|
681 | mes "As soon as you got close to the chicken and touched it, it disappeared completely."; |
---|
682 | disablenpc "Chicken#"+strnpcinfo(1); |
---|
683 | close; |
---|
684 | } |
---|
685 | } |
---|
686 | |
---|
687 | - script HwChicken3::HwChicken3 -1,{ |
---|
688 | set @egg_temp,rand(1,4); |
---|
689 | if( @egg_temp == 3) { |
---|
690 | mes "As soon as you got close to the chicken and touched it, it disappeared completely."; |
---|
691 | mes "You got an 'egg' in the place where the chicken disappeared."; |
---|
692 | disablenpc "Chicken#"+strnpcinfo(1); |
---|
693 | getitem 574,1; //Egg |
---|
694 | close; |
---|
695 | } |
---|
696 | else { |
---|
697 | mes "As soon as you got close to the chicken and touched it, it disappeared completely."; |
---|
698 | disablenpc "Chicken#"+strnpcinfo(1); |
---|
699 | close; |
---|
700 | } |
---|
701 | |
---|
702 | OnInit: |
---|
703 | while(1) { |
---|
704 | sleep 180000; |
---|
705 | specialeffect 360; |
---|
706 | end; |
---|
707 | } |
---|
708 | } |
---|
709 | |
---|
710 | |
---|
711 | nif_fild01,270,145,3 duplicate(HwChicken) Masta's chicken#06_hw02 800 |
---|
712 | nif_fild01,219,267,4 duplicate(HwChicken) Masta's chicken#06_hw03 800 |
---|
713 | nif_fild01,199,240,5 duplicate(HwChicken) Masta's chicken#06_hw04 800 |
---|
714 | nif_fild01,316,97,6 duplicate(HwChicken) Masta's chicken#06_hw05 800 |
---|
715 | nif_fild01,147,343,7 duplicate(HwChicken) Masta's chicken#06_hw06 800 |
---|
716 | nif_fild01,185,325,8 duplicate(HwChicken) Masta's chicken#06_hw07 800 |
---|
717 | nif_fild01,133,105,1 duplicate(HwChicken) Masta's chicken#06_hw08 800 |
---|
718 | nif_fild01,331,329,2 duplicate(HwChicken) Masta's chicken#06_hw09 800 |
---|
719 | |
---|
720 | pay_dun03,1,1,0 script #06_hw_timer01 -1,{ |
---|
721 | OnInit: |
---|
722 | disablenpc "Chicken#06_hw_p01"; |
---|
723 | disablenpc "Chicken#06_hw_p02"; |
---|
724 | disablenpc "Chicken#06_hw_p03"; |
---|
725 | disablenpc "Chicken#06_hw_p04"; |
---|
726 | disablenpc "Chicken#06_hw_p05"; |
---|
727 | disablenpc "Chicken#06_hw_p06"; |
---|
728 | disablenpc "Chicken#06_hw_p07"; |
---|
729 | disablenpc "Chicken#06_hw_p08"; |
---|
730 | disablenpc "Chicken#06_hw_p09"; |
---|
731 | disablenpc "Chicken#06_hw_p10"; |
---|
732 | disablenpc "Chicken#06_hw_p11"; |
---|
733 | disablenpc "Chicken#06_hw_p12"; |
---|
734 | disablenpc "Chicken#06_hw_p13"; |
---|
735 | disablenpc "Chicken#06_hw_p14"; |
---|
736 | disablenpc "Chicken#06_hw_p15"; |
---|
737 | disablenpc "Chicken#06_hw_p16"; |
---|
738 | disablenpc "Chicken#06_hw_p17"; |
---|
739 | disablenpc "Chicken#06_hw_p18"; |
---|
740 | disablenpc "Chicken#06_hw_p19"; |
---|
741 | disablenpc "Chicken#06_hw_p20"; |
---|
742 | disablenpc "Chicken#06_hw_p21"; |
---|
743 | disablenpc "Chicken#06_hw_p22"; |
---|
744 | disablenpc "Chicken#06_hw_p23"; |
---|
745 | disablenpc "Chicken#06_hw_p24"; |
---|
746 | disablenpc "Chicken#06_hw_p25"; |
---|
747 | disablenpc "Chicken#06_hw_p26"; |
---|
748 | disablenpc "Chicken#06_hw_p27"; |
---|
749 | disablenpc "Chicken#06_hw_p28"; |
---|
750 | disablenpc "Chicken#06_hw_p29"; |
---|
751 | disablenpc "Chicken#06_hw_p30"; |
---|
752 | disablenpc "Chicken#06_hw_p31"; |
---|
753 | disablenpc "Chicken#06_hw_p32"; |
---|
754 | disablenpc "Chicken#06_hw_p33"; |
---|
755 | disablenpc "Chicken#06_hw_p34"; |
---|
756 | disablenpc "Chicken#06_hw_p35"; |
---|
757 | disablenpc "Chicken#06_hw_p36"; |
---|
758 | disablenpc "Chicken#06_hw_p37"; |
---|
759 | disablenpc "Chicken#06_hw_p38"; |
---|
760 | disablenpc "Chicken#06_hw_p39"; |
---|
761 | disablenpc "Chicken#06_hw_p40"; |
---|
762 | disablenpc "Chicken#06_hw_p41"; |
---|
763 | initnpctimer; |
---|
764 | end; |
---|
765 | |
---|
766 | OnTimer3600000: |
---|
767 | enablenpc "Chicken#06_hw_p01"; |
---|
768 | enablenpc "Chicken#06_hw_p02"; |
---|
769 | enablenpc "Chicken#06_hw_p03"; |
---|
770 | enablenpc "Chicken#06_hw_p04"; |
---|
771 | enablenpc "Chicken#06_hw_p05"; |
---|
772 | enablenpc "Chicken#06_hw_p06"; |
---|
773 | enablenpc "Chicken#06_hw_p07"; |
---|
774 | enablenpc "Chicken#06_hw_p08"; |
---|
775 | enablenpc "Chicken#06_hw_p09"; |
---|
776 | enablenpc "Chicken#06_hw_p10"; |
---|
777 | enablenpc "Chicken#06_hw_p11"; |
---|
778 | enablenpc "Chicken#06_hw_p12"; |
---|
779 | enablenpc "Chicken#06_hw_p13"; |
---|
780 | enablenpc "Chicken#06_hw_p14"; |
---|
781 | enablenpc "Chicken#06_hw_p15"; |
---|
782 | enablenpc "Chicken#06_hw_p16"; |
---|
783 | enablenpc "Chicken#06_hw_p17"; |
---|
784 | enablenpc "Chicken#06_hw_p18"; |
---|
785 | enablenpc "Chicken#06_hw_p19"; |
---|
786 | enablenpc "Chicken#06_hw_p20"; |
---|
787 | enablenpc "Chicken#06_hw_p21"; |
---|
788 | enablenpc "Chicken#06_hw_p22"; |
---|
789 | enablenpc "Chicken#06_hw_p23"; |
---|
790 | enablenpc "Chicken#06_hw_p24"; |
---|
791 | enablenpc "Chicken#06_hw_p25"; |
---|
792 | enablenpc "Chicken#06_hw_p26"; |
---|
793 | enablenpc "Chicken#06_hw_p27"; |
---|
794 | enablenpc "Chicken#06_hw_p28"; |
---|
795 | enablenpc "Chicken#06_hw_p29"; |
---|
796 | enablenpc "Chicken#06_hw_p30"; |
---|
797 | enablenpc "Chicken#06_hw_p31"; |
---|
798 | enablenpc "Chicken#06_hw_p32"; |
---|
799 | enablenpc "Chicken#06_hw_p33"; |
---|
800 | enablenpc "Chicken#06_hw_p34"; |
---|
801 | enablenpc "Chicken#06_hw_p35"; |
---|
802 | enablenpc "Chicken#06_hw_p36"; |
---|
803 | enablenpc "Chicken#06_hw_p37"; |
---|
804 | enablenpc "Chicken#06_hw_p38"; |
---|
805 | enablenpc "Chicken#06_hw_p39"; |
---|
806 | enablenpc "Chicken#06_hw_p40"; |
---|
807 | enablenpc "Chicken#06_hw_p41"; |
---|
808 | end; |
---|
809 | |
---|
810 | OnTimer4200000: |
---|
811 | disablenpc "Chicken#06_hw_p01"; |
---|
812 | disablenpc "Chicken#06_hw_p02"; |
---|
813 | disablenpc "Chicken#06_hw_p03"; |
---|
814 | disablenpc "Chicken#06_hw_p04"; |
---|
815 | disablenpc "Chicken#06_hw_p05"; |
---|
816 | disablenpc "Chicken#06_hw_p06"; |
---|
817 | disablenpc "Chicken#06_hw_p07"; |
---|
818 | disablenpc "Chicken#06_hw_p08"; |
---|
819 | disablenpc "Chicken#06_hw_p09"; |
---|
820 | disablenpc "Chicken#06_hw_p10"; |
---|
821 | disablenpc "Chicken#06_hw_p11"; |
---|
822 | disablenpc "Chicken#06_hw_p12"; |
---|
823 | disablenpc "Chicken#06_hw_p13"; |
---|
824 | disablenpc "Chicken#06_hw_p14"; |
---|
825 | disablenpc "Chicken#06_hw_p15"; |
---|
826 | disablenpc "Chicken#06_hw_p16"; |
---|
827 | disablenpc "Chicken#06_hw_p17"; |
---|
828 | disablenpc "Chicken#06_hw_p18"; |
---|
829 | disablenpc "Chicken#06_hw_p19"; |
---|
830 | disablenpc "Chicken#06_hw_p20"; |
---|
831 | disablenpc "Chicken#06_hw_p21"; |
---|
832 | disablenpc "Chicken#06_hw_p22"; |
---|
833 | disablenpc "Chicken#06_hw_p23"; |
---|
834 | disablenpc "Chicken#06_hw_p24"; |
---|
835 | disablenpc "Chicken#06_hw_p25"; |
---|
836 | disablenpc "Chicken#06_hw_p26"; |
---|
837 | disablenpc "Chicken#06_hw_p27"; |
---|
838 | disablenpc "Chicken#06_hw_p28"; |
---|
839 | disablenpc "Chicken#06_hw_p29"; |
---|
840 | disablenpc "Chicken#06_hw_p30"; |
---|
841 | disablenpc "Chicken#06_hw_p31"; |
---|
842 | disablenpc "Chicken#06_hw_p32"; |
---|
843 | disablenpc "Chicken#06_hw_p33"; |
---|
844 | disablenpc "Chicken#06_hw_p34"; |
---|
845 | disablenpc "Chicken#06_hw_p35"; |
---|
846 | disablenpc "Chicken#06_hw_p36"; |
---|
847 | disablenpc "Chicken#06_hw_p37"; |
---|
848 | disablenpc "Chicken#06_hw_p38"; |
---|
849 | disablenpc "Chicken#06_hw_p39"; |
---|
850 | disablenpc "Chicken#06_hw_p40"; |
---|
851 | disablenpc "Chicken#06_hw_p41"; |
---|
852 | stopnpctimer; |
---|
853 | initnpctimer; |
---|
854 | end; |
---|
855 | } |
---|
856 | |
---|
857 | |
---|
858 | pay_dun03,151,138,3 duplicate(HwChicken3) Chicken#06_hw_p01 800 |
---|
859 | pay_dun03,151,138,3 duplicate(HwChicken2) Chicken#06_hw_p02 800 |
---|
860 | pay_dun03,152,138,3 duplicate(HwChicken2) Chicken#06_hw_p03 800 |
---|
861 | pay_dun03,154,138,3 duplicate(HwChicken2) Chicken#06_hw_p04 800 |
---|
862 | pay_dun03,155,138,3 duplicate(HwChicken2) Chicken#06_hw_p05 800 |
---|
863 | pay_dun03,157,138,3 duplicate(HwChicken2) Chicken#06_hw_p06 800 |
---|
864 | pay_dun03,158,138,3 duplicate(HwChicken3) Chicken#06_hw_p07 800 |
---|
865 | pay_dun03,150,137,3 duplicate(HwChicken2) Chicken#06_hw_p08 800 |
---|
866 | pay_dun03,153,137,3 duplicate(HwChicken2) Chicken#06_hw_p09 800 |
---|
867 | pay_dun03,156,137,3 duplicate(HwChicken3) Chicken#06_hw_p10 800 |
---|
868 | pay_dun03,159,137,3 duplicate(HwChicken2) Chicken#06_hw_p11 800 |
---|
869 | pay_dun03,149,136,3 duplicate(HwChicken2) Chicken#06_hw_p12 800 |
---|
870 | pay_dun03,152,136,3 duplicate(HwChicken3) Chicken#06_hw_p13 800 |
---|
871 | pay_dun03,157,136,3 duplicate(HwChicken2) Chicken#06_hw_p14 800 |
---|
872 | pay_dun03,160,136,3 duplicate(HwChicken2) Chicken#06_hw_p15 800 |
---|
873 | pay_dun03,149,135,3 duplicate(HwChicken3) Chicken#06_hw_p16 800 |
---|
874 | pay_dun03,151,135,3 duplicate(HwChicken2) Chicken#06_hw_p17 800 |
---|
875 | pay_dun03,152,135,3 duplicate(HwChicken2) Chicken#06_hw_p18 800 |
---|
876 | pay_dun03,153,135,3 duplicate(HwChicken3) Chicken#06_hw_p19 800 |
---|
877 | pay_dun03,156,135,3 duplicate(HwChicken2) Chicken#06_hw_p20 800 |
---|
878 | pay_dun03,157,135,3 duplicate(HwChicken2) Chicken#06_hw_p21 800 |
---|
879 | pay_dun03,158,135,3 duplicate(HwChicken3) Chicken#06_hw_p22 800 |
---|
880 | pay_dun03,160,135,3 duplicate(HwChicken2) Chicken#06_hw_p23 800 |
---|
881 | pay_dun03,149,134,3 duplicate(HwChicken2) Chicken#06_hw_p24 800 |
---|
882 | pay_dun03,152,134,3 duplicate(HwChicken3) Chicken#06_hw_p25 800 |
---|
883 | pay_dun03,157,134,3 duplicate(HwChicken2) Chicken#06_hw_p26 800 |
---|
884 | pay_dun03,160,134,3 duplicate(HwChicken2) Chicken#06_hw_p27 800 |
---|
885 | pay_dun03,149,133,3 duplicate(HwChicken3) Chicken#06_hw_p28 800 |
---|
886 | pay_dun03,160,133,3 duplicate(HwChicken2) Chicken#06_hw_p29 800 |
---|
887 | pay_dun03,150,132,3 duplicate(HwChicken2) Chicken#06_hw_p30 800 |
---|
888 | pay_dun03,153,132,3 duplicate(HwChicken3) Chicken#06_hw_p31 800 |
---|
889 | pay_dun03,156,132,3 duplicate(HwChicken2) Chicken#06_hw_p32 800 |
---|
890 | pay_dun03,159,132,3 duplicate(HwChicken2) Chicken#06_hw_p33 800 |
---|
891 | pay_dun03,151,131,3 duplicate(HwChicken2) Chicken#06_hw_p34 800 |
---|
892 | pay_dun03,152,131,3 duplicate(HwChicken2) Chicken#06_hw_p35 800 |
---|
893 | pay_dun03,153,131,3 duplicate(HwChicken3) Chicken#06_hw_p36 800 |
---|
894 | pay_dun03,154,131,3 duplicate(HwChicken2) Chicken#06_hw_p37 800 |
---|
895 | pay_dun03,155,131,3 duplicate(HwChicken2) Chicken#06_hw_p38 800 |
---|
896 | pay_dun03,156,131,3 duplicate(HwChicken3) Chicken#06_hw_p39 800 |
---|
897 | pay_dun03,157,131,3 duplicate(HwChicken2) Chicken#06_hw_p40 800 |
---|
898 | pay_dun03,158,131,3 duplicate(HwChicken3) Chicken#06_hw_p41 800 |
---|
899 | |
---|
900 | // Payon Field chickens |
---|
901 | pay_fild08,1,1,0 script #06_hw_timer02 -1,{ |
---|
902 | OnInit: |
---|
903 | disablenpc "Chicken#06_hw_pf01"; |
---|
904 | disablenpc "Chicken#06_hw_pf02"; |
---|
905 | disablenpc "Chicken#06_hw_pf03"; |
---|
906 | disablenpc "Chicken#06_hw_pf04"; |
---|
907 | disablenpc "Chicken#06_hw_pf05"; |
---|
908 | disablenpc "Chicken#06_hw_pf06"; |
---|
909 | disablenpc "Chicken#06_hw_pf07"; |
---|
910 | disablenpc "Chicken#06_hw_pf08"; |
---|
911 | disablenpc "Chicken#06_hw_pf09"; |
---|
912 | disablenpc "Chicken#06_hw_pf10"; |
---|
913 | disablenpc "Chicken#06_hw_pf11"; |
---|
914 | disablenpc "Chicken#06_hw_pf12"; |
---|
915 | disablenpc "Chicken#06_hw_pf13"; |
---|
916 | disablenpc "Chicken#06_hw_pf14"; |
---|
917 | disablenpc "Chicken#06_hw_pf15"; |
---|
918 | disablenpc "Chicken#06_hw_pf16"; |
---|
919 | disablenpc "Chicken#06_hw_pf17"; |
---|
920 | disablenpc "Chicken#06_hw_pf18"; |
---|
921 | disablenpc "Chicken#06_hw_pf19"; |
---|
922 | disablenpc "Chicken#06_hw_pf20"; |
---|
923 | disablenpc "Chicken#06_hw_pf21"; |
---|
924 | disablenpc "Chicken#06_hw_pf22"; |
---|
925 | disablenpc "Chicken#06_hw_pf23"; |
---|
926 | disablenpc "Chicken#06_hw_pf24"; |
---|
927 | disablenpc "Chicken#06_hw_pf25"; |
---|
928 | disablenpc "Chicken#06_hw_pf26"; |
---|
929 | disablenpc "Chicken#06_hw_pf27"; |
---|
930 | initnpctimer; |
---|
931 | end; |
---|
932 | |
---|
933 | OnTimer5400000: |
---|
934 | enablenpc "Chicken#06_hw_pf01"; |
---|
935 | enablenpc "Chicken#06_hw_pf02"; |
---|
936 | enablenpc "Chicken#06_hw_pf03"; |
---|
937 | enablenpc "Chicken#06_hw_pf04"; |
---|
938 | enablenpc "Chicken#06_hw_pf05"; |
---|
939 | enablenpc "Chicken#06_hw_pf06"; |
---|
940 | enablenpc "Chicken#06_hw_pf07"; |
---|
941 | enablenpc "Chicken#06_hw_pf08"; |
---|
942 | enablenpc "Chicken#06_hw_pf09"; |
---|
943 | enablenpc "Chicken#06_hw_pf10"; |
---|
944 | enablenpc "Chicken#06_hw_pf11"; |
---|
945 | enablenpc "Chicken#06_hw_pf12"; |
---|
946 | enablenpc "Chicken#06_hw_pf13"; |
---|
947 | enablenpc "Chicken#06_hw_pf14"; |
---|
948 | enablenpc "Chicken#06_hw_pf15"; |
---|
949 | enablenpc "Chicken#06_hw_pf16"; |
---|
950 | enablenpc "Chicken#06_hw_pf17"; |
---|
951 | enablenpc "Chicken#06_hw_pf18"; |
---|
952 | enablenpc "Chicken#06_hw_pf19"; |
---|
953 | enablenpc "Chicken#06_hw_pf20"; |
---|
954 | enablenpc "Chicken#06_hw_pf21"; |
---|
955 | enablenpc "Chicken#06_hw_pf22"; |
---|
956 | enablenpc "Chicken#06_hw_pf23"; |
---|
957 | enablenpc "Chicken#06_hw_pf24"; |
---|
958 | enablenpc "Chicken#06_hw_pf25"; |
---|
959 | enablenpc "Chicken#06_hw_pf26"; |
---|
960 | enablenpc "Chicken#06_hw_pf27"; |
---|
961 | end; |
---|
962 | |
---|
963 | OnTimer6000000: |
---|
964 | disablenpc "Chicken#06_hw_pf01"; |
---|
965 | disablenpc "Chicken#06_hw_pf02"; |
---|
966 | disablenpc "Chicken#06_hw_pf03"; |
---|
967 | disablenpc "Chicken#06_hw_pf04"; |
---|
968 | disablenpc "Chicken#06_hw_pf05"; |
---|
969 | disablenpc "Chicken#06_hw_pf06"; |
---|
970 | disablenpc "Chicken#06_hw_pf07"; |
---|
971 | disablenpc "Chicken#06_hw_pf08"; |
---|
972 | disablenpc "Chicken#06_hw_pf09"; |
---|
973 | disablenpc "Chicken#06_hw_pf10"; |
---|
974 | disablenpc "Chicken#06_hw_pf11"; |
---|
975 | disablenpc "Chicken#06_hw_pf12"; |
---|
976 | disablenpc "Chicken#06_hw_pf13"; |
---|
977 | disablenpc "Chicken#06_hw_pf14"; |
---|
978 | disablenpc "Chicken#06_hw_pf15"; |
---|
979 | disablenpc "Chicken#06_hw_pf16"; |
---|
980 | disablenpc "Chicken#06_hw_pf17"; |
---|
981 | disablenpc "Chicken#06_hw_pf18"; |
---|
982 | disablenpc "Chicken#06_hw_pf19"; |
---|
983 | disablenpc "Chicken#06_hw_pf20"; |
---|
984 | disablenpc "Chicken#06_hw_pf21"; |
---|
985 | disablenpc "Chicken#06_hw_pf22"; |
---|
986 | disablenpc "Chicken#06_hw_pf23"; |
---|
987 | disablenpc "Chicken#06_hw_pf24"; |
---|
988 | disablenpc "Chicken#06_hw_pf25"; |
---|
989 | disablenpc "Chicken#06_hw_pf26"; |
---|
990 | disablenpc "Chicken#06_hw_pf27"; |
---|
991 | stopnpctimer; |
---|
992 | initnpctimer; |
---|
993 | end; |
---|
994 | } |
---|
995 | |
---|
996 | pay_fild08,147,353,3 duplicate(HwChicken3) Chicken#06_hw_pf01 800 |
---|
997 | pay_fild08,147,354,3 duplicate(HwChicken2) Chicken#06_hw_pf02 800 |
---|
998 | pay_fild08,147,355,3 duplicate(HwChicken2) Chicken#06_hw_pf03 800 |
---|
999 | pay_fild08,148,352,3 duplicate(HwChicken3) Chicken#06_hw_pf04 800 |
---|
1000 | pay_fild08,148,356,3 duplicate(HwChicken2) Chicken#06_hw_pf05 800 |
---|
1001 | pay_fild08,149,351,3 duplicate(HwChicken2) Chicken#06_hw_pf06 800 |
---|
1002 | pay_fild08,149,354,3 duplicate(HwChicken3) Chicken#06_hw_pf07 800 |
---|
1003 | pay_fild08,149,357,3 duplicate(HwChicken2) Chicken#06_hw_pf08 800 |
---|
1004 | pay_fild08,150,351,3 duplicate(HwChicken2) Chicken#06_hw_pf09 800 |
---|
1005 | pay_fild08,150,357,3 duplicate(HwChicken3) Chicken#06_hw_pf10 800 |
---|
1006 | pay_fild08,151,351,3 duplicate(HwChicken2) Chicken#06_hw_pf11 800 |
---|
1007 | pay_fild08,151,353,3 duplicate(HwChicken2) Chicken#06_hw_pf12 800 |
---|
1008 | pay_fild08,151,355,3 duplicate(HwChicken3) Chicken#06_hw_pf13 800 |
---|
1009 | pay_fild08,151,357,3 duplicate(HwChicken2) Chicken#06_hw_pf14 800 |
---|
1010 | pay_fild08,152,351,3 duplicate(HwChicken2) Chicken#06_hw_pf15 800 |
---|
1011 | pay_fild08,152,357,3 duplicate(HwChicken3) Chicken#06_hw_pf16 800 |
---|
1012 | pay_fild08,153,351,3 duplicate(HwChicken2) Chicken#06_hw_pf17 800 |
---|
1013 | pay_fild08,153,357,3 duplicate(HwChicken2) Chicken#06_hw_pf18 800 |
---|
1014 | pay_fild08,154,351,3 duplicate(HwChicken3) Chicken#06_hw_pf19 800 |
---|
1015 | pay_fild08,154,353,3 duplicate(HwChicken2) Chicken#06_hw_pf20 800 |
---|
1016 | pay_fild08,154,355,3 duplicate(HwChicken2) Chicken#06_hw_pf21 800 |
---|
1017 | pay_fild08,154,357,3 duplicate(HwChicken3) Chicken#06_hw_pf22 800 |
---|
1018 | pay_fild08,155,350,3 duplicate(HwChicken2) Chicken#06_hw_pf23 800 |
---|
1019 | pay_fild08,155,352,3 duplicate(HwChicken2) Chicken#06_hw_pf24 800 |
---|
1020 | pay_fild08,155,354,3 duplicate(HwChicken3) Chicken#06_hw_pf25 800 |
---|
1021 | pay_fild08,155,356,3 duplicate(HwChicken2) Chicken#06_hw_pf26 800 |
---|
1022 | pay_fild08,155,358,3 duplicate(HwChicken3) Chicken#06_hw_pf27 800 |
---|
1023 | |
---|
1024 | prontera,155,285,3 script Familiar#06_hw01::HWFamiDup 799,{ |
---|
1025 | mes "[Familiar]"; |
---|
1026 | mes "Hello."; |
---|
1027 | mes "I'm Loli Ruri's faithful and cute Familiar."; |
---|
1028 | mes "Do you have an invitation from Loli Ruri?"; |
---|
1029 | mes "That's a kind of^4d4dffa special ticket to Nifflheim^000000.."; |
---|
1030 | next; |
---|
1031 | if (select( "Yes, I do.:No, I don't.") == 1) { |
---|
1032 | mes "[Familiar]"; |
---|
1033 | mes "Do you want to go to Nifflheim?"; |
---|
1034 | mes "It's available during Halloween."; |
---|
1035 | next; |
---|
1036 | if (select( "Yes, I do:No, I don't.") == 1) { |
---|
1037 | if (countitem(7460) > 0) { |
---|
1038 | mes "[Familiar]"; |
---|
1039 | mes "I checked your ticket."; |
---|
1040 | mes "You can go there now"; |
---|
1041 | delitem 7460,1; //Nifl_Express_Ticket |
---|
1042 | close2; |
---|
1043 | warp "nif_in", 18, 20; |
---|
1044 | end; |
---|
1045 | } |
---|
1046 | else { |
---|
1047 | mes "[Familiar]"; |
---|
1048 | mes "You're a liar."; |
---|
1049 | mes "You don't have the ticket!"; |
---|
1050 | mes "I'll suck up all your blood, you liar!"; |
---|
1051 | percentheal -20,0; |
---|
1052 | emotion e_omg,1; |
---|
1053 | close; |
---|
1054 | } |
---|
1055 | } |
---|
1056 | mes "[Familiar]"; |
---|
1057 | mes "Ok."; |
---|
1058 | mes "Actually, it's useless to have a special ticket to Nifflheim."; |
---|
1059 | close; |
---|
1060 | } |
---|
1061 | mes "[Familiar]"; |
---|
1062 | mes "Ok."; |
---|
1063 | mes "If you want to ask something, give a piece of pumpkin pie to Loli Ruri."; |
---|
1064 | mes "He likes it."; |
---|
1065 | close; |
---|
1066 | } |
---|
1067 | payon,156,231,3 duplicate(HWFamiDup) Familiar#06_hw02 799 |
---|
1068 | morocc,159,143,3 duplicate(HWFamiDup) Familiar#06_hw03 799 |
---|
1069 | geffen,120,188,3 duplicate(HWFamiDup) Familiar#06_hw04 799 |
---|
1070 | alberta,80,171,3 duplicate(HWFamiDup) Familiar#06_hw05 799 |
---|
1071 | |
---|
1072 | //Event Lude Monster Spawns |
---|
1073 | ra_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1074 | ra_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1075 | ra_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1076 | ra_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1077 | ra_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1078 | ra_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1079 | ra_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1080 | ra_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1081 | ra_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1082 | ra_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1083 | ra_fild11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1084 | ra_fild12,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1085 | ra_fild13,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1086 | |
---|
1087 | ra_san01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1088 | ra_san02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1089 | ra_san03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1090 | ra_san04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1091 | ra_san05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1092 | |
---|
1093 | ice_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1094 | ice_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1095 | ice_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1096 | |
---|
1097 | odin_tem01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1098 | odin_tem02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1099 | odin_tem03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1100 | |
---|
1101 | kh_kiehl01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1102 | |
---|
1103 | kh_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1104 | kh_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1105 | |
---|
1106 | yuno_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1107 | yuno_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1108 | |
---|
1109 | ein_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1110 | ein_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1111 | ein_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1112 | |
---|
1113 | hu_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1114 | hu_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1115 | hu_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1116 | hu_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1117 | hu_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1118 | hu_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1119 | hu_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1120 | |
---|
1121 | tha_t01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1122 | tha_t02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1123 | tha_t03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1124 | tha_t04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1125 | tha_t05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1126 | tha_t06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1127 | tha_t07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1128 | tha_t08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1129 | tha_t09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1130 | tha_t10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1131 | tha_t11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1132 | tha_t12,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1133 | |
---|
1134 | abyss_01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1135 | abyss_02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1136 | abyss_03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1137 | |
---|
1138 | juperos_01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1139 | juperos_02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1140 | jupe_core,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1141 | |
---|
1142 | lhz_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1143 | lhz_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1144 | lhz_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1145 | lhz_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1146 | |
---|
1147 | lhz_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1148 | lhz_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1149 | ein_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1150 | ein_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1151 | |
---|
1152 | ein_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1153 | ein_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1154 | ein_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1155 | ein_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1156 | ein_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1157 | ein_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1158 | ein_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1159 | |
---|
1160 | gefenia01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1161 | gefenia02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1162 | gefenia03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1163 | gefenia04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1164 | |
---|
1165 | yuno_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1166 | yuno_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1167 | yuno_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1168 | yuno_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1169 | yuno_fild11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1170 | yuno_fild12,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1171 | |
---|
1172 | ayo_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1173 | ayo_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1174 | ayo_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1175 | ayo_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1176 | |
---|
1177 | gon_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1178 | gon_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1179 | gon_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1180 | |
---|
1181 | ama_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1182 | ama_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1183 | ama_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1184 | |
---|
1185 | lou_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1186 | lou_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1187 | lou_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1188 | lou_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1189 | |
---|
1190 | um_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1191 | um_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1192 | um_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1193 | um_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1194 | um_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1195 | um_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1196 | yggdrasil01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1197 | |
---|
1198 | mag_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1199 | mag_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1200 | |
---|
1201 | beach_dun,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1202 | beach_dun2,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1203 | beach_dun3,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1204 | |
---|
1205 | gon_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1206 | ama_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1207 | yuno_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1208 | yuno_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1209 | yuno_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1210 | yuno_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1211 | |
---|
1212 | prt_fild00,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1213 | prt_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1214 | prt_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1215 | prt_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1216 | prt_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1217 | prt_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1218 | prt_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1219 | prt_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1220 | prt_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1221 | prt_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1222 | prt_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1223 | prt_fild11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1224 | |
---|
1225 | moc_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1226 | moc_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1227 | moc_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1228 | moc_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1229 | moc_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1230 | moc_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1231 | moc_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1232 | moc_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1233 | moc_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1234 | moc_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1235 | moc_fild11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1236 | moc_fild12,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1237 | moc_fild13,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1238 | moc_fild14,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1239 | moc_fild15,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1240 | moc_fild16,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1241 | moc_fild17,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1242 | moc_fild18,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1243 | |
---|
1244 | pay_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1245 | pay_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1246 | pay_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1247 | pay_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1248 | pay_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1249 | pay_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1250 | pay_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1251 | pay_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1252 | pay_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1253 | pay_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1254 | pay_fild11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1255 | |
---|
1256 | gef_fild00,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1257 | gef_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1258 | gef_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1259 | gef_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1260 | gef_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1261 | gef_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1262 | gef_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1263 | gef_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1264 | gef_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1265 | gef_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1266 | gef_fild10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1267 | gef_fild11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1268 | gef_fild12,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1269 | gef_fild13,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1270 | gef_fild14,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1271 | |
---|
1272 | cmd_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1273 | cmd_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1274 | cmd_fild03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1275 | cmd_fild04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1276 | cmd_fild05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1277 | cmd_fild06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1278 | cmd_fild07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1279 | cmd_fild08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1280 | cmd_fild09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1281 | |
---|
1282 | mjolnir_01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1283 | mjolnir_02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1284 | mjolnir_03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1285 | mjolnir_04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1286 | mjolnir_05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1287 | mjolnir_06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1288 | mjolnir_07,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1289 | mjolnir_08,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1290 | mjolnir_09,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1291 | mjolnir_10,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1292 | mjolnir_11,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1293 | mjolnir_12,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1294 | |
---|
1295 | xmas_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1296 | |
---|
1297 | sec_in02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1298 | |
---|
1299 | gl_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1300 | gl_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1301 | |
---|
1302 | gl_knt02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1303 | gl_knt01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1304 | |
---|
1305 | gl_step,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1306 | |
---|
1307 | gl_sew04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1308 | gl_sew03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1309 | gl_sew02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1310 | gl_sew01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1311 | |
---|
1312 | gl_chyard,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1313 | gl_church,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1314 | |
---|
1315 | glast_01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1316 | |
---|
1317 | gl_prison1,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1318 | gl_prison,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1319 | |
---|
1320 | gl_in01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1321 | |
---|
1322 | gl_cas02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1323 | gl_cas01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1324 | |
---|
1325 | tur_dun04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1326 | tur_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1327 | tur_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1328 | tur_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1329 | |
---|
1330 | alde_dun04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1331 | alde_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1332 | alde_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1333 | alde_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1334 | |
---|
1335 | c_tower1,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1336 | c_tower2,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1337 | c_tower3,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1338 | c_tower4,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1339 | |
---|
1340 | in_sphinx5,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1341 | in_sphinx4,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1342 | in_sphinx3,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1343 | in_sphinx2,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1344 | in_sphinx1,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1345 | |
---|
1346 | prt_maze03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1347 | prt_maze02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1348 | prt_maze01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1349 | |
---|
1350 | treasure02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1351 | treasure01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1352 | |
---|
1353 | moc_pryd06,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1354 | moc_pryd05,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1355 | moc_pryd04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1356 | moc_pryd03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1357 | moc_pryd02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1358 | moc_pryd01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1359 | |
---|
1360 | gef_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1361 | gef_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1362 | gef_dun00,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1363 | |
---|
1364 | iz_dun00,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1365 | iz_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1366 | iz_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1367 | iz_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1368 | iz_dun04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1369 | |
---|
1370 | pay_dun00,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1371 | pay_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1372 | pay_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1373 | pay_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1374 | pay_dun04,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1375 | |
---|
1376 | xmas_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1377 | xmas_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1378 | |
---|
1379 | anthell02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1380 | anthell01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1381 | |
---|
1382 | orcsdun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1383 | orcsdun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1384 | |
---|
1385 | mjo_dun03,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1386 | mjo_dun02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1387 | mjo_dun01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1388 | |
---|
1389 | prt_sewb4,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1390 | prt_sewb3,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1391 | prt_sewb2,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1392 | prt_sewb1,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1393 | |
---|
1394 | nif_fild01,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|
1395 | |
---|
1396 | nif_fild02,0,0,0,0 monster Lude 1812,3,0,0,0 |
---|