1 | //===== eAthena Script ======================================= |
---|
2 | //= Quiz (Revolution) Part 1 |
---|
3 | //===== By: ================================================== |
---|
4 | //= CAHTXHuK |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.0 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena 1.0 |
---|
9 | //===== Description: ========================================= |
---|
10 | //= |
---|
11 | //===== Additional Comments: ================================= |
---|
12 | //= |
---|
13 | //============================================================ |
---|
14 | |
---|
15 | //========================================================================================================================================= |
---|
16 | prontera,152,286,4 script Receptionist::RecepQuiz 755,{ |
---|
17 | |
---|
18 | if (countitem(1201) > 3) goto M_MaxItem; |
---|
19 | if (checkweight(1201,3) == 0 ) goto L_OverWeight; |
---|
20 | |
---|
21 | |
---|
22 | if(BaseLevel < 20){ |
---|
23 | mes "^2f4f4f[Tsuji]^000000"; |
---|
24 | mes "Hello"; |
---|
25 | mes "This is Tsuji who is in charge of"; |
---|
26 | mes "receiving application forms for"; |
---|
27 | mes "Quiz Revolution event."; |
---|
28 | next; |
---|
29 | mes "^2f4f4f[Tsuji]^000000"; |
---|
30 | mes "Zonda corporation has prepared"; |
---|
31 | mes "^0000ffQuiz Revolution^000000 event to"; |
---|
32 | mes "provide fun and excitement"; |
---|
33 | mes "to all of you."; |
---|
34 | mes "Please read the following explanation and"; |
---|
35 | mes "participate in this event."; |
---|
36 | next; |
---|
37 | mes "^2f4f4f[Tsuji]^000000"; |
---|
38 | mes "This Quiz Revolution event is.."; |
---|
39 | mes "operated in a different way compared to the previous one."; |
---|
40 | mes "The event will only be open for those who wish to participate in the game."; |
---|
41 | mes "Also, the ^006400Quiz Tickets^000000 will be given to those who"; |
---|
42 | mes "pass simple tests to check if the player is worthy of"; |
---|
43 | mes "playing the game."; |
---|
44 | next; |
---|
45 | mes "^2f4f4f[Tsuji]^000000"; |
---|
46 | mes "The assessment will be made through"; |
---|
47 | mes "^006400four simple tests^000000"; |
---|
48 | mes "For the ones who pass all four tests"; |
---|
49 | mes "will receive the quiz ticket of the"; |
---|
50 | mes "Quiz Revolution event."; |
---|
51 | next; |
---|
52 | mes "^2f4f4f[Tsuji]^000000"; |
---|
53 | mes "Hmm?! Wait a sec."; |
---|
54 | mes "If you wish to join Quiz Revolution event"; |
---|
55 | mes "you should have base level"; |
---|
56 | mes "20 or above."; |
---|
57 | mes "Please go and return after raising the"; |
---|
58 | mes "level to the expected point."; |
---|
59 | close; |
---|
60 | |
---|
61 | } else if (quiz_rvl > 2) { |
---|
62 | |
---|
63 | mes "^2f4f4f[Tsuji]^000000"; |
---|
64 | mes "The event for all of you!"; |
---|
65 | mes "Quiz Revolution is about to start."; |
---|
66 | mes "Please show us a lot of"; |
---|
67 | mes "participation."; |
---|
68 | mes "And don't forget to bring the admission ticket~~"; |
---|
69 | close; |
---|
70 | |
---|
71 | } else if (quiz_rvl == 2) { |
---|
72 | |
---|
73 | mes "^2f4f4f[Tsuji]^000000"; |
---|
74 | mes "You have already passed the first test."; |
---|
75 | mes "Please visit 'Payon' and find"; |
---|
76 | mes "'Seeil'."; |
---|
77 | mes "Seeil will give the second test."; |
---|
78 | close; |
---|
79 | |
---|
80 | } else if (quiz_rvl == 1) { |
---|
81 | |
---|
82 | mes "^2f4f4f[Tsuji]^000000"; |
---|
83 | mes "^0000ff" +strcharinfo(0)+ "^000000."; |
---|
84 | mes "You have to take the retest"; |
---|
85 | mes "to pass the test."; |
---|
86 | mes "Will you accept it?"; |
---|
87 | next; |
---|
88 | menu "Yes",-,"No",sM1_No; |
---|
89 | |
---|
90 | |
---|
91 | mes "^2f4f4f[Tsuji]^000000"; |
---|
92 | mes "Very well."; |
---|
93 | mes "I hope you pass the test this time.."; |
---|
94 | mes "Here are the questions."; |
---|
95 | set @test_soonsu, rand(2); |
---|
96 | set @score_test, 0; |
---|
97 | next; |
---|
98 | |
---|
99 | if (@test_soonsu == 0){ |
---|
100 | mes "^2f4f4f[Tsuji]^000000"; |
---|
101 | mes "1st question."; |
---|
102 | mes "Ragnarok is a MMORPG game."; |
---|
103 | mes "Please choose O and X."; |
---|
104 | |
---|
105 | next; |
---|
106 | menu "O",-,"X",X1; |
---|
107 | |
---|
108 | set @score_test, @score_test + 10; |
---|
109 | |
---|
110 | X1: |
---|
111 | mes "^2f4f4f[Tsuji]^000000"; |
---|
112 | mes "2nd question."; |
---|
113 | mes "Ragnarok's monetary unit is 'Zeny'."; |
---|
114 | next; |
---|
115 | menu "O",-,"X",X2; |
---|
116 | |
---|
117 | set @score_test, @score_test + 10; |
---|
118 | |
---|
119 | X2: |
---|
120 | mes "^2f4f4f[Tsuji]^000000"; |
---|
121 | mes "3rd question."; |
---|
122 | mes "If an unknown person is attacking a monster"; |
---|
123 | mes "you have to attack the same monster together."; |
---|
124 | next; |
---|
125 | menu "O",X3,"X",-; |
---|
126 | |
---|
127 | set @score_test, @score_test + 10; |
---|
128 | X3: |
---|
129 | mes "^2f4f4f[Tsuji]^000000"; |
---|
130 | mes "4th question."; |
---|
131 | mes "'Payon' is the capital of 'Rune Midgarts'."; |
---|
132 | next; |
---|
133 | menu "O",X4,"X",-; |
---|
134 | |
---|
135 | set @score_test, @score_test + 10; |
---|
136 | |
---|
137 | X4: |
---|
138 | mes "^2f4f4f[Tsuji]^000000"; |
---|
139 | mes "5th question."; |
---|
140 | mes "There are ships in 'Alberta'."; |
---|
141 | next; |
---|
142 | menu "O",-,"X",X5; |
---|
143 | |
---|
144 | set @score_test, @score_test + 10; |
---|
145 | |
---|
146 | X5: |
---|
147 | mes "^2f4f4f[Tsuji]^000000"; |
---|
148 | mes "6th question."; |
---|
149 | mes "A job class that can use"; |
---|
150 | mes "'Grand Cross' is"; |
---|
151 | mes "'Lord Knight'."; |
---|
152 | next; |
---|
153 | menu "O",X6,"X",-; |
---|
154 | |
---|
155 | set @score_test, @score_test + 10; |
---|
156 | |
---|
157 | X6: |
---|
158 | mes "^2f4f4f[Tsuji]^000000"; |
---|
159 | mes "7th question."; |
---|
160 | mes "When 'Bard' screams, the oppenet can be 'sturn status'"; |
---|
161 | mes "in regular probability."; |
---|
162 | next; |
---|
163 | menu "O",X7,"X",-; |
---|
164 | |
---|
165 | set @score_test, @score_test + 10; |
---|
166 | |
---|
167 | X7: |
---|
168 | mes "^2f4f4f[Tsuji]^000000"; |
---|
169 | mes "8th question."; |
---|
170 | mes "'Baphomet'is a tool"; |
---|
171 | mes "for killing mosquitos."; |
---|
172 | next; |
---|
173 | menu "O",X8,"X",-; |
---|
174 | |
---|
175 | set @score_test, @score_test + 10; |
---|
176 | |
---|
177 | X8: |
---|
178 | mes "^2f4f4f[Tsuji]^000000"; |
---|
179 | mes "9th question."; |
---|
180 | mes "'Swordman' can class change to"; |
---|
181 | mes "'Ambernite'."; |
---|
182 | next; |
---|
183 | menu "O",X9,"X",-; |
---|
184 | |
---|
185 | set @score_test, @score_test + 10; |
---|
186 | |
---|
187 | X9: |
---|
188 | mes "^2f4f4f[Tsuji]^000000"; |
---|
189 | mes "The last question."; |
---|
190 | mes "A fine horse, which appears in North european Myth"; |
---|
191 | mes "'Sleipnir' has five legs."; |
---|
192 | next; |
---|
193 | menu "O",X0,"X",-; |
---|
194 | |
---|
195 | set @score_test, @score_test + 10; |
---|
196 | |
---|
197 | goto X0; |
---|
198 | |
---|
199 | |
---|
200 | } else if (@test_soonsu == 1){ |
---|
201 | |
---|
202 | mes "^2f4f4f[Tsuji]^000000"; |
---|
203 | mes "1st question."; |
---|
204 | mes "Ragnarok is a MMORPG game."; |
---|
205 | mes "Please choose O and X."; |
---|
206 | next; |
---|
207 | menu "O",-, "X",X1_1; |
---|
208 | |
---|
209 | set @score_test, @score_test + 10; |
---|
210 | |
---|
211 | X1_1: |
---|
212 | mes "^2f4f4f[Tsuji]^000000"; |
---|
213 | mes "2nd question."; |
---|
214 | mes "'Valkyrie' who appears in North european Myth"; |
---|
215 | mes "is the godess of Love."; |
---|
216 | next; |
---|
217 | menu "O",X1_2,"X",-; |
---|
218 | set @score_test, @score_test + 10; |
---|
219 | |
---|
220 | X1_2: |
---|
221 | mes "^2f4f4f[Tsuji]^000000"; |
---|
222 | mes "3rd question."; |
---|
223 | mes "'Bethoven' composed the classic"; |
---|
224 | mes "'Moon Light sonata'."; |
---|
225 | next; |
---|
226 | menu "O",-, "X",X1_3; |
---|
227 | |
---|
228 | set @score_test, @score_test + 10; |
---|
229 | |
---|
230 | X1_3: |
---|
231 | mes "^2f4f4f[Tsuji]^000000"; |
---|
232 | mes "4th question."; |
---|
233 | mes "Orcs that exsits in the world of Ragnarok"; |
---|
234 | mes "are divided into 7 types."; |
---|
235 | next; |
---|
236 | menu "O",X1_4,"X",-; |
---|
237 | set @score_test, @score_test + 10; |
---|
238 | |
---|
239 | X1_4: |
---|
240 | mes "^2f4f4f[Tsuji]^000000"; |
---|
241 | mes "5th question."; |
---|
242 | mes "'Cobolt Card' can be installed"; |
---|
243 | mes "into"; |
---|
244 | mes "shield items."; |
---|
245 | next; |
---|
246 | menu "O",X1_5,"X",-; |
---|
247 | set @score_test, @score_test + 10; |
---|
248 | |
---|
249 | X1_5: |
---|
250 | mes "^2f4f4f[Tsuji]^000000"; |
---|
251 | mes "6th question."; |
---|
252 | mes "'Katar'is exclusive use of Assassins."; |
---|
253 | next; |
---|
254 | menu "O",-, "X",X1_6; |
---|
255 | |
---|
256 | set @score_test, @score_test + 10; |
---|
257 | |
---|
258 | X1_6: |
---|
259 | mes "^2f4f4f[Tsuji]^000000"; |
---|
260 | mes "7th questino."; |
---|
261 | mes "'Emperium' is a material for"; |
---|
262 | mes "refining."; |
---|
263 | next; |
---|
264 | menu "O",X1_7,"X",-; |
---|
265 | set @score_test, @score_test + 10; |
---|
266 | |
---|
267 | X1_7: |
---|
268 | mes "^2f4f4f[Tsuji]^000000"; |
---|
269 | mes "8th question."; |
---|
270 | mes "'Payon' is a village of bandits."; |
---|
271 | next; |
---|
272 | menu "O",X1_8,"X",-; |
---|
273 | set @score_test, @score_test + 10; |
---|
274 | |
---|
275 | X1_8: |
---|
276 | mes "^2f4f4f[Tsuji]^000000"; |
---|
277 | mes "9th question."; |
---|
278 | mes "'Prontera' is the only place where"; |
---|
279 | mes "to class change into 'Swordman'."; |
---|
280 | next; |
---|
281 | menu "O",X1_9,"X",-; |
---|
282 | set @score_test, @score_test + 10; |
---|
283 | |
---|
284 | X1_9: |
---|
285 | mes "^2f4f4f[Tsuji]^000000"; |
---|
286 | mes "The last question."; |
---|
287 | mes "A monster 'Merman' is a human type."; |
---|
288 | next; |
---|
289 | menu "O",-, "X",X0; |
---|
290 | |
---|
291 | set @score_test, @score_test + 10; |
---|
292 | |
---|
293 | goto X0; |
---|
294 | |
---|
295 | } else if (@test_soonsu == 2){ |
---|
296 | |
---|
297 | mes "1st question."; |
---|
298 | mes "Ragnarok is a MMORPG game."; |
---|
299 | mes "Please choose O and X."; |
---|
300 | next; |
---|
301 | menu "O",-, "X",X2_1; |
---|
302 | |
---|
303 | set @score_test, @score_test + 10; |
---|
304 | |
---|
305 | X2_1: |
---|
306 | mes "^2f4f4f[Tsuji]^000000"; |
---|
307 | mes "2nd question."; |
---|
308 | mes "The cloesest village from Pyramid Dugeon is 'Morroc'."; |
---|
309 | next; |
---|
310 | menu "O",-, "X",X2_2; |
---|
311 | |
---|
312 | set @score_test, @score_test + 10; |
---|
313 | |
---|
314 | X2_2: |
---|
315 | mes "^2f4f4f[Tsuji]^000000"; |
---|
316 | mes "3rd question."; |
---|
317 | mes "A merchant association is located in 'Al De Baran'."; |
---|
318 | next; |
---|
319 | menu "O",X2_3,"X",-; |
---|
320 | set @score_test, @score_test + 10; |
---|
321 | |
---|
322 | X2_3: |
---|
323 | mes "^2f4f4f[Tsuji]^000000"; |
---|
324 | mes "4th question."; |
---|
325 | mes "Acolyte can"; |
---|
326 | mes "class change to"; |
---|
327 | mes "'Sage' and 'Priest'."; |
---|
328 | next; |
---|
329 | menu "O",X2_4,"X",-; |
---|
330 | set @score_test, @score_test + 10; |
---|
331 | |
---|
332 | X2_4: |
---|
333 | mes "^2f4f4f[Tsuji]^000000"; |
---|
334 | mes "5th question."; |
---|
335 | mes "When reached base level 10"; |
---|
336 | mes "can be class changed to 1st job10."; |
---|
337 | next; |
---|
338 | menu "O",X2_5,"X",-; |
---|
339 | set @score_test, @score_test + 10; |
---|
340 | |
---|
341 | X2_5: |
---|
342 | mes "^2f4f4f[Tsuji]^000000"; |
---|
343 | mes "6th question."; |
---|
344 | mes "'Bowling Bash' can not be activated"; |
---|
345 | mes "without equip"; |
---|
346 | mes "'Two handed sword'."; |
---|
347 | next; |
---|
348 | menu "O",X2_6,"X",-; |
---|
349 | set @score_test, @score_test + 10; |
---|
350 | |
---|
351 | X2_6: |
---|
352 | mes "^2f4f4f[Tsuji]^000000"; |
---|
353 | mes "7th question."; |
---|
354 | mes "When Priest uses 'Signum Crusis'"; |
---|
355 | mes "all monsters' defense will decrease"; |
---|
356 | mes "in regular probability."; |
---|
357 | next; |
---|
358 | menu "O",X2_7,"X",-; |
---|
359 | set @score_test, @score_test + 10; |
---|
360 | |
---|
361 | X2_7: |
---|
362 | mes "^2f4f4f[Tsuji]^000000"; |
---|
363 | mes "8th question."; |
---|
364 | mes "'Wizard' will use a Blue gemstone"; |
---|
365 | mes "when casts 'Fire Pillar'."; |
---|
366 | next; |
---|
367 | menu "O",-, "X",X2_8; |
---|
368 | |
---|
369 | set @score_test, @score_test + 10; |
---|
370 | |
---|
371 | X2_8: |
---|
372 | mes "^2f4f4f[Tsuji]^000000"; |
---|
373 | mes "9th question."; |
---|
374 | mes "A name of Assassin's exclusive weapon'"; |
---|
375 | mes "'Katar' that gives"; |
---|
376 | mes "additional 50% damage to human type"; |
---|
377 | mes "is 'Infiltrator'."; |
---|
378 | next; |
---|
379 | menu "O",X2_9,"X",-; |
---|
380 | set @score_test, @score_test + 10; |
---|
381 | |
---|
382 | X2_9: |
---|
383 | mes "^2f4f4f[Tsuji]^000000"; |
---|
384 | mes "10th question."; |
---|
385 | mes "'Fire' is the most effective"; |
---|
386 | mes "property against to 'water'."; |
---|
387 | next; |
---|
388 | menu "O",X0,"X",-; |
---|
389 | set @score_test, @score_test + 10; |
---|
390 | |
---|
391 | |
---|
392 | X0: |
---|
393 | mes "^2f4f4f[Tsuji]^000000"; |
---|
394 | mes "Well done~"; |
---|
395 | mes "You have solved all the 10 questions."; |
---|
396 | mes "Let me check"; |
---|
397 | mes "how many you got?"; |
---|
398 | mes "^ff0000If you don't get a perfect score, you have to re-test~^000000"; |
---|
399 | next; |
---|
400 | mes "^2f4f4f[Tsuji]^000000"; |
---|
401 | mes "Wait a moment please."; |
---|
402 | mes "Grading."; |
---|
403 | mes ". . . . . . . . . . . . . . ."; |
---|
404 | mes ". . . . . . . . . . . . . . ."; |
---|
405 | mes ". . . . . . . . . . . . . . ."; |
---|
406 | next; |
---|
407 | mes "^2f4f4f[Tsuji]^000000"; |
---|
408 | mes "Hum . . . . . . . . . . . . ."; |
---|
409 | mes ". . . . . . . . . . . . . . ."; |
---|
410 | mes ". . . . . . . . . . . . . . ."; |
---|
411 | next; |
---|
412 | mes "^2f4f4f[Tsuji]^000000"; |
---|
413 | mes "OK, finished grading."; |
---|
414 | mes "I will tell your score."; |
---|
415 | next; |
---|
416 | if (@score_test > 99) { |
---|
417 | mes "^2f4f4f[Tsuji]^000000"; |
---|
418 | mes "Your score is ^2f4f4f" + @score_test + "^000000!"; |
---|
419 | mes "You have"; |
---|
420 | mes "qualified to participate in"; |
---|
421 | mes "Quiz Revolution."; |
---|
422 | mes "You have cleared the 1st test!"; |
---|
423 | next; |
---|
424 | mes "^2f4f4f[Tsuji]^000000"; |
---|
425 | mes "This is a reward"; |
---|
426 | mes "from us."; |
---|
427 | mes "Please accept it."; |
---|
428 | set quiz_rvl,2; |
---|
429 | getitem 501,10; //Red_Potion |
---|
430 | next; |
---|
431 | mes "^2f4f4f[Tsuji]^000000"; |
---|
432 | mes "Now, the 2nd test is"; |
---|
433 | mes "ready."; |
---|
434 | mes "Go to 'Payon' and meet"; |
---|
435 | mes "'Seeil'."; |
---|
436 | mes "You can get the 2nd test"; |
---|
437 | mes "from him."; |
---|
438 | next; |
---|
439 | mes "^2f4f4f[Tsuji]^000000"; |
---|
440 | mes "You have no business with me"; |
---|
441 | mes "Have a good day."; |
---|
442 | close; |
---|
443 | } |
---|
444 | } else { |
---|
445 | set quiz_rvl,1; |
---|
446 | mes "^2f4f4f[Tsuji]^000000"; |
---|
447 | mes "You score is ^2f4f4f" + @score_test + "^000000."; |
---|
448 | mes "You did not get a perfect score."; |
---|
449 | mes "I do not tell you"; |
---|
450 | mes "where you got wrong."; |
---|
451 | mes "You have to take the test again."; |
---|
452 | close; |
---|
453 | } |
---|
454 | |
---|
455 | sM1_No: |
---|
456 | mes "^2f4f4f[Tsuji]^000000"; |
---|
457 | mes "Oh, really?"; |
---|
458 | mes "Well, it's up to you."; |
---|
459 | mes "Too bad."; |
---|
460 | mes "If you change your mind,"; |
---|
461 | mes "let me know."; |
---|
462 | close; |
---|
463 | |
---|
464 | |
---|
465 | } else if (quiz_rvl == 0) && (BaseLevel > 19) { |
---|
466 | |
---|
467 | |
---|
468 | mes "^2f4f4f[Tsuji]^000000"; |
---|
469 | mes "Hello"; |
---|
470 | mes "This is Tsuji who is in charge of"; |
---|
471 | mes "receiving application forms for"; |
---|
472 | mes "Quiz Revolution event."; |
---|
473 | next; |
---|
474 | mes "^2f4f4f[Tsuji]^000000"; |
---|
475 | mes "Zonda corporation has prepared"; |
---|
476 | mes "^0000ffQuiz Revolution^000000 event to"; |
---|
477 | mes "provide fun and excitement"; |
---|
478 | mes "to all of you."; |
---|
479 | mes "Please read the following explanation and"; |
---|
480 | mes "participate in this event."; |
---|
481 | next; |
---|
482 | mes "^2f4f4f[Tsuji]^000000"; |
---|
483 | mes "This Quiz Revolution event is.."; |
---|
484 | mes "operated in a different way compared to the previous one."; |
---|
485 | mes "The event will only be open for those who wish to participate in the game."; |
---|
486 | mes "Also, the ^006400Quiz Tickets^000000 will be given to those who"; |
---|
487 | mes "pass simple tests to check if the player is worthy of"; |
---|
488 | mes "playing the game."; |
---|
489 | next; |
---|
490 | mes "^2f4f4f[Tsuji]^000000"; |
---|
491 | mes "The assessment will be made through"; |
---|
492 | mes "^006400four simple tests^000000"; |
---|
493 | mes "For the ones who pass all four tests"; |
---|
494 | mes "will receive the quiz ticket of the"; |
---|
495 | mes "Quiz Revolution event."; |
---|
496 | next; |
---|
497 | mes "^2f4f4f[Tsuji]^000000"; |
---|
498 | mes "There is a saying,"; |
---|
499 | mes "^dc143c'No pain no gain!'^000000"; |
---|
500 | mes "Hmm.. I don't think I know exactly what it means."; |
---|
501 | mes "Anyway, I hope you pass all the tests"; |
---|
502 | mes "and receive the quiz ticket"; |
---|
503 | mes "required for the Quiz Revolution event."; |
---|
504 | next; |
---|
505 | mes "^2f4f4f[Tsuji]^000000"; |
---|
506 | mes "So~ Will you now take the"; |
---|
507 | mes "four test to attain the quiz ticket for"; |
---|
508 | mes "the Quiz Revolution event?"; |
---|
509 | next; |
---|
510 | menu "Yes",-,"No",sM2_No; |
---|
511 | |
---|
512 | |
---|
513 | mes "^2f4f4f[Tsuji]^000000"; |
---|
514 | mes "Good."; |
---|
515 | mes "The first one is the ^191970'knowledge test'^000000."; |
---|
516 | mes "I give out the questions and the player has to choose"; |
---|
517 | mes "an answer using O and X."; |
---|
518 | next; |
---|
519 | mes "^2f4f4f[Tsuji]^000000"; |
---|
520 | mes "For your information, the player must get ^dc143ceverything right^000000, "; |
---|
521 | mes "to become eligible for the quiz event"; |
---|
522 | mes "so please take your time solving questions."; |
---|
523 | next; |
---|
524 | mes "^2f4f4f[Tsuji]^000000"; |
---|
525 | mes "I wish many players participate"; |
---|
526 | mes "Quiz Revolution event."; |
---|
527 | mes "I will try to give out easy"; |
---|
528 | mes "questions. Muhaha!"; |
---|
529 | next; |
---|
530 | mes "^2f4f4f[Tsuji]^000000"; |
---|
531 | mes "Then let us start."; |
---|
532 | mes "Read the question carefully and choose"; |
---|
533 | mes "the right answer."; |
---|
534 | set @test_soonsu, rand(2); |
---|
535 | set @score_test, 0; |
---|
536 | next; |
---|
537 | |
---|
538 | |
---|
539 | if (@test_soonsu == 0) { |
---|
540 | mes "^2f4f4f[Tsuji]^000000"; |
---|
541 | mes "1st question."; |
---|
542 | mes "Ragnarok is a MMORPG game."; |
---|
543 | mes "Please choose O and X."; |
---|
544 | next; |
---|
545 | menu "O",-, "X",X3_1; |
---|
546 | |
---|
547 | set @score_test, @score_test + 10; |
---|
548 | |
---|
549 | X3_1: |
---|
550 | mes "^2f4f4f[Tsuji]^000000"; |
---|
551 | mes "2nd question."; |
---|
552 | mes "Ragnarok's monetary unit is 'Zeny'."; |
---|
553 | next; |
---|
554 | menu "O",-, "X",X3_2; |
---|
555 | |
---|
556 | set @score_test, @score_test + 10; |
---|
557 | |
---|
558 | X3_2: |
---|
559 | mes "^2f4f4f[Tsuji]^000000"; |
---|
560 | mes "3rd question."; |
---|
561 | mes "If an unknown person is attacking a monster"; |
---|
562 | mes "you have to attack the same monster together."; |
---|
563 | next; |
---|
564 | menu "O",X3_3, "X",-; |
---|
565 | |
---|
566 | set @score_test, @score_test + 10; |
---|
567 | |
---|
568 | X3_3: |
---|
569 | mes "^2f4f4f[Tsuji]^000000"; |
---|
570 | mes "4th question."; |
---|
571 | mes "'Payon' is the capital of 'Rune Midgarts'."; |
---|
572 | next; |
---|
573 | menu "O",-, "X",X3_4; |
---|
574 | |
---|
575 | set @score_test, @score_test + 10; |
---|
576 | |
---|
577 | X3_4: |
---|
578 | mes "^2f4f4f[Tsuji]^000000"; |
---|
579 | mes "5th question."; |
---|
580 | mes "There are ships in 'Alberta'."; |
---|
581 | next; |
---|
582 | menu "O",-, "X",X3_5; |
---|
583 | |
---|
584 | set @score_test, @score_test + 10; |
---|
585 | |
---|
586 | X3_5: |
---|
587 | mes "^2f4f4f[Tsuji]^000000"; |
---|
588 | mes "6th question."; |
---|
589 | mes "A job class that can use"; |
---|
590 | mes "'Grand Cross' is"; |
---|
591 | mes "'Lord Knight'."; |
---|
592 | next; |
---|
593 | menu "O",X3_6, "X",-; |
---|
594 | |
---|
595 | set @score_test, @score_test + 10; |
---|
596 | |
---|
597 | X3_6: |
---|
598 | mes "^2f4f4f[Tsuji]^000000"; |
---|
599 | mes "7th question."; |
---|
600 | mes "When 'Bard' screams, the oppenet can be 'sturn status'"; |
---|
601 | mes "in regular probability."; |
---|
602 | next; |
---|
603 | menu "O",X3_7, "X",-; |
---|
604 | |
---|
605 | set @score_test, @score_test + 10; |
---|
606 | |
---|
607 | X3_7: |
---|
608 | mes "^2f4f4f[Tsuji]^000000"; |
---|
609 | mes "8th question."; |
---|
610 | mes "'Baphomet'is a tool"; |
---|
611 | mes "for killing mosquitos."; |
---|
612 | next; |
---|
613 | menu "O",X3_8, "X",-; |
---|
614 | |
---|
615 | set @score_test, @score_test + 10; |
---|
616 | |
---|
617 | X3_8: |
---|
618 | mes "^2f4f4f[Tsuji]^000000"; |
---|
619 | mes "9th question."; |
---|
620 | mes "'Swordman' can class change to"; |
---|
621 | mes "'Ambernite'."; |
---|
622 | next; |
---|
623 | menu "O",X3_9, "X",-; |
---|
624 | |
---|
625 | set @score_test, @score_test + 10; |
---|
626 | |
---|
627 | X3_9: |
---|
628 | mes "^2f4f4f[Tsuji]^000000"; |
---|
629 | mes "The last question."; |
---|
630 | mes "A fine horse, which appears in North european Myth"; |
---|
631 | mes "'Sleipnir' has five legs."; |
---|
632 | next; |
---|
633 | menu "O",Y0, "X",-; |
---|
634 | |
---|
635 | set @score_test, @score_test + 10; |
---|
636 | |
---|
637 | goto Y0; |
---|
638 | |
---|
639 | |
---|
640 | } else if (@test_soonsu == 1) { |
---|
641 | |
---|
642 | mes "^2f4f4f[Tsuji]^000000"; |
---|
643 | mes "1st question."; |
---|
644 | mes "Ragnarok is a MMORPG game."; |
---|
645 | mes "Please choose O and X."; |
---|
646 | next; |
---|
647 | menu "O",-, "X",X4_1; |
---|
648 | |
---|
649 | set @score_test, @score_test + 10; |
---|
650 | |
---|
651 | X4_1: |
---|
652 | mes "^2f4f4f[Tsuji]^000000"; |
---|
653 | mes "2nd question."; |
---|
654 | mes "'Valkyrie' who appears in North european Myth"; |
---|
655 | mes "is the godess of Love."; |
---|
656 | next; |
---|
657 | menu "O",X4_2, "X",-; |
---|
658 | |
---|
659 | set @score_test, @score_test + 10; |
---|
660 | |
---|
661 | X4_2: |
---|
662 | mes "^2f4f4f[Tsuji]^000000"; |
---|
663 | mes "3rd question."; |
---|
664 | mes "'Bethoven' composed the classic"; |
---|
665 | mes "'Moon Light sonata'."; |
---|
666 | next; |
---|
667 | menu "O",-, "X",X4_3; |
---|
668 | |
---|
669 | set @score_test, @score_test + 10; |
---|
670 | |
---|
671 | X4_3: |
---|
672 | mes "^2f4f4f[Tsuji]^000000"; |
---|
673 | mes "4th question."; |
---|
674 | mes "Orcs that exsits in the world of Ragnarok"; |
---|
675 | mes "are divided into 7 types."; |
---|
676 | next; |
---|
677 | menu "O",X4_4, "X",-; |
---|
678 | |
---|
679 | set @score_test, @score_test + 10; |
---|
680 | |
---|
681 | X4_4: |
---|
682 | mes "^2f4f4f[Tsuji]^000000"; |
---|
683 | mes "5th question."; |
---|
684 | mes "'Cobolt Card' can be installed"; |
---|
685 | mes "into"; |
---|
686 | mes "shield items."; |
---|
687 | next; |
---|
688 | menu "O",X4_5, "X",-; |
---|
689 | |
---|
690 | set @score_test, @score_test + 10; |
---|
691 | |
---|
692 | X4_5: |
---|
693 | mes "^2f4f4f[Tsuji]^000000"; |
---|
694 | mes "6th question."; |
---|
695 | mes "'Katar'is exclusive use of Assassins."; |
---|
696 | next; |
---|
697 | menu "O",-, "X",X4_6; |
---|
698 | |
---|
699 | set @score_test, @score_test + 10; |
---|
700 | |
---|
701 | X4_6: |
---|
702 | mes "^2f4f4f[Tsuji]^000000"; |
---|
703 | mes "7th questino."; |
---|
704 | mes "'Emperium' is a material for"; |
---|
705 | mes "refining."; |
---|
706 | next; |
---|
707 | menu "O",X4_7, "X",-; |
---|
708 | |
---|
709 | set @score_test, @score_test + 10; |
---|
710 | |
---|
711 | X4_7: |
---|
712 | mes "^2f4f4f[Tsuji]^000000"; |
---|
713 | mes "8th question."; |
---|
714 | mes "'Payon' is a village of bandits."; |
---|
715 | next; |
---|
716 | menu "O",X4_8, "X",-; |
---|
717 | |
---|
718 | set @score_test, @score_test + 10; |
---|
719 | |
---|
720 | X4_8: |
---|
721 | mes "^2f4f4f[Tsuji]^000000"; |
---|
722 | mes "9th question."; |
---|
723 | mes "'Prontera' is the only place where"; |
---|
724 | mes "to class change into 'Swordman'."; |
---|
725 | next; |
---|
726 | menu "O",X4_9, "X",-; |
---|
727 | |
---|
728 | set @score_test, @score_test + 10; |
---|
729 | |
---|
730 | X4_9: |
---|
731 | mes "^2f4f4f[Tsuji]^000000"; |
---|
732 | mes "The last question."; |
---|
733 | mes "A monster 'Merman' is a human type."; |
---|
734 | next; |
---|
735 | menu "O",-, "X",Y0; |
---|
736 | |
---|
737 | set @score_test, @score_test + 10; |
---|
738 | |
---|
739 | goto Y0; |
---|
740 | |
---|
741 | } else if (@test_soonsu == 2) { |
---|
742 | |
---|
743 | |
---|
744 | mes "1st question."; |
---|
745 | mes "Ragnarok is a MMORPG game."; |
---|
746 | mes "Please choose O and X."; |
---|
747 | next; |
---|
748 | menu "O",-, "X",X5_1; |
---|
749 | |
---|
750 | set @score_test, @score_test + 10; |
---|
751 | |
---|
752 | X5_1: |
---|
753 | mes "^2f4f4f[Tsuji]^000000"; |
---|
754 | mes "2nd question."; |
---|
755 | mes "The cloesest village from Pyramid Dugeon is 'Morroc'."; |
---|
756 | next; |
---|
757 | menu "O",-, "X",X5_2; |
---|
758 | |
---|
759 | set @score_test, @score_test + 10; |
---|
760 | |
---|
761 | X5_2: |
---|
762 | mes "^2f4f4f[Tsuji]^000000"; |
---|
763 | mes "3rd question."; |
---|
764 | mes "A merchant association is located in 'Al De Baran'."; |
---|
765 | next; |
---|
766 | menu "O",X5_3, "X",-; |
---|
767 | |
---|
768 | set @score_test, @score_test + 10; |
---|
769 | |
---|
770 | X5_3: |
---|
771 | mes "^2f4f4f[Tsuji]^000000"; |
---|
772 | mes "4th question."; |
---|
773 | mes "Acolyte can"; |
---|
774 | mes "class change to"; |
---|
775 | mes "'Sage' and 'Priest'."; |
---|
776 | next; |
---|
777 | menu "O",X5_4, "X",-; |
---|
778 | |
---|
779 | set @score_test, @score_test + 10; |
---|
780 | |
---|
781 | X5_4: |
---|
782 | mes "^2f4f4f[Tsuji]^000000"; |
---|
783 | mes "5th question."; |
---|
784 | mes "When reached base level 10"; |
---|
785 | mes "can be class changed to 1st job10."; |
---|
786 | next; |
---|
787 | menu "O",X5_5, "X",-; |
---|
788 | |
---|
789 | set @score_test, @score_test + 10; |
---|
790 | |
---|
791 | X5_5: |
---|
792 | mes "^2f4f4f[Tsuji]^000000"; |
---|
793 | mes "6th question."; |
---|
794 | mes "'Bowling Bash' can not be activated"; |
---|
795 | mes "without equip"; |
---|
796 | mes "'Two handed sword'."; |
---|
797 | next; |
---|
798 | menu "O",X5_6, "X",-; |
---|
799 | |
---|
800 | set @score_test, @score_test + 10; |
---|
801 | |
---|
802 | X5_6: |
---|
803 | mes "^2f4f4f[Tsuji]^000000"; |
---|
804 | mes "7th question."; |
---|
805 | mes "When Priest uses 'Signum Crusis'"; |
---|
806 | mes "all monsters' defense will decrease"; |
---|
807 | mes "in regular probability."; |
---|
808 | next; |
---|
809 | menu "O",X5_7, "X",-; |
---|
810 | |
---|
811 | set @score_test, @score_test + 10; |
---|
812 | |
---|
813 | X5_7: |
---|
814 | mes "^2f4f4f[Tsuji]^000000"; |
---|
815 | mes "8th question."; |
---|
816 | mes "'Wizard' will use a Blue gemstone"; |
---|
817 | mes "when casts 'Fire Pillar'."; |
---|
818 | next; |
---|
819 | menu "O",-, "X",X5_8; |
---|
820 | |
---|
821 | set @score_test, @score_test + 10; |
---|
822 | |
---|
823 | X5_8: |
---|
824 | mes "^2f4f4f[Tsuji]^000000"; |
---|
825 | mes "9th question."; |
---|
826 | mes "A name of Assassin's exclusive weapon'"; |
---|
827 | mes "'Katar' that gives"; |
---|
828 | mes "additional 50% damage to human type"; |
---|
829 | mes "is 'Infiltrator'."; |
---|
830 | next; |
---|
831 | menu "O",X5_9, "X",-; |
---|
832 | |
---|
833 | set @score_test, @score_test + 10; |
---|
834 | |
---|
835 | X5_9: |
---|
836 | mes "^2f4f4f[Tsuji]^000000"; |
---|
837 | mes "10th question."; |
---|
838 | mes "'Fire' is the most effective"; |
---|
839 | mes "property against to 'water'."; |
---|
840 | next; |
---|
841 | menu "O",Y0, "X",-; |
---|
842 | |
---|
843 | set @score_test, @score_test + 10; |
---|
844 | |
---|
845 | |
---|
846 | |
---|
847 | Y0: |
---|
848 | mes "^2f4f4f[Tsuji]^000000"; |
---|
849 | mes "Well done~"; |
---|
850 | mes "You have solved all the 10 questions."; |
---|
851 | mes "Let me check"; |
---|
852 | mes "how many you got?"; |
---|
853 | mes "^ff0000If you don't get a perfect score, you have to re-test~^000000"; |
---|
854 | next; |
---|
855 | mes "^2f4f4f[Tsuji]^000000"; |
---|
856 | mes "Wait a moment please."; |
---|
857 | mes "Grading."; |
---|
858 | mes ". . . . . . . . . . . . . . ."; |
---|
859 | mes ". . . . . . . . . . . . . . ."; |
---|
860 | mes ". . . . . . . . . . . . . . ."; |
---|
861 | next; |
---|
862 | mes "^2f4f4f[Tsuji]^000000"; |
---|
863 | mes "Hum . . . . . . . . . . . . ."; |
---|
864 | mes ". . . . . . . . . . . . . . ."; |
---|
865 | mes ". . . . . . . . . . . . . . ."; |
---|
866 | next; |
---|
867 | mes "^2f4f4f[Tsuji]^000000"; |
---|
868 | mes "OK, finished grading."; |
---|
869 | mes "I will tell your score."; |
---|
870 | next; |
---|
871 | if (@score_test > 99) { |
---|
872 | mes "^2f4f4f[Tsuji]^000000"; |
---|
873 | mes "Your score is ^2f4f4f" + @score_test + "^000000!"; |
---|
874 | mes "You have"; |
---|
875 | mes "qualified to participate in"; |
---|
876 | mes "Quiz Revolution."; |
---|
877 | mes "You have cleared the 1st test!"; |
---|
878 | next; |
---|
879 | mes "^2f4f4f[Tsuji]^000000"; |
---|
880 | mes "This is a reward"; |
---|
881 | mes "from us."; |
---|
882 | mes "Please accept it."; |
---|
883 | set quiz_rvl,2; |
---|
884 | getitem 501,10; //Red_Potion |
---|
885 | next; |
---|
886 | mes "^2f4f4f[Tsuji]^000000"; |
---|
887 | mes "Now, the 2nd test is"; |
---|
888 | mes "ready."; |
---|
889 | mes "Go to 'Payon' and meet"; |
---|
890 | mes "'Seeil'."; |
---|
891 | mes "You can get the 2nd test"; |
---|
892 | mes "from him."; |
---|
893 | next; |
---|
894 | mes "^2f4f4f[Tsuji]^000000"; |
---|
895 | mes "You have no business with me"; |
---|
896 | mes "Have a good day."; |
---|
897 | close; |
---|
898 | } else { |
---|
899 | set quiz_rvl,1; |
---|
900 | mes "^2f4f4f[Tsuji]^000000"; |
---|
901 | mes "You score is ^2f4f4f" + @score_test + "^000000."; |
---|
902 | mes "You did not get a perfect score."; |
---|
903 | mes "I do not tell you"; |
---|
904 | mes "where you got wrong."; |
---|
905 | mes "You have to take the test again."; |
---|
906 | close; |
---|
907 | } |
---|
908 | |
---|
909 | |
---|
910 | sM2_No: |
---|
911 | mes "^2f4f4f[Tsuji]^000000"; |
---|
912 | mes "Oh, really?"; |
---|
913 | mes "Well, it's up to you."; |
---|
914 | mes "Too bad."; |
---|
915 | mes "If you change your mind,"; |
---|
916 | mes "let me know."; |
---|
917 | close; |
---|
918 | } |
---|
919 | } |
---|
920 | M_MaxItem: |
---|
921 | mes "^2f4f4f[Tsuji]^000000"; |
---|
922 | mes "- Wait a minute !! -"; |
---|
923 | mes "- You currently have too many items that -"; |
---|
924 | mes "- you can't receive an item. -"; |
---|
925 | mes "- Please loose some weight -"; |
---|
926 | mes "- and try again. -"; |
---|
927 | close; |
---|
928 | |
---|
929 | L_OverWeight: |
---|
930 | mes "^2f4f4f[Tsuji]^000000"; |
---|
931 | mes "- Wait a minute !! -"; |
---|
932 | mes "- You currently have too many items that -"; |
---|
933 | mes "- you can't receive an item. -"; |
---|
934 | mes "- Please loose some weight -"; |
---|
935 | mes "- and try again. -"; |
---|
936 | close; |
---|
937 | } |
---|
938 | |
---|
939 | //======================================payon================================= |
---|
940 | payon,85,133,4 duplicate(RecepQuiz) Receptionist#2 755 |
---|
941 | //======================================geffen================================ |
---|
942 | geffen,111,104,4 duplicate(RecepQuiz) Receptionist#3 755 |
---|
943 | //====================================morocc================================== |
---|
944 | morocc,148,272,5 duplicate(RecepQuiz) Receptionist#4 755 |
---|
945 | //=============================Alberta======================================== |
---|
946 | alberta,29,241,4 duplicate(RecepQuiz) Receptionist#5 755 |
---|
947 | //============================================================================ |
---|
948 | |
---|
949 | //===================Quiz Revolution 2nd quest collecting job items================== |
---|
950 | payon,111,117,3 script Seeil 89,{ |
---|
951 | if (countitem(1201) > 3) goto M_MaxItem; |
---|
952 | if (checkweight(1201,3) == 0 ) goto L_OverWeight; |
---|
953 | |
---|
954 | if (quiz_rvl > 13) { |
---|
955 | mes "[Seeil]"; |
---|
956 | mes "How was the last test? I hope you do this"; |
---|
957 | mes "one well."; |
---|
958 | close; |
---|
959 | } else if (quiz_rvl == 13) { |
---|
960 | mes "[Seeil]"; |
---|
961 | mes "Since you have cleared the conditions to receive the"; |
---|
962 | mes "last test, please go and visit Radeng in Prontera."; |
---|
963 | mes "During that time, I will transfer"; |
---|
964 | mes "will transfer all"; |
---|
965 | mes "your data."; |
---|
966 | next; |
---|
967 | mes "[Seeil]"; |
---|
968 | mes "So this is the last one. Show me some spirit!"; |
---|
969 | mes "This is a present to encourage you! Take it!"; |
---|
970 | set quiz_rvl,14; |
---|
971 | getitem 503,10; //Yellow_Potion |
---|
972 | close; |
---|
973 | |
---|
974 | } else if (quiz_rvl > 6) && (quiz_rvl < 13) { |
---|
975 | mes "[Seeil]"; |
---|
976 | mes "Eh? You didn't finish the marathon test and"; |
---|
977 | mes "came out in the middle of the test."; |
---|
978 | mes "Oh my.. I don't know how you came out, but"; |
---|
979 | mes "this can't be like this. I will send you"; |
---|
980 | mes "once again!"; |
---|
981 | close2; |
---|
982 | set quiz_rvl,6; |
---|
983 | warp "quiz_test",385,388; |
---|
984 | end; |
---|
985 | |
---|
986 | } else if (quiz_rvl == 6) { |
---|
987 | mes "[Seeil]"; |
---|
988 | mes "Ho.. You are fast. Well..."; |
---|
989 | mes "All the preparations have been made so I can send"; |
---|
990 | mes "you to the next stage. This will test your patience"; |
---|
991 | mes "and endurance. It will not be require to use your brain"; |
---|
992 | mes "this time. All you have to do is.. just run."; |
---|
993 | next; |
---|
994 | mes "[Seeil]"; |
---|
995 | mes "You can't come back from there until"; |
---|
996 | mes "you finish. Are you ready?"; |
---|
997 | mes "Will you take the third test"; |
---|
998 | mes "now?"; |
---|
999 | next; |
---|
1000 | menu "Take the test",-,"Refuse to take the test",M2_S; |
---|
1001 | |
---|
1002 | mes "[Seeil]"; |
---|
1003 | mes "Okay! I hope you do well and"; |
---|
1004 | mes "pass the test."; |
---|
1005 | mes "Go for it!"; |
---|
1006 | close2; |
---|
1007 | warp "quiz_test",385,388; |
---|
1008 | end; |
---|
1009 | |
---|
1010 | M2_S: |
---|
1011 | mes "[Seeil]"; |
---|
1012 | mes "Oh my gosh, you are not ready"; |
---|
1013 | mes "yet. I don't have any intention to"; |
---|
1014 | mes "force you so whenever you are ready"; |
---|
1015 | mes "please come back to me. Ha ha ha."; |
---|
1016 | close; |
---|
1017 | |
---|
1018 | |
---|
1019 | } else if (quiz_rvl == 3) { |
---|
1020 | if (countitem(902) > 39) && (countitem(908) > 39) && (countitem(909) > 39) { |
---|
1021 | mes "[Seeil]"; |
---|
1022 | mes "Wow. You have collected the requested items."; |
---|
1023 | mes "So I will keep my promise. Before that"; |
---|
1024 | mes "this is a present for you.. Please"; |
---|
1025 | mes "take it."; |
---|
1026 | delitem 902,40; |
---|
1027 | delitem 908,40; |
---|
1028 | delitem 909,40; |
---|
1029 | set quiz_rvl,6; |
---|
1030 | getitem 502,10; //Orange_Potion |
---|
1031 | next; |
---|
1032 | mes "[Seeil]"; |
---|
1033 | mes "Then come back after a while and talk to me."; |
---|
1034 | mes "I need to prepare somethings for the third test"; |
---|
1035 | mes "so... please go and do something"; |
---|
1036 | mes "to kill some time."; |
---|
1037 | close; |
---|
1038 | } |
---|
1039 | |
---|
1040 | mes "[Seeil]"; |
---|
1041 | mes "You are under a test which you are required to bring"; |
---|
1042 | mes "^FF0000Tree Root^000000, ^FF0000Spawn^000000,"; |
---|
1043 | mes "^FF0000Jellopy^000000, 40ea each."; |
---|
1044 | mes "Go for it!"; |
---|
1045 | close; |
---|
1046 | |
---|
1047 | } else if (quiz_rvl == 4) { |
---|
1048 | if (countitem(905) > 39) && (countitem(920) > 39) && (countitem(909) > 39) { |
---|
1049 | mes "[Seeil]"; |
---|
1050 | mes "Ho. You have collected the required items."; |
---|
1051 | mes "I will keep my promise too. Before that"; |
---|
1052 | mes "this is a present for you. Please"; |
---|
1053 | mes "take it."; |
---|
1054 | delitem 905,40; |
---|
1055 | delitem 920,40; |
---|
1056 | delitem 909,40; |
---|
1057 | set quiz_rvl,6; |
---|
1058 | getitem 502,10; //Orange_Potion |
---|
1059 | next; |
---|
1060 | mes "[Seeil]"; |
---|
1061 | mes "Then come back to me after a while."; |
---|
1062 | mes "I have somethings to prepare so"; |
---|
1063 | mes "please go and do somethings to kill"; |
---|
1064 | mes "time."; |
---|
1065 | close; |
---|
1066 | } |
---|
1067 | |
---|
1068 | mes "[Seeil]"; |
---|
1069 | mes "You are under a test which you are required to bring"; |
---|
1070 | mes "^FF0000Stem^000000, ^FF0000Claw of Wolves^000000, ^FF0000Jellopy^000000"; |
---|
1071 | mes "40 ea each."; |
---|
1072 | mes "Go for it."; |
---|
1073 | close; |
---|
1074 | |
---|
1075 | } else if (quiz_rvl == 5) { |
---|
1076 | if (countitem(940) > 39) && (countitem(916) > 39) && (countitem(909) > 39) { |
---|
1077 | |
---|
1078 | mes "[Seeil]"; |
---|
1079 | mes "Ho. You have collected the required items."; |
---|
1080 | mes "I will keep my promise too. Before that"; |
---|
1081 | mes "this is a present for you. Please"; |
---|
1082 | mes "take it."; |
---|
1083 | delitem 940,40; |
---|
1084 | delitem 916,40; |
---|
1085 | delitem 909,40; |
---|
1086 | set quiz_rvl,6; |
---|
1087 | getitem 502,10; //Orange_Potion |
---|
1088 | next; |
---|
1089 | mes "[Seeil]"; |
---|
1090 | mes "Then come back to me after a while."; |
---|
1091 | mes "I have somethings to prepare so"; |
---|
1092 | mes "please go and do somethings to kill"; |
---|
1093 | mes "time."; |
---|
1094 | close; |
---|
1095 | } |
---|
1096 | |
---|
1097 | mes "[Seeil]"; |
---|
1098 | mes "You are under a test which you are required to bring"; |
---|
1099 | mes "^FF0000Grasshopper's Leg^000000, FF0000Feather of Birds^000000, ^FF0000Jellopy^000000"; |
---|
1100 | mes "40ea each."; |
---|
1101 | mes "Go for it!"; |
---|
1102 | close; |
---|
1103 | |
---|
1104 | |
---|
1105 | } else if (quiz_rvl == 2) { |
---|
1106 | |
---|
1107 | mes "[Seeil]"; |
---|
1108 | mes "Hmm? You are the one Tsuji sent?"; |
---|
1109 | mes "Your name is... " +strcharinfo(0)+ " Right? Okay..."; |
---|
1110 | mes "Confirmed. You look about the same as Tsuji"; |
---|
1111 | mes "described to me. Well, shall we start the"; |
---|
1112 | mes "test?"; |
---|
1113 | next; |
---|
1114 | mes "[Seeil]"; |
---|
1115 | mes "It isn't that tough. All you have"; |
---|
1116 | mes "to do is bring specified items"; |
---|
1117 | mes "Life isn't that hard~"; |
---|
1118 | set @japtem,rand(2); |
---|
1119 | next; |
---|
1120 | |
---|
1121 | if (@japtem == 0) { |
---|
1122 | set quiz_rvl,3; |
---|
1123 | mes "[Seeil]"; |
---|
1124 | mes "Bring ^FF0000Tree Root ^000000 40ea, ^FF0000Spawn"; |
---|
1125 | mes "^000000 40ea, and ^FF0000Jellopy^000000 40ea"; |
---|
1126 | mes "I told ya. It's is not so hard, is it?"; |
---|
1127 | mes "I would like to specify some items hard to find"; |
---|
1128 | mes "but seniors told me not "; |
---|
1129 | mes "to do so~ Hehe."; |
---|
1130 | next; |
---|
1131 | mes "[Seeil]"; |
---|
1132 | mes "Well, bring it as soon as you can. This is"; |
---|
1133 | mes "an easy test, but there is a time limit."; |
---|
1134 | mes "Sooner the better, that is what"; |
---|
1135 | mes "I mean~"; |
---|
1136 | close; |
---|
1137 | } |
---|
1138 | |
---|
1139 | else if (@japtem == 1) { |
---|
1140 | set quiz_rvl,4; |
---|
1141 | mes "[Seeil]"; |
---|
1142 | mes "Bring ^FF0000Stem^000000 40ea, ^FF0000Wolf Claw^000000 40ea,"; |
---|
1143 | mes "and ^FF0000Jellopy^000000 40ea."; |
---|
1144 | mes "I told ya. It's is not so hard, is it?"; |
---|
1145 | mes "I would like to specify some items hard to find"; |
---|
1146 | mes "but seniors told me not "; |
---|
1147 | mes "to do so~ Hehe."; |
---|
1148 | next; |
---|
1149 | mes "[Seeil]"; |
---|
1150 | mes "Well, bring it as soon as you can. This is"; |
---|
1151 | mes "an easy test, but there is a time limit."; |
---|
1152 | mes "Sooner the better, that is what"; |
---|
1153 | mes "I mean~"; |
---|
1154 | close; |
---|
1155 | } |
---|
1156 | |
---|
1157 | else if (@japtem == 2) { |
---|
1158 | set quiz_rvl,5; |
---|
1159 | mes "[Seeil]"; |
---|
1160 | mes "^FF0000Grasshopper's Leg^000000 40ea, ^FF0000Feather of Birds^000000 40ea,"; |
---|
1161 | mes "and ^FF0000Jellopy^000000 40ea."; |
---|
1162 | mes "I told ya. It's is not so hard, is it?"; |
---|
1163 | mes "I would like to specify some items hard to find"; |
---|
1164 | mes "but seniors told me not "; |
---|
1165 | mes "to do so~ Hehe."; |
---|
1166 | next; |
---|
1167 | mes "[Seeil]"; |
---|
1168 | mes "Well, bring it as soon as you can. This is"; |
---|
1169 | mes "an easy test, but there is a time limit."; |
---|
1170 | mes "Sooner the better, that is what"; |
---|
1171 | mes "I mean~"; |
---|
1172 | close; |
---|
1173 | } |
---|
1174 | } else { |
---|
1175 | |
---|
1176 | mes "[Seeil]"; |
---|
1177 | mes "Call me Seeil=Lanchest"; |
---|
1178 | mes "I am here to test the ones who"; |
---|
1179 | mes "wishes to join in the quiz event."; |
---|
1180 | next; |
---|
1181 | mes "[Seeil]"; |
---|
1182 | mes "I am in charge of second and third test"; |
---|
1183 | mes "so in order to get a test from me, you have to"; |
---|
1184 | mes "pass the first test which is given"; |
---|
1185 | mes "by Tsuji."; |
---|
1186 | close; |
---|
1187 | } |
---|
1188 | M_MaxItem: |
---|
1189 | mes "^800000[Seeil]^000000"; |
---|
1190 | mes "- Wait a minute !! -"; |
---|
1191 | mes "- You currently have too many items that -"; |
---|
1192 | mes "- you can't receive an item. -"; |
---|
1193 | mes "- Please loose some weight -"; |
---|
1194 | mes "- and try again. -"; |
---|
1195 | close; |
---|
1196 | |
---|
1197 | L_OverWeight: |
---|
1198 | mes "^800000[Seeil]^000000"; |
---|
1199 | mes "- Wait a minute !! -"; |
---|
1200 | mes "- You currently have too many items that -"; |
---|
1201 | mes "- you can't receive an item. -"; |
---|
1202 | mes "- Please loose some weight -"; |
---|
1203 | mes "- and try again. -"; |
---|
1204 | close; |
---|
1205 | } |
---|
1206 | |
---|
1207 | //========================================================================================================================================================= |
---|
1208 | prontera,116,266,5 script Receptionist 109,{ |
---|
1209 | |
---|
1210 | if (countitem(1201) > 3) goto M_MaxItem; |
---|
1211 | if (checkweight(1201,3) == 0 ) goto L_OverWeight; |
---|
1212 | |
---|
1213 | |
---|
1214 | if(quiz_rvl == 18) { |
---|
1215 | |
---|
1216 | mes "^800000[Radeng]^000000"; |
---|
1217 | mes "^6b8e23" + strcharinfo(0)+ "^000000?"; |
---|
1218 | mes "'Go look for ^b8860b'Kantryl'^000000 "; |
---|
1219 | mes "at Izlude."; |
---|
1220 | close; |
---|
1221 | |
---|
1222 | |
---|
1223 | |
---|
1224 | } else if(quiz_rvl == 17) { |
---|
1225 | |
---|
1226 | if (countitem(955) > 19) && (countitem(913) > 19) && (countitem(729) > 0) { |
---|
1227 | |
---|
1228 | mes "^800000[Radeng]^000000"; |
---|
1229 | mes "Oh~"; |
---|
1230 | mes "You are here!"; |
---|
1231 | mes "Let me check whether"; |
---|
1232 | mes "you brought the right thing."; |
---|
1233 | next; |
---|
1234 | mes "^800000[Radeng]^000000"; |
---|
1235 | mes "Yes,that's right."; |
---|
1236 | mes "You brought the right thing."; |
---|
1237 | mes "Please, wait a second and.."; |
---|
1238 | mes "I have to"; |
---|
1239 | mes "put you on the list."; |
---|
1240 | next; |
---|
1241 | mes "^800000[Radeng]^000000"; |
---|
1242 | mes "You are..^6b8e23" + strcharinfo(0)+ "^000000 ..right?"; |
---|
1243 | mes "Hm..."; |
---|
1244 | mes "Well done."; |
---|
1245 | mes "And this is compensation for the"; |
---|
1246 | mes "ones who have passed the test."; |
---|
1247 | next; |
---|
1248 | mes "^800000[Radeng]^000000"; |
---|
1249 | mes "All you have to do is"; |
---|
1250 | mes "meeting ^b8860b'Kantryl'^000000"; |
---|
1251 | mes "at Izlude."; |
---|
1252 | delitem 955,20; |
---|
1253 | delitem 913,20; |
---|
1254 | delitem 729,1; |
---|
1255 | set quiz_rvl,18; |
---|
1256 | getitem 504,10; //White_Potion |
---|
1257 | next; |
---|
1258 | mes "^800000[Radeng]^000000"; |
---|
1259 | mes "Goodbye~~."; |
---|
1260 | close; |
---|
1261 | } |
---|
1262 | mes "^800000[Radeng]^000000"; |
---|
1263 | mes "Oh~~"; |
---|
1264 | mes "You are here!"; |
---|
1265 | mes "Let me check whether"; |
---|
1266 | mes "You brought the right thing."; |
---|
1267 | next; |
---|
1268 | mes "^800000[Radeng]^000000"; |
---|
1269 | mes "oh my...."; |
---|
1270 | next; |
---|
1271 | mes "^800000[Radeng]^000000"; |
---|
1272 | mes "Seems like you didn't prepare"; |
---|
1273 | mes "what I asked you for."; |
---|
1274 | mes "I'll tell you what items you have to bring."; |
---|
1275 | mes "I'm not going to tell you again."; |
---|
1276 | mes "So please remember."; |
---|
1277 | next; |
---|
1278 | mes "^800000[Radeng]^000000"; |
---|
1279 | mes "The items are"; |
---|
1280 | mes "^19197020 Warm peeling^000000"; |
---|
1281 | mes "^19197020Tooth of Bat^000000"; |
---|
1282 | mes "^1919701 Zircon^000000"; |
---|
1283 | close; |
---|
1284 | |
---|
1285 | |
---|
1286 | |
---|
1287 | |
---|
1288 | |
---|
1289 | |
---|
1290 | } if(quiz_rvl == 16) { |
---|
1291 | if (countitem(1055) > 29) && (countitem(940) > 29) && (countitem(948) > 29) && (countitem(730) > 0) { |
---|
1292 | mes "^800000[Radeng]^000000"; |
---|
1293 | mes "Oh~~~"; |
---|
1294 | mes "You are here!"; |
---|
1295 | mes "Let me check whether "; |
---|
1296 | mes "you brought the right thing."; |
---|
1297 | next; |
---|
1298 | mes "^800000[Radeng]^000000"; |
---|
1299 | mes "Yes,that's right."; |
---|
1300 | mes "You brought the right thing."; |
---|
1301 | mes "Please, wait a second and.."; |
---|
1302 | mes "I have to"; |
---|
1303 | mes "put you on the list."; |
---|
1304 | next; |
---|
1305 | set quiz_rvl,18; |
---|
1306 | getitem 504,10; //White_Potion |
---|
1307 | delitem 1055,30; |
---|
1308 | delitem 940,30; |
---|
1309 | delitem 948,30; |
---|
1310 | delitem 730,1; |
---|
1311 | mes "^800000[Radeng]^000000"; |
---|
1312 | mes "You are..^6b8e23" + strcharinfo(0)+ "^000000..right?"; |
---|
1313 | mes "Hm..."; |
---|
1314 | mes "Well done."; |
---|
1315 | mes "And this is compensation for the"; |
---|
1316 | mes "ones who have passed the test."; |
---|
1317 | next; |
---|
1318 | mes "^800000[Radeng]^000000"; |
---|
1319 | mes "All you have to do is"; |
---|
1320 | mes "meeting ^b8860b'Kantryl'^000000"; |
---|
1321 | mes "at Izlude."; |
---|
1322 | next; |
---|
1323 | mes "^800000[Radeng]^000000"; |
---|
1324 | mes "Goodbye"; |
---|
1325 | close; |
---|
1326 | } |
---|
1327 | mes "^800000[Radeng]^000000"; |
---|
1328 | mes "Oh~~~"; |
---|
1329 | mes "You are here!"; |
---|
1330 | mes "Let me check whether"; |
---|
1331 | mes "you brought the right thing."; |
---|
1332 | next; |
---|
1333 | mes "^800000[Radeng]^000000"; |
---|
1334 | mes "Oh my...."; |
---|
1335 | next; |
---|
1336 | mes "^800000[Radeng]^000000"; |
---|
1337 | mes "Seems like you didn't prepare"; |
---|
1338 | mes "what I asked you for.."; |
---|
1339 | mes "I'll tell you what items you have to bring.."; |
---|
1340 | mes "I'm not going to tell you again."; |
---|
1341 | mes "So please remember.."; |
---|
1342 | next; |
---|
1343 | mes "^800000[Radeng]^000000"; |
---|
1344 | mes "^191970Earthwarm Peeling^000000 30"; |
---|
1345 | mes "^191970Grasshopper's Leg^000000 30"; |
---|
1346 | mes "^191970Bear's Footskin^000000 30"; |
---|
1347 | mes "^1919701carat Diamond^000000 1."; |
---|
1348 | mes "Try hard."; |
---|
1349 | close; |
---|
1350 | |
---|
1351 | |
---|
1352 | |
---|
1353 | |
---|
1354 | |
---|
1355 | } else if(quiz_rvl == 15) { |
---|
1356 | mes "^800000[Radeng]^000000"; |
---|
1357 | mes "You are...."; |
---|
1358 | mes "the one who left before I tell you the score"; |
---|
1359 | mes "Aren't you?"; |
---|
1360 | mes "Can't tell you failed. So..."; |
---|
1361 | next; |
---|
1362 | mes "If ^800000[Radeng]^000000"; |
---|
1363 | mes "^191970Earthwarm Peeling^000000 30"; |
---|
1364 | mes "^191970Grasshopper's Leg^000000 30"; |
---|
1365 | mes "^191970Bear's Footskin^000000 30"; |
---|
1366 | mes "^1919701carat Diamond^000000 1"; |
---|
1367 | mes "is prepared,"; |
---|
1368 | mes "You are pass."; |
---|
1369 | set quiz_rvl,16; |
---|
1370 | close; |
---|
1371 | |
---|
1372 | } else if(quiz_rvl == 14) { |
---|
1373 | mes "^800000[Radeng]^000000"; |
---|
1374 | mes "Hello"; |
---|
1375 | mes "I'm 'Radeng'."; |
---|
1376 | mes "I'm in charge of 4th test."; |
---|
1377 | mes "You seem to have finished"; |
---|
1378 | mes "3rd test!"; |
---|
1379 | next; |
---|
1380 | mes "^800000[Radeng]^000000"; |
---|
1381 | mes "Then,let's start 4th test."; |
---|
1382 | mes "the last barrier of quiz revolution."; |
---|
1383 | mes "First of all,"; |
---|
1384 | mes "I will briefly go over about the test."; |
---|
1385 | next; |
---|
1386 | mes "^800000[Radeng]^000000"; |
---|
1387 | mes "you have to do quiz and collect items"; |
---|
1388 | mes " "; |
---|
1389 | mes "You have to answer 10 mulptiple choice questions"; |
---|
1390 | mes "and the amount of required items changes "; |
---|
1391 | mes "depending on score you acheive."; |
---|
1392 | mes " "; |
---|
1393 | next; |
---|
1394 | mes "^800000[Radeng]^000000"; |
---|
1395 | mes "First,"; |
---|
1396 | mes "If you clear all 10 questions"; |
---|
1397 | mes "you are pass with"; |
---|
1398 | mes "pretest of collecting items."; |
---|
1399 | next; |
---|
1400 | mes "^800000[Radeng]^000000"; |
---|
1401 | mes "Second,"; |
---|
1402 | mes "If you score between 50~90"; |
---|
1403 | mes "required items are"; |
---|
1404 | mes "not so much."; |
---|
1405 | next; |
---|
1406 | mes "^800000[Radeng]^000000"; |
---|
1407 | mes "Third,"; |
---|
1408 | mes "If you score between 0~40"; |
---|
1409 | mes "required items will be"; |
---|
1410 | mes "vast."; |
---|
1411 | next; |
---|
1412 | mes "^800000[Radeng]^000000"; |
---|
1413 | mes "Well, this is all about"; |
---|
1414 | mes "4th test."; |
---|
1415 | mes "Then, let's start!"; |
---|
1416 | next; |
---|
1417 | menu "Yes",-,"No",M_No; |
---|
1418 | |
---|
1419 | mes "^800000[Radeng]^000000"; |
---|
1420 | mes "Well,now"; |
---|
1421 | mes "10 questions will be presented."; |
---|
1422 | mes "Look carefully through "; |
---|
1423 | mes "questions and"; |
---|
1424 | mes "choose the right answer."; |
---|
1425 | next; |
---|
1426 | mes "^800000[Radeng]^000000"; |
---|
1427 | mes "1st question."; |
---|
1428 | mes "How many jobs"; |
---|
1429 | mes "are in the game?"; |
---|
1430 | set @score_test2, 0; |
---|
1431 | next; |
---|
1432 | menu "22",sM1_1,"28",sM1_1,"32",sM1_1,"34",-; |
---|
1433 | |
---|
1434 | set @score_test2, @score_test2 + 10; |
---|
1435 | |
---|
1436 | sM1_1: |
---|
1437 | |
---|
1438 | mes "^800000[Radeng]^000000"; |
---|
1439 | mes "2nd question."; |
---|
1440 | mes "The name of santa NPC"; |
---|
1441 | mes "which links christmas town"; |
---|
1442 | mes "'Lutie' and 'Aldebaran'?"; |
---|
1443 | next; |
---|
1444 | menu "Warp Santa",sM1_2, "Link Santa",-, "Lutie Santa",sM1_2, "Hulk Santa",sM1_2; |
---|
1445 | |
---|
1446 | set @score_test2, @score_test2 + 10; |
---|
1447 | |
---|
1448 | sM1_2: |
---|
1449 | mes "^800000[Radeng]^000000"; |
---|
1450 | mes "3rd question."; |
---|
1451 | mes "What job level at least you have to be"; |
---|
1452 | mes "to learn novice skill"; |
---|
1453 | mes "'Pretend dead'?"; |
---|
1454 | next; |
---|
1455 | menu "Job level4",sM1_3,"Job level5",sM1_3,"Job level6",sM1_3,"Job level7",-; |
---|
1456 | |
---|
1457 | set @score_test2, @score_test2 + 10; |
---|
1458 | |
---|
1459 | sM1_3: |
---|
1460 | mes "^800000[Radeng]^000000"; |
---|
1461 | mes "4th question."; |
---|
1462 | mes "Require items"; |
---|
1463 | mes "to raise Poring?"; |
---|
1464 | next; |
---|
1465 | menu "Unripe Apple",-,"Rippen Apple",sM1_4, "Delicious looking Apple",sM1_4, "Apple",sM1_4; |
---|
1466 | |
---|
1467 | set @score_test2, @score_test2 + 10; |
---|
1468 | |
---|
1469 | sM1_4: |
---|
1470 | mes "^800000[Radeng]^000000"; |
---|
1471 | mes "5th question"; |
---|
1472 | mes "What doll can you buy"; |
---|
1473 | mes "from NPC?"; |
---|
1474 | next; |
---|
1475 | menu "Doll",-,"Baphomet Doll",sM1_5,"Yoyo Doll",sM1_5,"Rocker Doll",sM1_5; |
---|
1476 | |
---|
1477 | set @score_test2, @score_test2 + 10; |
---|
1478 | |
---|
1479 | sM1_5: |
---|
1480 | mes "^800000[Radeng]^000000"; |
---|
1481 | mes "6th question."; |
---|
1482 | mes "Name of monster which drop"; |
---|
1483 | mes "'Big Ribbon'?"; |
---|
1484 | next; |
---|
1485 | menu "Eclipse",sM1_6,"Dragon Fly",sM1_6,"Vocal",sM1_6,"Toad,",-; |
---|
1486 | |
---|
1487 | set @score_test2, @score_test2 + 10; |
---|
1488 | |
---|
1489 | sM1_6: |
---|
1490 | mes "^800000[Radeng]^000000"; |
---|
1491 | mes "Choose the monster that has smiliar size and form of"; |
---|
1492 | mes "Pring."; |
---|
1493 | next; |
---|
1494 | menu "Pupa",sM1_7,"Fabre",sM1_7,"Wander Man",-,"Golem",sM1_7; |
---|
1495 | |
---|
1496 | set @score_test2, @score_test2 + 10; |
---|
1497 | |
---|
1498 | sM1_7: |
---|
1499 | mes "^800000[Radeng]^000000"; |
---|
1500 | mes "8th question."; |
---|
1501 | mes "When can Green Herb work"; |
---|
1502 | mes "it's efficacy?"; |
---|
1503 | next; |
---|
1504 | menu "Silence",sM1_8,"Sleep",sM1_8,"Poison",-,"Chaos",sM1_8; |
---|
1505 | |
---|
1506 | set @score_test2, @score_test2 + 10; |
---|
1507 | |
---|
1508 | sM1_8: |
---|
1509 | mes "^800000[Radeng]^000000"; |
---|
1510 | mes "9th question."; |
---|
1511 | mes "Which weapon gives biggest damages"; |
---|
1512 | mes "to small sized monsters?"; |
---|
1513 | next; |
---|
1514 | menu "Dagger",-,"Two hand Sword",sM1_9,"Katar",sM1_9,"One hand Sword",sM1_9; |
---|
1515 | |
---|
1516 | set @score_test2, @score_test2 + 10; |
---|
1517 | |
---|
1518 | sM1_9: |
---|
1519 | mes "^800000[Radeng]^000000"; |
---|
1520 | mes "Last question!!"; |
---|
1521 | mes "What is not neccesary when learnig"; |
---|
1522 | mes "First-aid treatment?"; |
---|
1523 | next; |
---|
1524 | menu "Clover",sM1_0,"Red Herb",sM1_0,"Novice Nametag",-,"Sterilized Bandages",sM1_0; |
---|
1525 | |
---|
1526 | set @score_test2, @score_test2 + 10; |
---|
1527 | |
---|
1528 | sM1_0: |
---|
1529 | mes "^800000[Radeng]^000000"; |
---|
1530 | mes "You finished answering all questions."; |
---|
1531 | mes "Wonder what your score is."; |
---|
1532 | mes "10points for 1 question."; |
---|
1533 | mes "Please wait a second."; |
---|
1534 | next; |
---|
1535 | mes "^800000[Radeng]^000000"; |
---|
1536 | mes "Please, wait a second and.."; |
---|
1537 | mes "Grading."; |
---|
1538 | mes ". . . . . . . . . . . . . . ."; |
---|
1539 | mes ". . . . . . . . . . . . . . ."; |
---|
1540 | next; |
---|
1541 | mes "^800000[Radeng]^000000"; |
---|
1542 | mes "OK."; |
---|
1543 | mes "Your score is" + strcharinfo(0)+ ""; |
---|
1544 | mes "" + @score_test2 + "!" ; |
---|
1545 | set quiz_rvl,15; |
---|
1546 | next; |
---|
1547 | if (@score_test2 > 40) && (@score_test2 < 90)goto L_Passed; |
---|
1548 | if (@score_test2 >= 90)goto L_Perfect; |
---|
1549 | mes "^800000[Radeng]^000000"; |
---|
1550 | mes "Your score is too low."; |
---|
1551 | mes "Like as I told you before,"; |
---|
1552 | mes "you have to bring a lot of"; |
---|
1553 | mes "items to pass the test."; |
---|
1554 | mes " "; |
---|
1555 | next; |
---|
1556 | mes "^800000[Radeng]^000000"; |
---|
1557 | mes "Required items are"; |
---|
1558 | mes "^191970Earthworm Peeling^000000 30"; |
---|
1559 | mes "^191970Grasshopper's Leg^000000 30"; |
---|
1560 | mes "^191970Bear's Footskin^000000 30"; |
---|
1561 | mes "^1919701Carat Diamond^000000 1"; |
---|
1562 | mes ""; |
---|
1563 | next; |
---|
1564 | mes "^800000[Radeng]^000000"; |
---|
1565 | mes "I'm sorry."; |
---|
1566 | mes "If you have scored just a little bit higher.."; |
---|
1567 | mes "........."; |
---|
1568 | mes "Then,go look for items.."; |
---|
1569 | set quiz_rvl,16; |
---|
1570 | close; |
---|
1571 | |
---|
1572 | L_Passed: |
---|
1573 | |
---|
1574 | mes "^800000[Radeng]^000000"; |
---|
1575 | mes "You did fine. "; |
---|
1576 | mes "But as I told you before"; |
---|
1577 | mes "you need to bring"; |
---|
1578 | mes "some more items."; |
---|
1579 | mes " "; |
---|
1580 | next; |
---|
1581 | mes "^800000[Radeng]^000000"; |
---|
1582 | mes "Required items are"; |
---|
1583 | mes "^191970Worm Peeling^000000 20"; |
---|
1584 | mes "^191970Tooth of Bat^000000 20"; |
---|
1585 | mes "^191970Zircon^000000 1."; |
---|
1586 | next; |
---|
1587 | mes "^800000[Radeng]^000000"; |
---|
1588 | mes "I'm sorry~"; |
---|
1589 | mes "If you have scored just a little bit higher.."; |
---|
1590 | mes "you could have passed."; |
---|
1591 | mes "(KeKeke)"; |
---|
1592 | mes "Then,go look for items.."; |
---|
1593 | set quiz_rvl,17; |
---|
1594 | close; |
---|
1595 | |
---|
1596 | L_Perfect: |
---|
1597 | mes "^800000[Radeng]^000000"; |
---|
1598 | mes "Wow!You got it all right!."; |
---|
1599 | mes "Fantastic!!!!"; |
---|
1600 | mes "For those of who "; |
---|
1601 | mes "got all right need no assignment"; |
---|
1602 | mes " "; |
---|
1603 | next; |
---|
1604 | mes "^800000[Radeng]^000000"; |
---|
1605 | mes "" + strcharinfo(0)+ ""; |
---|
1606 | mes "Have passed all tests."; |
---|
1607 | mes "Congratulations"; |
---|
1608 | mes "And this is your compensation "; |
---|
1609 | mes ""; |
---|
1610 | set quiz_rvl,18; |
---|
1611 | getitem 504,10; //White_Potion |
---|
1612 | next; |
---|
1613 | mes "^800000[Radeng]^000000"; |
---|
1614 | mes "Now, go look for"; |
---|
1615 | mes "^b8860b'Kantryl'^000000."; |
---|
1616 | mes "at Izlude."; |
---|
1617 | close; |
---|
1618 | |
---|
1619 | |
---|
1620 | M_No: |
---|
1621 | mes "^800000[Radeng]^000000"; |
---|
1622 | mes "Come back if you change your mind."; |
---|
1623 | close; |
---|
1624 | } else { |
---|
1625 | mes "^800000[Radeng]^000000"; |
---|
1626 | mes "Hello~~~"; |
---|
1627 | mes "Please join at comming"; |
---|
1628 | mes "Quiz Revolution~"; |
---|
1629 | mes "Register will be made"; |
---|
1630 | mes "by receptionist in every town."; |
---|
1631 | close; |
---|
1632 | } |
---|
1633 | M_MaxItem: |
---|
1634 | mes "^800000[Radeng]^000000"; |
---|
1635 | mes "- Wait a minute !! -"; |
---|
1636 | mes "- You currently have too many items that -"; |
---|
1637 | mes "- you can't receive an item. -"; |
---|
1638 | mes "- Please loose some weight -"; |
---|
1639 | mes "- and try again. -"; |
---|
1640 | close; |
---|
1641 | |
---|
1642 | L_OverWeight: |
---|
1643 | mes "^800000[Radeng]^000000"; |
---|
1644 | mes "- Wait a minute !! -"; |
---|
1645 | mes "- You currently have too many items that -"; |
---|
1646 | mes "- you can't receive an item. -"; |
---|
1647 | mes "- Please loose some weight -"; |
---|
1648 | mes "- and try again. -"; |
---|
1649 | close; |
---|
1650 | } |
---|
1651 | |
---|
1652 | //======================================================================================================================================================= |
---|
1653 | izlude,106,220,5 script Kantryl 98,{ |
---|
1654 | |
---|
1655 | if (countitem(1201) > 3) goto M_MaxItem; |
---|
1656 | if (checkweight(1201,3) == 0 ) goto L_OverWeight; |
---|
1657 | |
---|
1658 | |
---|
1659 | if(quiz_rvl == 20) { |
---|
1660 | mes "[Kantryl]"; |
---|
1661 | mes "I see that you have already givin me a"; |
---|
1662 | mes "notice of absence..."; |
---|
1663 | mes "Well, but I can't give you entry ticket."; |
---|
1664 | mes "who Knows~~"; |
---|
1665 | mes "Wait untill quiz starts"; |
---|
1666 | mes "You may catch a fortune."; |
---|
1667 | close; |
---|
1668 | |
---|
1669 | }else if(quiz_rvl == 19) { |
---|
1670 | mes "[Kantryl]"; |
---|
1671 | mes "You have already received an entry ticket."; |
---|
1672 | mes "It's impossible getting"; |
---|
1673 | mes "another one."; |
---|
1674 | next; |
---|
1675 | mes "[Kantryl]"; |
---|
1676 | mes "For reference, number of particapants are"; |
---|
1677 | next; |
---|
1678 | mes "[Kantryl]"; |
---|
1679 | mes "1st Quiz Revolution - " + quiz1 + "/200"; |
---|
1680 | mes "2nd Quiz Revolution - " + quiz2 + "/200"; |
---|
1681 | mes "3rd Quiz Revolution - " + quiz3 + "/200"; |
---|
1682 | mes "4th Quiz Revolution - " + quiz4 + "/200"; |
---|
1683 | mes "5th Quiz Revolution - " + quiz5 + "/200"; |
---|
1684 | mes "keep it in your mind."; |
---|
1685 | close; |
---|
1686 | |
---|
1687 | |
---|
1688 | } else if(quiz_rvl == 18) { |
---|
1689 | |
---|
1690 | mes "[Kantryl]"; |
---|
1691 | mes "You are " + strcharinfo(0)+ "."; |
---|
1692 | mes "Who finished the test.right?"; |
---|
1693 | mes "Would you please make a decision "; |
---|
1694 | mes "whether you will join or not join the"; |
---|
1695 | mes "Quiz Revolution."; |
---|
1696 | next; |
---|
1697 | mes "[Kantryl]"; |
---|
1698 | mes "Would you like to join?"; |
---|
1699 | mes "If you say yes, you can register at"; |
---|
1700 | mes "Quiz Revolution"; |
---|
1701 | mes "If you choose ^FF0000'NO,I won't join'^000000"; |
---|
1702 | mes " then ^FF0000'You can't join'^000000"; |
---|
1703 | mes "Please make a right decision."; |
---|
1704 | next; |
---|
1705 | mes "[Kantryl]"; |
---|
1706 | mes "If you haven't made up your mind,"; |
---|
1707 | mes "say yes for now"; |
---|
1708 | mes "and can change later on."; |
---|
1709 | mes "Take it easy."; |
---|
1710 | next; |
---|
1711 | menu "Join", -, "Not join.",NJ; |
---|
1712 | |
---|
1713 | |
---|
1714 | mes "[Kantryl]"; |
---|
1715 | mes "Itis to 1~5 round"; |
---|
1716 | mes "first 200 have chance."; |
---|
1717 | mes ""+ strcharinfo(0)+ ",when do you want to join?"; |
---|
1718 | mes "It is ^FF0000Impossible to cancel^000000"; |
---|
1719 | mes "So please make right decision."; |
---|
1720 | next; |
---|
1721 | mes "[Kantryl]"; |
---|
1722 | mes "1st Quiz Revolution - " + quiz1 + "/200"; |
---|
1723 | mes "2nd Quiz Revolution - " + quiz2 + "/200"; |
---|
1724 | mes "3rd Quiz Revolution - " + quiz3 + "/200"; |
---|
1725 | mes "4th Quiz Revolution - " + quiz4 + "/200"; |
---|
1726 | mes "5th Quiz Revolution - " + quiz5 + "/200"; |
---|
1727 | next; |
---|
1728 | menu "Join 1st round",-,"Join 2nd round",s2nd,"Join 3rd round",s3nd,"Join 4th round",s4nd,"Join 5th round",s5nd; |
---|
1729 | |
---|
1730 | if(quiz1 > 199){ |
---|
1731 | mes "[Kantryl]"; |
---|
1732 | mes "I'm sorry. We are all full at"; |
---|
1733 | mes "1st round of quiz revolution"; |
---|
1734 | mes "No more applicants for 1st round."; |
---|
1735 | close; |
---|
1736 | |
---|
1737 | } |
---|
1738 | mes "[Kantryl]"; |
---|
1739 | mes "Hm..."+ strcharinfo(0)+" "; |
---|
1740 | mes "I have received your application"; |
---|
1741 | mes "Try hard and study hard."; |
---|
1742 | set quiz_rvl,19; |
---|
1743 | set quiz1,quiz1 + 1; |
---|
1744 | getitem 7280,1; //Quiz_Ticket01 |
---|
1745 | close; |
---|
1746 | |
---|
1747 | |
---|
1748 | |
---|
1749 | |
---|
1750 | s2nd: |
---|
1751 | if(quiz2 > 199){ |
---|
1752 | mes "[Kantryl]"; |
---|
1753 | mes "I'm sorry. We are all full at"; |
---|
1754 | mes "2nd round of quiz revolution"; |
---|
1755 | mes "No more applicants for 2nd round."; |
---|
1756 | close; |
---|
1757 | } |
---|
1758 | |
---|
1759 | mes "[Kantryl]"; |
---|
1760 | mes "Hm..."+ strcharinfo(0)+""; |
---|
1761 | mes "I have received your application"; |
---|
1762 | mes "Try hard and study hard."; |
---|
1763 | set quiz_rvl,19; |
---|
1764 | set quiz2,quiz2 + 1; |
---|
1765 | getitem 7281,1; //Quiz_Ticket02 |
---|
1766 | close; |
---|
1767 | |
---|
1768 | |
---|
1769 | |
---|
1770 | s3nd: |
---|
1771 | if(quiz3 > 199){ |
---|
1772 | mes "[Kantryl]"; |
---|
1773 | mes "I'm sorry. We are all full at"; |
---|
1774 | mes "3rd round of quiz revolution."; |
---|
1775 | mes "No more applicants for 3rd round."; |
---|
1776 | close; |
---|
1777 | } |
---|
1778 | |
---|
1779 | |
---|
1780 | mes "[Kantryl]"; |
---|
1781 | mes "Hm..." + strcharinfo(0)+ ""; |
---|
1782 | mes "I have received your application."; |
---|
1783 | mes "Try hard and study hard."; |
---|
1784 | set quiz_rvl,19; |
---|
1785 | set quiz3,quiz3 + 1; |
---|
1786 | getitem 7282,1; //Quiz_Ticket03 |
---|
1787 | close; |
---|
1788 | |
---|
1789 | |
---|
1790 | |
---|
1791 | |
---|
1792 | s4nd: |
---|
1793 | if(quiz4 > 199){ |
---|
1794 | mes "[Kantryl]"; |
---|
1795 | mes "I'm sorry. We are all full at"; |
---|
1796 | mes "4th round of quiz revolution."; |
---|
1797 | mes "No more applicants for 4th round.."; |
---|
1798 | close; |
---|
1799 | } |
---|
1800 | |
---|
1801 | mes "[Kantryl]"; |
---|
1802 | mes "Hm..." + strcharinfo(0)+ ""; |
---|
1803 | mes "I have received your application."; |
---|
1804 | mes "Try hard and study hard."; |
---|
1805 | set quiz_rvl,19; |
---|
1806 | set quiz4,quiz4 + 1; |
---|
1807 | getitem 7283,1; //Quiz_Ticket04 |
---|
1808 | close; |
---|
1809 | |
---|
1810 | |
---|
1811 | |
---|
1812 | |
---|
1813 | s5nd: |
---|
1814 | if(quiz5 > 199){ |
---|
1815 | mes "[Kantryl]"; |
---|
1816 | mes "I'm sorry. We are all full at"; |
---|
1817 | mes "5th round of quiz revolution."; |
---|
1818 | mes "No more applicants for 5th round.."; |
---|
1819 | close; |
---|
1820 | } |
---|
1821 | |
---|
1822 | mes "[Kantryl]"; |
---|
1823 | mes "Hm..." + strcharinfo(0)+ ""; |
---|
1824 | mes "I have received your application."; |
---|
1825 | mes "Try hard and study hard."; |
---|
1826 | set quiz_rvl,19; |
---|
1827 | set quiz5,quiz5 + 1; |
---|
1828 | getitem 7284,1; //Quiz_Ticket05 |
---|
1829 | close; |
---|
1830 | |
---|
1831 | |
---|
1832 | |
---|
1833 | |
---|
1834 | NJ: |
---|
1835 | mes "[Kantryl]"; |
---|
1836 | mes "Ok,if that's how you think."; |
---|
1837 | mes "Choice is on you"; |
---|
1838 | mes "Good job any way."; |
---|
1839 | set quiz_rvl,20; |
---|
1840 | next; |
---|
1841 | mes "[Kantryl]"; |
---|
1842 | mes "Actually,we have plan to"; |
---|
1843 | mes "allowed for those of who didn't "; |
---|
1844 | mes "apply previously unless they have an entry ticket."; |
---|
1845 | mes "If you have any chance to get an entry ticket,"; |
---|
1846 | mes "you are always welcome."; |
---|
1847 | next; |
---|
1848 | mes "[Kantryl]"; |
---|
1849 | mes "Go ask for the ones"; |
---|
1850 | mes "who changed their mind."; |
---|
1851 | mes "If you are lucky,"; |
---|
1852 | mes "you'll get the chance."; |
---|
1853 | close; |
---|
1854 | } else { |
---|
1855 | mes "[Kantryl]"; |
---|
1856 | mes "Hello~"; |
---|
1857 | mes "I'm Kantryl=Ranegalf."; |
---|
1858 | mes "I help the ones who have passsed the test"; |
---|
1859 | mes "to take a formal step."; |
---|
1860 | next; |
---|
1861 | mes "[Kantryl]"; |
---|
1862 | mes "It is impossible to accept"; |
---|
1863 | mes "applications from those of who didn't"; |
---|
1864 | mes "finish the test."; |
---|
1865 | mes "Go look for our staff in every"; |
---|
1866 | mes "Midgarts"; |
---|
1867 | mes "and take a test."; |
---|
1868 | next; |
---|
1869 | mes "[Kantryl]"; |
---|
1870 | mes "At that time, I'll gladly"; |
---|
1871 | mes "welcome you and accept the application."; |
---|
1872 | close; |
---|
1873 | } |
---|
1874 | M_MaxItem: |
---|
1875 | mes "[Kantryl]"; |
---|
1876 | mes "- Wait a minute !! -"; |
---|
1877 | mes "- You currently have too many items that -"; |
---|
1878 | mes "- you can't receive an item. -"; |
---|
1879 | mes "- Please loose some weight -"; |
---|
1880 | mes "- and try again. -"; |
---|
1881 | close; |
---|
1882 | |
---|
1883 | L_OverWeight: |
---|
1884 | mes "[Kantryl]"; |
---|
1885 | mes "- Wait a minute !! -"; |
---|
1886 | mes "- You currently have too many items that -"; |
---|
1887 | mes "- you can't receive an item. -"; |
---|
1888 | mes "- Please loose some weight -"; |
---|
1889 | mes "- and try again. -"; |
---|
1890 | close; |
---|
1891 | } |
---|
1892 | |
---|
1893 | //============================================================================================================================ |
---|
1894 | quiz_test,387,350,4 script "From somewhere::race_monk 45,2,2,{ |
---|
1895 | OnTouch: |
---|
1896 | |
---|
1897 | if (quiz_rvl == 6) { |
---|
1898 | set quiz_rvl,7; |
---|
1899 | warp "quiz_test",385,388; |
---|
1900 | end; |
---|
1901 | }else if (quiz_rvl == 7) { |
---|
1902 | set quiz_rvl,8; |
---|
1903 | warp "quiz_test",385,388; |
---|
1904 | end; |
---|
1905 | }else if (quiz_rvl == 8) { |
---|
1906 | set quiz_rvl,9; |
---|
1907 | warp "quiz_test",385,388; |
---|
1908 | end; |
---|
1909 | }else if (quiz_rvl == 9) { |
---|
1910 | set quiz_rvl,10; |
---|
1911 | warp "quiz_test",385,388; |
---|
1912 | end; |
---|
1913 | }else if (quiz_rvl == 10) { |
---|
1914 | announce "You are almost there. Show me your spirit.",bc_blue|bc_map; |
---|
1915 | set quiz_rvl,11; |
---|
1916 | warp "quiz_test",385,388; |
---|
1917 | end; |
---|
1918 | }else if (quiz_rvl == 11) { |
---|
1919 | set quiz_rvl,12; |
---|
1920 | warp "quiz_test",385,388; |
---|
1921 | end; |
---|
1922 | }else if (quiz_rvl == 12) { |
---|
1923 | mes "[Seeil]"; |
---|
1924 | mes "You have worked hard and finished."; |
---|
1925 | mes "It wasn't that hard as you thought, huh?"; |
---|
1926 | mes "All you have to do is run in circle... Well,"; |
---|
1927 | mes "come in front of me."; |
---|
1928 | announce "Congratulations! " +strcharinfo(0)+ ", you have passed the test!",bc_blue|bc_map; |
---|
1929 | close2; |
---|
1930 | set quiz_rvl,13; |
---|
1931 | warp "payon",109,115; |
---|
1932 | end; |
---|
1933 | } |
---|
1934 | |
---|
1935 | } |
---|
1936 | //=============================hiddenwarp================================================================= |
---|
1937 | |
---|
1938 | //-----------------------------1111----------------------------------------------------------------------- |
---|
1939 | quiz_test,82,384,4 script Pit::ham_quiz#1-1 -1,0,0,{ |
---|
1940 | OnTouch: |
---|
1941 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1942 | warp "quiz_test",387,387; |
---|
1943 | end; |
---|
1944 | } |
---|
1945 | |
---|
1946 | quiz_test,83,384,4 script Pit::ham_quiz#1-2 -1,0,0,{ |
---|
1947 | OnTouch: |
---|
1948 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1949 | warp "quiz_test",387,387; |
---|
1950 | end; |
---|
1951 | } |
---|
1952 | |
---|
1953 | quiz_test,82,385,4 script Pit::ham_quiz#1-3 -1,0,0,{ |
---|
1954 | OnTouch: |
---|
1955 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1956 | warp "quiz_test",387,387; |
---|
1957 | end; |
---|
1958 | } |
---|
1959 | |
---|
1960 | quiz_test,83,385,4 script Pit::ham_quiz#1-4 -1,0,0,{ |
---|
1961 | OnTouch: |
---|
1962 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1963 | warp "quiz_test",387,387; |
---|
1964 | end; |
---|
1965 | } |
---|
1966 | //-----------------------------2222----------------------------------------------------------------------- |
---|
1967 | quiz_test,38,388,4 script Pit::ham_quiz#2-1 -1,0,1,{ |
---|
1968 | OnTouch: |
---|
1969 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1970 | warp "quiz_test",387,387; |
---|
1971 | end; |
---|
1972 | } |
---|
1973 | |
---|
1974 | quiz_test,39,388,4 script Pit::ham_quiz#2-2 -1,0,1,{ |
---|
1975 | OnTouch: |
---|
1976 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1977 | warp "quiz_test",387,387; |
---|
1978 | end; |
---|
1979 | } |
---|
1980 | |
---|
1981 | quiz_test,38,386,4 script Pit::ham_quiz#2-3 -1,0,0,{ |
---|
1982 | OnTouch: |
---|
1983 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1984 | warp "quiz_test",387,387; |
---|
1985 | end; |
---|
1986 | } |
---|
1987 | |
---|
1988 | quiz_test,39,386,4 script Pit::ham_quiz#2-4 -1,0,0,{ |
---|
1989 | OnTouch: |
---|
1990 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1991 | warp "quiz_test",387,387; |
---|
1992 | end; |
---|
1993 | } |
---|
1994 | //-----------------------------3333----------------------------------------------------------------------- |
---|
1995 | quiz_test,11,158,4 script Pit::ham_quiz#3-1 -1,1,0,{ |
---|
1996 | OnTouch: |
---|
1997 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
1998 | warp "quiz_test",387,387; |
---|
1999 | end; |
---|
2000 | } |
---|
2001 | |
---|
2002 | quiz_test,11,159,4 script Pit::ham_quiz#3-2 -1,1,0,{ |
---|
2003 | OnTouch: |
---|
2004 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2005 | warp "quiz_test",387,387; |
---|
2006 | end; |
---|
2007 | } |
---|
2008 | |
---|
2009 | quiz_test,13,159,4 script Pit::ham_quiz#3-3 -1,0,0,{ |
---|
2010 | OnTouch: |
---|
2011 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2012 | warp "quiz_test",387,387; |
---|
2013 | end; |
---|
2014 | } |
---|
2015 | |
---|
2016 | quiz_test,13,158,4 script Pit::ham_quiz#3-4 -1,0,0,{ |
---|
2017 | OnTouch: |
---|
2018 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2019 | warp "quiz_test",387,387; |
---|
2020 | end; |
---|
2021 | } |
---|
2022 | //-----------------------------4444----------------------------------------------------------------------- |
---|
2023 | quiz_test,11,30,4 script Pit::ham_quiz#4-1 -1,3,0,{ |
---|
2024 | OnTouch: |
---|
2025 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2026 | warp "quiz_test",387,387; |
---|
2027 | end; |
---|
2028 | } |
---|
2029 | |
---|
2030 | quiz_test,11,31,4 script Pit::ham_quiz#4-2 -1,3,0,{ |
---|
2031 | OnTouch: |
---|
2032 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2033 | warp "quiz_test",387,387; |
---|
2034 | end; |
---|
2035 | } |
---|
2036 | |
---|
2037 | quiz_test,15,30,4 script Pit::ham_quiz#4-3 -1,0,0,{ |
---|
2038 | OnTouch: |
---|
2039 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2040 | warp "quiz_test",387,387; |
---|
2041 | end; |
---|
2042 | } |
---|
2043 | |
---|
2044 | quiz_test,15,30,4 script Pit::ham_quiz#4-4 -1,0,0,{ |
---|
2045 | OnTouch: |
---|
2046 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2047 | warp "quiz_test",387,387; |
---|
2048 | end; |
---|
2049 | } |
---|
2050 | //-----------------------------5555----------------------------------------------------------------------- |
---|
2051 | quiz_test,70,12,4 script Pit::ham_quiz#5-1 -1,0,1,{ |
---|
2052 | OnTouch: |
---|
2053 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2054 | warp "quiz_test",387,387; |
---|
2055 | end; |
---|
2056 | } |
---|
2057 | |
---|
2058 | quiz_test,71,12,4 script Pit::ham_quiz#5-2 -1,0,1,{ |
---|
2059 | OnTouch: |
---|
2060 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2061 | warp "quiz_test",387,387; |
---|
2062 | end; |
---|
2063 | } |
---|
2064 | |
---|
2065 | quiz_test,70,10,4 script Pit::ham_quiz#5-3 -1,0,0,{ |
---|
2066 | OnTouch: |
---|
2067 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2068 | warp "quiz_test",387,387; |
---|
2069 | end; |
---|
2070 | } |
---|
2071 | |
---|
2072 | quiz_test,71,10,4 script Pit::ham_quiz#5-4 -1,0,0,{ |
---|
2073 | OnTouch: |
---|
2074 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2075 | warp "quiz_test",387,387; |
---|
2076 | end; |
---|
2077 | } |
---|
2078 | //---------------------------6666------------------------------------------------------------------------- |
---|
2079 | quiz_test,186,11,4 script Pit::ham_quiz#6-1 -1,2,3,{ |
---|
2080 | OnTouch: |
---|
2081 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2082 | warp "quiz_test",387,387; |
---|
2083 | end; |
---|
2084 | } |
---|
2085 | |
---|
2086 | quiz_test,189,11,4 script Pit::ham_quiz#6-2 -1,0,3,{ |
---|
2087 | OnTouch: |
---|
2088 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2089 | warp "quiz_test",387,387; |
---|
2090 | end; |
---|
2091 | } |
---|
2092 | //---------------------------7777------------------------------------------------------------------------- |
---|
2093 | quiz_test,387,43,4 script Pit::ham_quiz#7-1 -1,1,0,{ |
---|
2094 | OnTouch: |
---|
2095 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2096 | warp "quiz_test",387,387; |
---|
2097 | end; |
---|
2098 | } |
---|
2099 | |
---|
2100 | quiz_test,387,42,4 script Pit::ham_quiz#7-2 -1,1,0,{ |
---|
2101 | OnTouch: |
---|
2102 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2103 | warp "quiz_test",387,387; |
---|
2104 | end; |
---|
2105 | } |
---|
2106 | |
---|
2107 | quiz_test,389,43,4 script Pit::ham_quiz#7-3 -1,0,0,{ |
---|
2108 | OnTouch: |
---|
2109 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2110 | warp "quiz_test",387,387; |
---|
2111 | end; |
---|
2112 | } |
---|
2113 | |
---|
2114 | quiz_test,389,42,4 script Pit::ham_quiz#7-4 -1,0,0,{ |
---|
2115 | OnTouch: |
---|
2116 | announce ""+strcharinfo(0)+" Start running from the beginning. You fell in a pit.",bc_blue|bc_map; |
---|
2117 | warp "quiz_test",387,387; |
---|
2118 | end; |
---|
2119 | } |
---|
2120 | |
---|
2121 | //------------------------------------------------------------------------------------------------------------- |
---|
2122 | // Comments |
---|
2123 | // 0 = Didn't receive a quest from Tsuji |
---|
2124 | // 1 = Failed Tsuji's quest |
---|
2125 | // 2 = Pass Tsuji's quest and to 2nd round |
---|
2126 | // 3 = Seeil's randomly collecting job item quest 1 |
---|
2127 | // 4 = Seeil's randomly collecting job item quest |
---|
2128 | // 5 = Seeil's randomly collecting job item quest |
---|
2129 | // 6 = Clear with collecting job item. start Marathon test |
---|
2130 | // 7~12 =Checking Marathon quest occasionally. |
---|
2131 | // 13 = Use after clearing Marathon quest |
---|
2132 | // 14 = Clear 3rd quest, start Radeng(4th) quest |
---|
2133 | // 15 = check after reporting errors of Radeng |
---|
2134 | // 16 = randomly collecting job items at Radeng quest 1 |
---|
2135 | // 17 = randomly collecting job items at Radeng quest 2 |
---|
2136 | // 18 = Radeng quest clear. Possible time to apply. Begin Kantryl apply. |
---|
2137 | // 19 = checked if you show intention to join |
---|
2138 | // 20 = checked If you don't show intention to join |
---|
2139 | // 21 = 3 items for the one who gets compansation |
---|