quiz_qt.txt 60 KB

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