1 | //===== eAthena Script ======================================= |
---|
2 | //= X-mas Event |
---|
3 | //===== By: ================================================== |
---|
4 | //= eAthena Dev Team |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.4 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= Any version of eAthena |
---|
9 | //===== Description: ========================================= |
---|
10 | //= Beat up Antonios and grab his socks. Get at least 3 and |
---|
11 | //= give them to Santa Claus Claus in exchange for a present. |
---|
12 | //= Includes X-mas mobs. |
---|
13 | //= This npc will disable, the current Santa Claus npc. |
---|
14 | //===== Additional Comments: ================================= |
---|
15 | //= Fixed the spawns [shadowlady] |
---|
16 | //= 1.1 Added Xmas Jakk, fixed 2 exploits, fixed reward Box ID [Lupus] |
---|
17 | //= 1.2 Added monsters to the newer fields, thanks to Muad_Dib [MasterOfMuppets] |
---|
18 | //= 1.2a Fixed a major problem with the monster spawns, thanks to Playtester [MasterOfMuppets] |
---|
19 | //= 1.2b Fixed a minor problem with the mosnter spawns, thanks to Playtester [Kayla] |
---|
20 | //= 1.3 Added Christmas Orc to the places where other orcs spawn [MasterOfMuppets] |
---|
21 | //= Added Christmas goblins to yuno_fild09, thanks to Playtester for pointing it out |
---|
22 | //= 1.4 Added a fix to make Lutie & Bard quests passable during this event [Lupus] |
---|
23 | //============================================================ |
---|
24 | |
---|
25 | |
---|
26 | xmas_in,100,96,4 script Father Christmas::Santa2 718,{ |
---|
27 | mes "[Santa Claus]"; |
---|
28 | //For Lutie & Bard quest |
---|
29 | if(xmas_npc==0) set xmas_npc, 1; |
---|
30 | // |
---|
31 | if(#event_xmas > 0 && #event_xmas < 30 ) goto L_Start; |
---|
32 | mes "Merry Christmas!"; |
---|
33 | if(Class==0 || #event_xmas>=30 ) close; //anti exploit protection |
---|
34 | mes "I have a gift for you! Ho Ho Ho!"; |
---|
35 | getitem rand(664,667),1; //gives one of 4 gift boxes |
---|
36 | set #event_xmas,#event_xmas+1; |
---|
37 | close; |
---|
38 | |
---|
39 | L_Start: |
---|
40 | mes "I'm having a bit of a problem..."; |
---|
41 | mes "Do you care to listen?"; |
---|
42 | next; |
---|
43 | menu "Listen to Santa Claus.",M_0, "Give Santa Claus proof.",M_1, "Cancel.",M_End; |
---|
44 | |
---|
45 | M_0: |
---|
46 | mes "[Santa Claus]"; |
---|
47 | mes "My problem is this."; |
---|
48 | mes "There seems to be a man out there"; |
---|
49 | mes "that is impersonating me and spreading"; |
---|
50 | mes "terror throughout the land."; |
---|
51 | next; |
---|
52 | mes "[Santa Claus]"; |
---|
53 | mes "Like the Grinch of legend, he's taking"; |
---|
54 | mes "all the childrens' toys and keeping them"; |
---|
55 | mes "for himself."; |
---|
56 | next; |
---|
57 | mes "[Santa Claus]"; |
---|
58 | mes "I'm too busy here creating my batch of "; |
---|
59 | mes "toys for next year, so I can't go"; |
---|
60 | mes "out and find him myself."; |
---|
61 | mes "So I would like you to go out and"; |
---|
62 | mes "Destroy this man for me."; |
---|
63 | next; |
---|
64 | mes "[Santa Claus]"; |
---|
65 | mes "He has in his posession one of my"; |
---|
66 | mes "magic sacks, however, so he will"; |
---|
67 | mes "escape into it to another place each"; |
---|
68 | mes "time you attack him."; |
---|
69 | next; |
---|
70 | mes "[Santa Claus]"; |
---|
71 | mes "However,"; |
---|
72 | mes "In his haste, he tends to drop things."; |
---|
73 | mes "If by chance he drops one of his Stockings"; |
---|
74 | mes "With Holes that he uses to steal the"; |
---|
75 | mes "poor childrens' toys, pick it up."; |
---|
76 | next; |
---|
77 | mes "[Santa Claus]"; |
---|
78 | mes "If you collect 3 of these, I will give"; |
---|
79 | mes "you a prototype mystery box that"; |
---|
80 | mes "I've been keeping around the"; |
---|
81 | mes "lab. It spits out random presents"; |
---|
82 | mes "and saves me a ton of work."; |
---|
83 | close; |
---|
84 | M_1: |
---|
85 | mes "[Santa Claus]"; |
---|
86 | if(countitem(7034) < 3) goto L_NotEnuf; |
---|
87 | delitem 7034,3; |
---|
88 | mes "Seems you've been doing a"; |
---|
89 | mes "good job of taking down those"; |
---|
90 | mes "fake Santas. Keep it up!"; |
---|
91 | next; |
---|
92 | getitem 644,1; //Gift Box Prototype |
---|
93 | set #event_xmas,#event_xmas+1; |
---|
94 | mes "[Santa Claus]"; |
---|
95 | mes "There's your reward."; |
---|
96 | mes "If you get 3 more, I'll give you another."; |
---|
97 | mes "Hope you get a good item."; |
---|
98 | close; |
---|
99 | |
---|
100 | L_NotEnuf: |
---|
101 | mes "You don't have enough socks as proof."; |
---|
102 | mes "Go take down those evil Santas"; |
---|
103 | mes "and get more for me and I'll reward you."; |
---|
104 | close; |
---|
105 | M_End: |
---|
106 | mes "[Santa Claus]"; |
---|
107 | mes "I see. Well, at the very least"; |
---|
108 | mes "we shall meet again on Christmas morning."; |
---|
109 | close; |
---|
110 | |
---|
111 | OnInit: |
---|
112 | disablenpc "Santa1"; |
---|
113 | end; |
---|
114 | } |
---|
115 | |
---|
116 | |
---|
117 | //======================================================================================== |
---|
118 | // - Xmas Goblin Spawns |
---|
119 | //======================================================================================== |
---|
120 | |
---|
121 | prt_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0 |
---|
122 | gef_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0 |
---|
123 | yuno_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0 |
---|
124 | |
---|
125 | //======================================================================================== |
---|
126 | // - Santa Poring Spawns |
---|
127 | //======================================================================================== |
---|
128 | |
---|
129 | ein_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
130 | ein_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
131 | ein_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
132 | ein_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
133 | ein_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
134 | ein_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
135 | ein_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
136 | gef_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
137 | gef_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
138 | gef_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
139 | gef_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
140 | gef_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
141 | gef_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
142 | gef_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
143 | gef_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
144 | gef_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
145 | gef_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
146 | gef_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
147 | gef_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
148 | gef_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
149 | gef_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
150 | glast_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
151 | lhz_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
152 | lhz_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
153 | lhz_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
154 | mjolnir_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
155 | mjolnir_02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
156 | mjolnir_03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
157 | mjolnir_04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
158 | mjolnir_05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
159 | mjolnir_06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
160 | mjolnir_07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
161 | mjolnir_08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
162 | mjolnir_09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
163 | mjolnir_10,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
164 | mjolnir_11,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
165 | mjolnir_12,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
166 | moc_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
167 | moc_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
168 | moc_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
169 | moc_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
170 | moc_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
171 | moc_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
172 | moc_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
173 | moc_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
174 | moc_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
175 | moc_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
176 | moc_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
177 | moc_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
178 | moc_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
179 | moc_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
180 | moc_fild15,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
181 | moc_fild16,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
182 | moc_fild17,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
183 | moc_fild18,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
184 | pay_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
185 | pay_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
186 | pay_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
187 | pay_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
188 | pay_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
189 | pay_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
190 | pay_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
191 | pay_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
192 | pay_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
193 | pay_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
194 | pay_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
195 | prt_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
196 | prt_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
197 | prt_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
198 | prt_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
199 | prt_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
200 | prt_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
201 | prt_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
202 | prt_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
203 | prt_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
204 | prt_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
205 | prt_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
206 | prt_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
207 | xmas_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
208 | cmd_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
209 | cmd_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
210 | cmd_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
211 | cmd_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
212 | cmd_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
213 | cmd_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
214 | cmd_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
215 | cmd_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
216 | cmd_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
217 | yuno_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
218 | yuno_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
219 | yuno_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
220 | yuno_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
221 | yuno_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
222 | yuno_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
223 | yuno_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
224 | yuno_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
225 | yuno_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
226 | yuno_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
227 | yuno_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
228 | ama_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
229 | gon_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
230 | um_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
231 | um_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
232 | um_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
233 | um_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
234 | nif_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
235 | nif_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
236 | lou_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
237 | hu_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
238 | hu_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
239 | hu_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
240 | hu_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0 |
---|
241 | |
---|
242 | //======================================================================================== |
---|
243 | // - Antonio Spawns |
---|
244 | //======================================================================================== |
---|
245 | |
---|
246 | ein_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
247 | ein_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
248 | ein_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
249 | ein_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
250 | ein_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
251 | ein_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
252 | ein_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
253 | gef_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
254 | gef_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
255 | gef_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
256 | gef_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
257 | gef_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
258 | gef_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
259 | gef_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
260 | gef_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
261 | gef_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
262 | gef_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
263 | gef_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
264 | gef_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
265 | gef_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
266 | gef_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
267 | glast_01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
268 | lhz_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
269 | lhz_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
270 | lhz_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
271 | mjolnir_01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
272 | mjolnir_02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
273 | mjolnir_03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
274 | mjolnir_04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
275 | mjolnir_05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
276 | mjolnir_06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
277 | mjolnir_07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
278 | mjolnir_08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
279 | mjolnir_09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
280 | mjolnir_10,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
281 | mjolnir_11,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
282 | mjolnir_12,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
283 | moc_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
284 | moc_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
285 | moc_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
286 | moc_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
287 | moc_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
288 | moc_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
289 | moc_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
290 | moc_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
291 | moc_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
292 | moc_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
293 | moc_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
294 | moc_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
295 | moc_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
296 | moc_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
297 | moc_fild15,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
298 | moc_fild16,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
299 | moc_fild17,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
300 | moc_fild18,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
301 | pay_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
302 | pay_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
303 | pay_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
304 | pay_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
305 | pay_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
306 | pay_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
307 | pay_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
308 | pay_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
309 | pay_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
310 | pay_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
311 | pay_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
312 | prt_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
313 | prt_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
314 | prt_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
315 | prt_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
316 | prt_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
317 | prt_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
318 | prt_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
319 | prt_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
320 | prt_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
321 | prt_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
322 | prt_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
323 | prt_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
324 | xmas_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
325 | cmd_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
326 | cmd_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
327 | cmd_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
328 | cmd_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
329 | cmd_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
330 | cmd_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
331 | cmd_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
332 | cmd_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
333 | cmd_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
334 | yuno_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
335 | yuno_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
336 | yuno_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
337 | yuno_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
338 | yuno_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
339 | yuno_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
340 | yuno_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
341 | yuno_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
342 | yuno_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
343 | yuno_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
344 | yuno_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
345 | ama_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
346 | gon_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
347 | um_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
348 | um_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
349 | um_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
350 | um_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
351 | nif_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
352 | nif_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
353 | lou_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
354 | hu_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
355 | hu_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
356 | hu_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
357 | hu_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0 |
---|
358 | |
---|
359 | //======================================================================================== |
---|
360 | // - Xmas Jakk |
---|
361 | //======================================================================================== |
---|
362 | |
---|
363 | gef_dun01,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0 |
---|
364 | //gefenia02,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0 |
---|
365 | |
---|
366 | //======================================================================================== |
---|
367 | // - Xmas Orc |
---|
368 | //======================================================================================== |
---|
369 | |
---|
370 | gef_fild02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0 |
---|
371 | gef_fild03,0,0,0,0 monster Christmas Orc 1588,5,0,0,0 |
---|
372 | gef_fild10,0,0,0,0 monster Christmas Orc 1588,5,0,0,0 |
---|
373 | gef_fild14,0,0,0,0 monster Christmas Orc 1588,5,0,0,0 |
---|
374 | alde_dun02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0 |
---|