arena_mvp.txt 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105
  1. // ---- MVP ARENA!!!!!! By Darkchild with 16 diff MVP's inside
  2. // --- NPC in prontera
  3. prontera.gat,154,197,3 script MVP Warper 768,{
  4. mes "[ ^0065DFMVP Warper^000000 ]";
  5. mes "Would you like to go to the MVP Arena ?...";
  6. menu "Yes!",L_MVP,"No thanks.",L_No;
  7. L_MVP:
  8. warp "quiz_00",44,24;
  9. close;
  10. L_No:
  11. close;
  12. }
  13. // --- Inside the Arena
  14. // --- NPC's That explains thigns
  15. quiz_00.gat,49,31,4 script MVP Arena Guide 778,{
  16. menu "Intro",L_Intro,"I want to go back",L_Leave,"Heal me please",L_Heal,"Cancel",L_Cancel;
  17. L_Intro:
  18. mes "[ ^0065DFMVP Arena Guide^000000 ]";
  19. mes "Welcome and behold this sacred place, Here you will find out if you truly have what it takes to call yourself a warrior, and a Team mate.";
  20. next;
  21. mes "Here in [ ^0065DFSvRO^000000 ] we like to be a family, and as a family you learn you must help and assist one-another, so if you want to survive you should learn to Co-operate.";
  22. next;
  23. mes "There are Plenty of rooms with MVP's in them so don't all fight over the one room just cause you think it's the only one, just move to the next one.";
  24. next;
  25. mes "If you can't get along, and there is too much complaining about people stealing MVP kills and items... then this place will be removed.";
  26. next;
  27. mes "Now the npc's are in groups of monsters, there are 4 different mvps per each npc, i wont tell you which it's a surprise hehe.";
  28. next;
  29. mes "Good luck, Live long and Prosper!.";
  30. close;
  31. L_Leave:
  32. warp "prontera",156,179;
  33. close;
  34. L_Heal:
  35. Heal 32500,32500;
  36. close;
  37. L_Cancel:
  38. close;
  39. }
  40. // --- The first Alpha-MVP warper
  41. quiz_00.gat,56,31,4 script Alpha MVP 770,{
  42. mes "[ ^0065DFAlpha MVP^000000 ]";
  43. mes "I am the first Keeper, are you ready?.";
  44. menu "Yes!",L_Yes,"Urrr No.",L_No;
  45. L_Yes:
  46. mes "[ ^0065DFAlpha MVP^000000 ]";
  47. mes "Which Arena you want to go to??";
  48. menu "Arena 1 [" + getmapusers("pvp_n_1-2.gat") + " / 50]",Larena1,
  49. "Arena 2 [" + getmapusers("pvp_n_2-2.gat") + " / 50]",Larena2,
  50. "Arena 3 [" + getmapusers("pvp_n_3-2.gat") + " / 15]",Larena3,
  51. "Arena 4 [" + getmapusers("pvp_n_4-2.gat") + " / 15]",Larena4,
  52. "Arena 5 [" + getmapusers("pvp_n_5-2.gat") + " / 15]",Larena5,
  53. "Arena 6 [" + getmapusers("pvp_n_2-2.gat") + " / 15]",Larena6,
  54. "Arena 7 [" + getmapusers("pvp_n_3-2.gat") + " / 15]",Larena7,
  55. "Arena 8 [" + getmapusers("pvp_n_4-2.gat") + " / 15]",Larena8,
  56. "Quit",Lcancel;
  57. L_No:
  58. close;
  59. Larena1:
  60. if (getmapusers("pvp_n_1-2.gat") > 49) goto Lsorry;
  61. mes "[ ^0065DFAlpha MVP^000000 ]";
  62. mes "Here you go!";
  63. warp "pvp_n_1-2",102,102;
  64. close;
  65. Larena2:
  66. if (getmapusers("pvp_n_2-2.gat") > 49) goto Lsorry;
  67. mes "[ ^0065DFAlpha MVP^000000 ]";
  68. mes "Here you go!";
  69. warp "pvp_n_2-2",102,102;
  70. close;
  71. Larena3:
  72. if (getmapusers("pvp_n_3-2.gat") > 14) goto Lsorry;
  73. mes "[ ^0065DFAlpha MVP^000000 ]";
  74. mes "Here you go!";
  75. warp "pvp_n_3-2",102,102;
  76. close;
  77. Larena4:
  78. if (getmapusers("pvp_n_4-2.gat") > 14) goto Lsorry;
  79. mes "[ ^0065DFAlpha MVP^000000 ]";
  80. mes "Here you go!";
  81. warp "pvp_n_4-2",102,102;
  82. close;
  83. Larena5:
  84. if (getmapusers("pvp_n_5-2.gat") > 14) goto Lsorry;
  85. mes "[ ^0065DFAlpha MVP^000000 ]";
  86. mes "Here you go!";
  87. warp "pvp_n_5-2",102,102;
  88. close;
  89. Larena6:
  90. if (getmapusers("pvp_n_6-2.gat") > 14) goto Lsorry;
  91. mes "[ ^0065DFAlpha MVP^000000 ]";
  92. mes "Here you go!";
  93. warp "pvp_n_6-2",102,102;
  94. close;
  95. Larena7:
  96. if (getmapusers("pvp_n_7-2.gat") > 14) goto Lsorry;
  97. mes "[ ^0065DFAlpha MVP^000000 ]";
  98. mes "Here you go!";
  99. warp "pvp_n_7-2",102,102;
  100. close;
  101. Larena8:
  102. if (getmapusers("pvp_n_8-2.gat") > 14) goto Lsorry;
  103. mes "[ ^0065DFAlpha MVP^000000 ]";
  104. mes "Here you go!";
  105. warp "pvp_n_8-2",102,102;
  106. close;
  107. Lsorry:
  108. mes "[ ^0065DFAlpha MVP^000000 ]";
  109. mes "Sorry but this Arena is already full, maybe you can try another one!";
  110. close;
  111. }
  112. // --- The first Beta-MVP warper
  113. quiz_00.gat,58,31,4 script Beta MVP 773,{
  114. mes "[ ^0065DFAlpha MVP^000000 ]";
  115. mes "I am the first Keeper, are you ready?.";
  116. menu "Yes!",L_Yes,"Urrr No.",L_No;
  117. L_Yes:
  118. mes "[ ^0065DFBeta MVP^000000 ]";
  119. mes "Which Arena you want to go to??";
  120. menu "Arena 1 [" + getmapusers("pvp_n_1-3.gat") + " / 50]",Larena1,
  121. "Arena 2 [" + getmapusers("pvp_n_2-3.gat") + " / 15]",Larena2,
  122. "Arena 3 [" + getmapusers("pvp_n_3-3.gat") + " / 15]",Larena3,
  123. "Arena 4 [" + getmapusers("pvp_n_4-3.gat") + " / 15]",Larena4,
  124. "Arena 5 [" + getmapusers("pvp_n_5-3.gat") + " / 15]",Larena5,
  125. "Arena 6 [" + getmapusers("pvp_n_2-3.gat") + " / 15]",Larena6,
  126. "Arena 7 [" + getmapusers("pvp_n_3-3.gat") + " / 15]",Larena7,
  127. "Arena 8 [" + getmapusers("pvp_n_4-3.gat") + " / 15]",Larena8,
  128. "Quit",Lcancel;
  129. L_No:
  130. close;
  131. Larena1:
  132. if (getmapusers("pvp_n_1-3.gat") > 49) goto Lsorry;
  133. mes "[ ^0065DFBeta MVP^000000 ]";
  134. mes "Here you go!";
  135. warp "pvp_n_1-3",102,102;
  136. close;
  137. Larena2:
  138. if (getmapusers("pvp_n_2-3.gat") > 14) goto Lsorry;
  139. mes "[ ^0065DFBeta MVP^000000 ]";
  140. mes "Here you go!";
  141. warp "pvp_n_2-3",102,102;
  142. close;
  143. Larena3:
  144. if (getmapusers("pvp_n_3-3.gat") > 14) goto Lsorry;
  145. mes "[ ^0065DFBeta MVP^000000 ]";
  146. mes "Here you go!";
  147. warp "pvp_n_3-3",102,102;
  148. close;
  149. Larena4:
  150. if (getmapusers("pvp_n_4-3.gat") > 14) goto Lsorry;
  151. mes "[ ^0065DFBeta MVP^000000 ]";
  152. mes "Here you go!";
  153. warp "pvp_n_4-3.gat",102,102;
  154. close;
  155. Larena5:
  156. if (getmapusers("pvp_n_5-3.gat") > 14) goto Lsorry;
  157. mes "[ ^0065DFBeta MVP^000000 ]";
  158. mes "Here you go!";
  159. warp "pvp_n_5-3.gat",102,102;
  160. close;
  161. Larena6:
  162. if (getmapusers("pvp_n_6-3.gat") > 14) goto Lsorry;
  163. mes "[ ^0065DFBeta MVP^000000 ]";
  164. mes "Here you go!";
  165. warp "pvp_n_6-3.gat",102,102;
  166. close;
  167. Larena7:
  168. if (getmapusers("pvp_n_7-3.gat") > 14) goto Lsorry;
  169. mes "[ ^0065DFBeta MVP^000000 ]";
  170. mes "Here you go!";
  171. warp "pvp_n_7-3.gat",102,102;
  172. close;
  173. Larena8:
  174. if (getmapusers("pvp_n_8-3.gat") > 14) goto Lsorry;
  175. mes "[ ^0065DFBeta MVP^000000 ]";
  176. mes "Here you go!";
  177. warp "pvp_n_8-3.gat",102,102;
  178. close;
  179. Lsorry:
  180. mes "[ ^0065DFBeta MVP^000000 ]";
  181. mes "Sorry but this Arena is already full, maybe you can try another one!";
  182. close;
  183. }
  184. // --- The first Theta-MVP warper
  185. quiz_00.gat,60,31,4 script Theta MVP 774,{
  186. mes "[ ^0065DFTheta MVP^000000 ]";
  187. mes "I am the first Keeper, are you ready?.";
  188. menu "Yes!",L_Yes,"Urrr No.",L_No;
  189. L_Yes:
  190. mes "[ ^0065DFTheta MVP^000000 ]";
  191. mes "Which Arena you want to go to??";
  192. menu "Arena 1 [" + getmapusers("pvp_n_1-4.gat") + " / 50]",Larena1,
  193. "Arena 2 [" + getmapusers("pvp_n_2-4.gat") + " / 15]",Larena2,
  194. "Arena 3 [" + getmapusers("pvp_n_3-4.gat") + " / 15]",Larena3,
  195. "Arena 4 [" + getmapusers("pvp_n_4-4.gat") + " / 15]",Larena4,
  196. "Arena 5 [" + getmapusers("pvp_n_5-4.gat") + " / 15]",Larena5,
  197. "Arena 6 [" + getmapusers("pvp_n_2-4.gat") + " / 15]",Larena6,
  198. "Arena 7 [" + getmapusers("pvp_n_3-4.gat") + " / 15]",Larena7,
  199. "Arena 8 [" + getmapusers("pvp_n_4-4.gat") + " / 15]",Larena8,
  200. "Quit",Lcancel;
  201. L_No:
  202. close;
  203. Larena1:
  204. if (getmapusers("pvp_n_1-4.gat") > 49) goto Lsorry;
  205. mes "[ ^0065DFTheta MVP^000000 ]";
  206. mes "Here you go!";
  207. warp "pvp_n_1-4.gat",102,102;
  208. close;
  209. Larena2:
  210. if (getmapusers("pvp_n_2-4.gat") > 14) goto Lsorry;
  211. mes "[ ^0065DFTheta MVP^000000 ]";
  212. mes "Here you go!";
  213. warp "pvp_n_2-4.gat",102,102;
  214. close;
  215. Larena3:
  216. if (getmapusers("pvp_n_3-4.gat") > 14) goto Lsorry;
  217. mes "[ ^0065DFTheta MVP^000000 ]";
  218. mes "Here you go!";
  219. warp "pvp_n_3-4.gat",102,102;
  220. close;
  221. Larena4:
  222. if (getmapusers("pvp_n_4-4.gat") > 14) goto Lsorry;
  223. mes "[ ^0065DFTheta MVP^000000 ]";
  224. mes "Here you go!";
  225. warp "pvp_n_4-4.gat",102,102;
  226. close;
  227. Larena5:
  228. if (getmapusers("pvp_n_5-4.gat") > 14) goto Lsorry;
  229. mes "[ ^0065DFTheta MVP^000000 ]";
  230. mes "Here you go!";
  231. warp "pvp_n_5-4.gat",102,102;
  232. close;
  233. Larena6:
  234. if (getmapusers("pvp_n_6-4.gat") > 14) goto Lsorry;
  235. mes "[ ^0065DFTheta MVP^000000 ]";
  236. mes "Here you go!";
  237. warp "pvp_n_6-4.gat",102,102;
  238. close;
  239. Larena7:
  240. if (getmapusers("pvp_n_7-4.gat") > 14) goto Lsorry;
  241. mes "[ ^0065DFTheta MVP^000000 ]";
  242. mes "Here you go!";
  243. warp "pvp_n_7-4.gat",102,102;
  244. close;
  245. Larena8:
  246. if (getmapusers("pvp_n_8-4.gat") > 14) goto Lsorry;
  247. mes "[ ^0065DFTheta MVP^000000 ]";
  248. mes "Here you go!";
  249. warp "pvp_n_8-4.gat",102,102;
  250. close;
  251. Lsorry:
  252. mes "[ ^0065DFTheta MVP^000000 ]";
  253. mes "Sorry but this Arena is already full, maybe you can try another one!";
  254. close;
  255. }
  256. // --- The first Epsilon-MVP warper
  257. quiz_00.gat,62,31,4 script Epsilon MVP 776,{
  258. mes "[ ^0065DFEpsilon MVP^000000 ]";
  259. mes "I am the first Keeper, are you ready?.";
  260. menu "Yes!",L_Yes,"Urrr No.",L_No;
  261. L_Yes:
  262. mes "[ ^0065DFEpsilon MVP^000000 ]";
  263. mes "Which Arena you want to go to??";
  264. menu "Arena 1 [" + getmapusers("pvp_n_1-5.gat") + " / 50]",Larena1,
  265. "Arena 2 [" + getmapusers("pvp_n_2-5.gat") + " / 15]",Larena2,
  266. "Arena 3 [" + getmapusers("pvp_n_3-5.gat") + " / 15]",Larena3,
  267. "Arena 4 [" + getmapusers("pvp_n_4-5.gat") + " / 15]",Larena4,
  268. "Arena 5 [" + getmapusers("pvp_n_5-5.gat") + " / 15]",Larena5,
  269. "Arena 6 [" + getmapusers("pvp_n_2-5.gat") + " / 15]",Larena6,
  270. "Arena 7 [" + getmapusers("pvp_n_3-5.gat") + " / 15]",Larena7,
  271. "Arena 8 [" + getmapusers("pvp_n_4-5.gat") + " / 15]",Larena8,
  272. "Quit",Lcancel;
  273. L_No:
  274. close;
  275. Larena1:
  276. if (getmapusers("pvp_n_1-5.gat") > 49) goto Lsorry;
  277. mes "[ ^0065DFEpsilon MVP^000000 ]";
  278. mes "Here you go!";
  279. warp "pvp_n_1-5.gat",102,102;
  280. close;
  281. Larena2:
  282. if (getmapusers("pvp_n_2-5.gat") > 14) goto Lsorry;
  283. mes "[ ^0065DFEpsilon MVP^000000 ]";
  284. mes "Here you go!";
  285. warp "pvp_n_2-5.gat",102,102;
  286. close;
  287. Larena3:
  288. if (getmapusers("pvp_n_3-5.gat") > 14) goto Lsorry;
  289. mes "[ ^0065DFEpsilon MVP^000000 ]";
  290. mes "Here you go!";
  291. warp "pvp_n_3-5.gat",102,102;
  292. close;
  293. Larena4:
  294. if (getmapusers("pvp_n_4-5.gat") > 14) goto Lsorry;
  295. mes "[ ^0065DFEpsilon MVP^000000 ]";
  296. mes "Here you go!";
  297. warp "pvp_n_4-5.gat",102,102;
  298. close;
  299. Larena5:
  300. if (getmapusers("pvp_n_5-5.gat") > 14) goto Lsorry;
  301. mes "[ ^0065DFEpsilon MVP^000000 ]";
  302. mes "Here you go!";
  303. warp "pvp_n_5-5.gat",102,102;
  304. close;
  305. Larena6:
  306. if (getmapusers("pvp_n_6-5.gat") > 14) goto Lsorry;
  307. mes "[ ^0065DFEpsilon MVP^000000 ]";
  308. mes "Here you go!";
  309. warp "pvp_n_6-5.gat",102,102;
  310. close;
  311. Larena7:
  312. if (getmapusers("pvp_n_7-5.gat") > 14) goto Lsorry;
  313. mes "[ ^0065DFEpsilon MVP^000000 ]";
  314. mes "Here you go!";
  315. warp "pvp_n_7-5.gat",102,102;
  316. close;
  317. Larena8:
  318. if (getmapusers("pvp_n_8-5.gat") > 14) goto Lsorry;
  319. mes "[ ^0065DFEpsilon MVP^000000 ]";
  320. mes "Here you go!";
  321. warp "pvp_n_8-5.gat",102,102;
  322. close;
  323. Lsorry:
  324. mes "[ ^0065DFEpsilon MVP^000000 ]";
  325. mes "Sorry but this Arena is already full, maybe you can try another one!";
  326. close;
  327. }
  328. // ---- Inside MVP-Arena NPC's
  329. // --- Alpha-MVP #1
  330. pvp_n_1-2.gat,100,100,4 script MVP-Protector 727,{
  331. mes "[ ^0065DFMVP-Protector^000000 ]";
  332. mes "How do you need help?.";
  333. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  334. L_Next:
  335. warp "pvp_n_2-2",102,102;
  336. close;
  337. L_Heal:
  338. Heal 32500,32500;
  339. close;
  340. L_Leave:
  341. warp "prontera",156,179;
  342. close;
  343. }
  344. // --- Alpha-MVP #2
  345. pvp_n_2-2.gat,100,100,4 script MVP-Protector 727,{
  346. mes "[ ^0065DFMVP-Protector^000000 ]";
  347. mes "How do you need help?.";
  348. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  349. L_Next:
  350. warp "pvp_n_3-2",102,102;
  351. close;
  352. L_Heal:
  353. Heal 32500,32500;
  354. close;
  355. L_Leave:
  356. warp "prontera",156,179;
  357. close;
  358. }
  359. // --- Alpha-MVP #3
  360. pvp_n_3-2.gat,100,100,4 script MVP-Protector 727,{
  361. mes "[ ^0065DFMVP-Protector^000000 ]";
  362. mes "How do you need help?.";
  363. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  364. L_Next:
  365. warp "pvp_n_4-2.gat",102,102;
  366. close;
  367. L_Heal:
  368. Heal 32500,32500;
  369. close;
  370. L_Leave:
  371. warp "prontera.gat",156,179;
  372. close;
  373. }
  374. // --- Alpha-MVP #4
  375. pvp_n_4-2.gat,100,100,4 script MVP-Protector 727,{
  376. mes "[ ^0065DFMVP-Protector^000000 ]";
  377. mes "How do you need help?.";
  378. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  379. L_Next:
  380. warp "pvp_n_5-2.gat",102,102;
  381. close;
  382. L_Heal:
  383. Heal 32500,32500;
  384. close;
  385. L_Leave:
  386. warp "prontera.gat",156,179;
  387. close;
  388. }
  389. // --- Alpha-MVP #5
  390. pvp_n_5-2.gat,100,100,4 script MVP-Protector 727,{
  391. mes "[ ^0065DFMVP-Protector^000000 ]";
  392. mes "How do you need help?.";
  393. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  394. L_Next:
  395. warp "pvp_n_6-2.gat",102,102;
  396. close;
  397. L_Heal:
  398. Heal 32500,32500;
  399. close;
  400. L_Leave:
  401. warp "prontera.gat",156,179;
  402. close;
  403. }
  404. // --- Alpha-MVP #6
  405. pvp_n_6-2.gat,100,100,4 script MVP-Protector 727,{
  406. mes "[ ^0065DFMVP-Protector^000000 ]";
  407. mes "How do you need help?.";
  408. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  409. L_Next:
  410. warp "pvp_n_7-2.gat",102,102;
  411. close;
  412. L_Heal:
  413. Heal 32500,32500;
  414. close;
  415. L_Leave:
  416. warp "prontera.gat",156,179;
  417. close;
  418. }
  419. // --- Alpha-MVP #7
  420. pvp_n_7-2.gat,100,100,4 script MVP-Protector 727,{
  421. mes "[ ^0065DFMVP-Protector^000000 ]";
  422. mes "How do you need help?.";
  423. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  424. L_Next:
  425. warp "pvp_n_8-2.gat",102,102;
  426. close;
  427. L_Heal:
  428. Heal 32500,32500;
  429. close;
  430. L_Leave:
  431. warp "prontera.gat",156,179;
  432. close;
  433. }
  434. // --- Alpha-MVP #8
  435. pvp_n_8-2.gat,100,100,4 script MVP-Protector 727,{
  436. mes "[ ^0065DFMVP-Protector^000000 ]";
  437. mes "How do you need help?.";
  438. menu "Heal Please",L_Heal,"Leave",L_Leave;
  439. L_Heal:
  440. Heal 32500,32500;
  441. close;
  442. L_Leave:
  443. warp "prontera.gat",156,179;
  444. close;
  445. }
  446. // --- Beta-MVP #1
  447. pvp_n_1-3.gat,100,100,4 script MVP-Protector 727,{
  448. mes "[ ^0065DFMVP-Protector^000000 ]";
  449. mes "How do you need help?.";
  450. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  451. L_Next:
  452. warp "pvp_n_2-3.gat",102,102;
  453. close;
  454. L_Heal:
  455. Heal 32500,32500;
  456. close;
  457. L_Leave:
  458. warp "prontera.gat",156,179;
  459. close;
  460. }
  461. // --- Beta-MVP #2
  462. pvp_n_2-3.gat,100,100,4 script MVP-Protector 727,{
  463. mes "[ ^0065DFMVP-Protector^000000 ]";
  464. mes "How do you need help?.";
  465. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  466. L_Next:
  467. warp "pvp_n_3-3.gat",102,102;
  468. close;
  469. L_Heal:
  470. Heal 32500,32500;
  471. close;
  472. L_Leave:
  473. warp "prontera.gat",156,179;
  474. close;
  475. }
  476. // --- Beta-MVP #3
  477. pvp_n_3-3.gat,100,100,4 script MVP-Protector 727,{
  478. mes "[ ^0065DFMVP-Protector^000000 ]";
  479. mes "How do you need help?.";
  480. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  481. L_Next:
  482. warp "pvp_n_4-3.gat",102,102;
  483. close;
  484. L_Heal:
  485. Heal 32500,32500;
  486. close;
  487. L_Leave:
  488. warp "prontera.gat",156,179;
  489. close;
  490. }
  491. // --- Beta-MVP #4
  492. pvp_n_4-3.gat,100,100,4 script MVP-Protector 727,{
  493. mes "[ ^0065DFMVP-Protector^000000 ]";
  494. mes "How do you need help?.";
  495. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  496. L_Next:
  497. warp "pvp_n_5-3.gat",102,102;
  498. close;
  499. L_Heal:
  500. Heal 32500,32500;
  501. close;
  502. L_Leave:
  503. warp "prontera.gat",156,179;
  504. close;
  505. }
  506. // --- Beta-MVP #5
  507. pvp_n_5-3.gat,100,100,4 script MVP-Protector 727,{
  508. mes "[ ^0065DFMVP-Protector^000000 ]";
  509. mes "How do you need help?.";
  510. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  511. L_Next:
  512. warp "pvp_n_6-3.gat",102,102;
  513. close;
  514. L_Heal:
  515. Heal 32500,32500;
  516. close;
  517. L_Leave:
  518. warp "prontera.gat",156,179;
  519. close;
  520. }
  521. // --- Beta-MVP #6
  522. pvp_n_6-3.gat,100,100,4 script MVP-Protector 727,{
  523. mes "[ ^0065DFMVP-Protector^000000 ]";
  524. mes "How do you need help?.";
  525. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  526. L_Next:
  527. warp "pvp_n_7-3.gat",102,102;
  528. close;
  529. L_Heal:
  530. Heal 32500,32500;
  531. close;
  532. L_Leave:
  533. warp "prontera.gat",156,179;
  534. close;
  535. }
  536. // --- Beta-MVP #7
  537. pvp_n_7-3.gat,100,100,4 script MVP-Protector 727,{
  538. mes "[ ^0065DFMVP-Protector^000000 ]";
  539. mes "How do you need help?.";
  540. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  541. L_Next:
  542. warp "pvp_n_8-3.gat",102,102;
  543. close;
  544. L_Heal:
  545. Heal 32500,32500;
  546. close;
  547. L_Leave:
  548. warp "prontera.gat",156,179;
  549. close;
  550. }
  551. // --- Beta-MVP #8
  552. pvp_n_8-3.gat,100,100,4 script MVP-Protector 727,{
  553. mes "[ ^0065DFMVP-Protector^000000 ]";
  554. mes "How do you need help?.";
  555. menu "Heal Please",L_Heal,"Leave",L_Leave;
  556. L_Heal:
  557. Heal 32500,32500;
  558. close;
  559. L_Leave:
  560. warp "prontera.gat",156,179;
  561. close;
  562. }
  563. // --- Theta-MVP #1
  564. pvp_n_1-4.gat,100,100,4 script MVP-Protector 727,{
  565. mes "[ ^0065DFMVP-Protector^000000 ]";
  566. mes "How do you need help?.";
  567. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  568. L_Next:
  569. warp "pvp_n_2-4.gat",102,102;
  570. close;
  571. L_Heal:
  572. Heal 32500,32500;
  573. close;
  574. L_Leave:
  575. warp "prontera.gat",156,179;
  576. close;
  577. }
  578. // --- Theta-MVP #2
  579. pvp_n_2-4.gat,100,100,4 script MVP-Protector 727,{
  580. mes "[ ^0065DFMVP-Protector^000000 ]";
  581. mes "How do you need help?.";
  582. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  583. L_Next:
  584. warp "pvp_n_3-4.gat",102,102;
  585. close;
  586. L_Heal:
  587. Heal 32500,32500;
  588. close;
  589. L_Leave:
  590. warp "prontera.gat",156,179;
  591. close;
  592. }
  593. // --- Theta-MVP #3
  594. pvp_n_3-4.gat,100,100,4 script MVP-Protector 727,{
  595. mes "[ ^0065DFMVP-Protector^000000 ]";
  596. mes "How do you need help?.";
  597. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  598. L_Next:
  599. warp "pvp_n_4-4.gat",102,102;
  600. close;
  601. L_Heal:
  602. Heal 32500,32500;
  603. close;
  604. L_Leave:
  605. warp "prontera.gat",156,179;
  606. close;
  607. }
  608. // --- Theta-MVP #4
  609. pvp_n_4-4.gat,100,100,4 script MVP-Protector 727,{
  610. mes "[ ^0065DFMVP-Protector^000000 ]";
  611. mes "How do you need help?.";
  612. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  613. L_Next:
  614. warp "pvp_n_5-4.gat",102,102;
  615. close;
  616. L_Heal:
  617. Heal 32500,32500;
  618. close;
  619. L_Leave:
  620. warp "prontera.gat",156,179;
  621. close;
  622. }
  623. // --- Theta-MVP #5
  624. pvp_n_5-4.gat,100,100,4 script MVP-Protector 727,{
  625. mes "[ ^0065DFMVP-Protector^000000 ]";
  626. mes "How do you need help?.";
  627. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  628. L_Next:
  629. warp "pvp_n_6-4.gat",102,102;
  630. close;
  631. L_Heal:
  632. Heal 32500,32500;
  633. close;
  634. L_Leave:
  635. warp "prontera.gat",156,179;
  636. close;
  637. }
  638. // --- Theta-MVP #6
  639. pvp_n_6-4.gat,100,100,4 script MVP-Protector 727,{
  640. mes "[ ^0065DFMVP-Protector^000000 ]";
  641. mes "How do you need help?.";
  642. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  643. L_Next:
  644. warp "pvp_n_7-4.gat",102,102;
  645. close;
  646. L_Heal:
  647. Heal 32500,32500;
  648. close;
  649. L_Leave:
  650. warp "prontera.gat",156,179;
  651. close;
  652. }
  653. // --- Theta-MVP #7
  654. pvp_n_7-4.gat,100,100,4 script MVP-Protector 727,{
  655. mes "[ ^0065DFMVP-Protector^000000 ]";
  656. mes "How do you need help?.";
  657. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  658. L_Next:
  659. warp "pvp_n_8-4.gat",102,102;
  660. close;
  661. L_Heal:
  662. Heal 32500,32500;
  663. close;
  664. L_Leave:
  665. warp "prontera.gat",156,179;
  666. close;
  667. }
  668. // --- Theta-MVP #8
  669. pvp_n_8-4.gat,100,100,4 script MVP-Protector 727,{
  670. mes "[ ^0065DFMVP-Protector^000000 ]";
  671. mes "How do you need help?.";
  672. menu "Heal Please",L_Heal,"Leave",L_Leave;
  673. L_Heal:
  674. Heal 32500,32500;
  675. close;
  676. L_Leave:
  677. warp "prontera.gat",156,179;
  678. close;
  679. }
  680. // --- Epsilon-MVP #1
  681. pvp_n_1-5.gat,100,100,4 script MVP-Protector 727,{
  682. mes "[ ^0065DFMVP-Protector^000000 ]";
  683. mes "How do you need help?.";
  684. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  685. L_Next:
  686. warp "pvp_n_2-5.gat",102,102;
  687. close;
  688. L_Heal:
  689. Heal 32500,32500;
  690. close;
  691. L_Leave:
  692. warp "prontera.gat",156,179;
  693. close;
  694. }
  695. // --- Epsilon-MVP #2
  696. pvp_n_2-5.gat,100,100,4 script MVP-Protector 727,{
  697. mes "[ ^0065DFMVP-Protector^000000 ]";
  698. mes "How do you need help?.";
  699. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  700. L_Next:
  701. warp "pvp_n_3-5.gat",102,102;
  702. close;
  703. L_Heal:
  704. Heal 32500,32500;
  705. close;
  706. L_Leave:
  707. warp "prontera.gat",156,179;
  708. close;
  709. }
  710. // --- Epsilon-MVP #3
  711. pvp_n_3-5.gat,100,100,4 script MVP-Protector 727,{
  712. mes "[ ^0065DFMVP-Protector^000000 ]";
  713. mes "How do you need help?.";
  714. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  715. L_Next:
  716. warp "pvp_n_4-5.gat",102,102;
  717. close;
  718. L_Heal:
  719. Heal 32500,32500;
  720. close;
  721. L_Leave:
  722. warp "prontera.gat",156,179;
  723. close;
  724. }
  725. // --- Epsilon-MVP #4
  726. pvp_n_4-5.gat,100,100,4 script MVP-Protector 727,{
  727. mes "[ ^0065DFMVP-Protector^000000 ]";
  728. mes "How do you need help?.";
  729. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  730. L_Next:
  731. warp "pvp_n_5-5.gat",102,102;
  732. close;
  733. L_Heal:
  734. Heal 32500,32500;
  735. close;
  736. L_Leave:
  737. warp "prontera.gat",156,179;
  738. close;
  739. }
  740. // --- Epsilon-MVP #5
  741. pvp_n_5-5.gat,100,100,4 script MVP-Protector 727,{
  742. mes "[ ^0065DFMVP-Protector^000000 ]";
  743. mes "How do you need help?.";
  744. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  745. L_Next:
  746. warp "pvp_n_6-5.gat",102,102;
  747. close;
  748. L_Heal:
  749. Heal 32500,32500;
  750. close;
  751. L_Leave:
  752. warp "prontera.gat",156,179;
  753. close;
  754. }
  755. // --- Epsilon-MVP #6
  756. pvp_n_6-5.gat,100,100,4 script MVP-Protector 727,{
  757. mes "[ ^0065DFMVP-Protector^000000 ]";
  758. mes "How do you need help?.";
  759. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  760. L_Next:
  761. warp "pvp_n_7-5.gat",102,102;
  762. close;
  763. L_Heal:
  764. Heal 32500,32500;
  765. close;
  766. L_Leave:
  767. warp "prontera.gat",156,179;
  768. close;
  769. }
  770. // --- Epsilon-MVP #7
  771. pvp_n_7-5.gat,100,100,4 script MVP-Protector 727,{
  772. mes "[ ^0065DFMVP-Protector^000000 ]";
  773. mes "How do you need help?.";
  774. menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;
  775. L_Next:
  776. warp "pvp_n_8-5.gat",102,102;
  777. close;
  778. L_Heal:
  779. Heal 32500,32500;
  780. close;
  781. L_Leave:
  782. warp "prontera.gat",156,179;
  783. close;
  784. }
  785. // --- Epsilon-MVP #8
  786. pvp_n_8-5.gat,100,100,4 script MVP-Protector 727,{
  787. mes "[ ^0065DFMVP-Protector^000000 ]";
  788. mes "How do you need help?.";
  789. menu "Heal Please",L_Heal,"Leave",L_Leave;
  790. L_Heal:
  791. Heal 32500,32500;
  792. close;
  793. L_Leave:
  794. warp "prontera.gat",156,179;
  795. close;
  796. }
  797. // ---- Monsters for the MVP-Arena
  798. // --- Alpha-MVP Maps
  799. // --- First Alpha-MVP area
  800. pvp_n_1-2.gat,0,0,0,0 monster Eddga 1115,3,60000,66000
  801. pvp_n_1-2.gat,0,0,0,0 monster Mistress 1059,1,60000,66000
  802. // --- Second Alpha-MVP area
  803. pvp_n_2-2.gat,0,0,0,0 monster Mistress 1059,3,60000,66000
  804. pvp_n_2-2.gat,0,0,0,0 monster Moonlight 1150,1,60000,66000
  805. // --- Third Alpha-MVP area
  806. pvp_n_3-2.gat,0,0,0,0 monster Mistress 1059,1,60000,66000
  807. pvp_n_3-2.gat,0,0,0,0 monster Moonlight 1150,2,60000,66000
  808. pvp_n_3-2.gat,0,0,0,0 monster Maya 1147,1,60000,66000
  809. // --- Fourth Alpha-MVP area
  810. pvp_n_4-2.gat,0,0,0,0 monster Eddga 1115,1,60000,66000
  811. pvp_n_4-2.gat,0,0,0,0 monster Mistress 1059,1,60000,66000
  812. pvp_n_4-2.gat,0,0,0,0 monster Moonlight 1150,1,60000,66000
  813. pvp_n_4-2.gat,0,0,0,0 monster Maya 1147,1,60000,66000
  814. // --- Fifth Alpha-MVP area
  815. pvp_n_5-2.gat,0,0,0,0 monster Eddga 1115,1,60000,66000
  816. pvp_n_5-2.gat,0,0,0,0 monster Mistress 1059,2,60000,66000
  817. pvp_n_5-2.gat,0,0,0,0 monster Moonlight 1150,1,60000,66000
  818. pvp_n_5-2.gat,0,0,0,0 monster Maya 1147,2,60000,66000
  819. // --- Sixth Alpha-MVP area
  820. pvp_n_6-2.gat,0,0,0,0 monster Eddga 1115,2,60000,66000
  821. pvp_n_6-2.gat,0,0,0,0 monster Mistress 1059,3,60000,66000
  822. pvp_n_6-2.gat,0,0,0,0 monster Moonlight 1150,1,60000,66000
  823. pvp_n_6-2.gat,0,0,0,0 monster Maya 1147,2,60000,66000
  824. // --- Seventh Alpha-MVP area
  825. pvp_n_7-2.gat,0,0,0,0 monster Eddga 1115,3,60000,66000
  826. pvp_n_7-2.gat,0,0,0,0 monster Mistress 1059,3,60000,66000
  827. pvp_n_7-2.gat,0,0,0,0 monster Moonlight 1150,2,60000,66000
  828. pvp_n_7-2.gat,0,0,0,0 monster Maya 1147,2,60000,66000
  829. // --- Eighth Alpha-MVP area
  830. pvp_n_8-2.gat,0,0,0,0 monster Eddga 1115,3,60000,66000
  831. pvp_n_8-2.gat,0,0,0,0 monster Mistress 1059,3,60000,66000
  832. pvp_n_8-2.gat,0,0,0,0 monster Moonlight 1150,3,60000,66000
  833. pvp_n_8-2.gat,0,0,0,0 monster Maya 1147,3,60000,66000
  834. // --- Beta-MVP Maps
  835. // --- First Beta-MVP area
  836. pvp_n_1-3.gat,0,0,0,0 monster Phreeoni 1159,3,60000,66000
  837. pvp_n_1-3.gat,0,0,0,0 monster Turtle General 1312,1,60000,66000
  838. // --- Second Beta-MVP area
  839. pvp_n_2-3.gat,0,0,0,0 monster Phreeoni 1159,2,60000,66000
  840. pvp_n_3-3.gat,0,0,0,0 monster Turtle General 1312,1,60000,66000
  841. pvp_n_2-3.gat,0,0,0,0 monster Orc Hero 1087,1,60000,66000
  842. // --- Third Beta-MVP area
  843. pvp_n_3-3.gat,0,0,0,0 monster Phreeoni 1159,1,60000,66000
  844. pvp_n_3-3.gat,0,0,0,0 monster Turtle General 1312,1,60000,66000
  845. pvp_n_3-3.gat,0,0,0,0 monster Orc Hero 1087,1,60000,66000
  846. pvp_n_3-3.gat,0,0,0,0 monster Orc Lord 1190,1,60000,66000
  847. // --- Fourth Beta-MVP area
  848. pvp_n_4-3.gat,0,0,0,0 monster Phreeoni 1159,2,60000,66000
  849. pvp_n_4-3.gat,0,0,0,0 monster Turtle General 1312,1,60000,66000
  850. pvp_n_4-3.gat,0,0,0,0 monster Orc Hero 1087,1,60000,66000
  851. pvp_n_4-3.gat,0,0,0,0 monster Orc Lord 1190,1,60000,66000
  852. // --- Fifth Beta-MVP area
  853. pvp_n_5-3.gat,0,0,0,0 monster Phreeoni 1159,1,60000,66000
  854. pvp_n_5-3.gat,0,0,0,0 monster Turtle General 1312,2,60000,66000
  855. pvp_n_5-3.gat,0,0,0,0 monster Orc Hero 1087,2,60000,66000
  856. pvp_n_5-3.gat,0,0,0,0 monster Orc Lord 1190,1,60000,66000
  857. // --- Sixth Beta-MVP area
  858. pvp_n_6-3.gat,0,0,0,0 monster Phreeoni 1159,2,60000,66000
  859. pvp_n_6-3.gat,0,0,0,0 monster Turtle General 1312,1,60000,66000
  860. pvp_n_6-3.gat,0,0,0,0 monster Orc Hero 1087,2,60000,66000
  861. pvp_n_6-3.gat,0,0,0,0 monster Orc Lord 1190,2,60000,66000
  862. // --- Seventh Beta-MVP area
  863. pvp_n_7-3.gat,0,0,0,0 monster Phreeoni 1159,3,60000,66000
  864. pvp_n_7-3.gat,0,0,0,0 monster Turtle General 1312,1,60000,66000
  865. pvp_n_7-3.gat,0,0,0,0 monster Orc Hero 1087,2,60000,66000
  866. pvp_n_7-3.gat,0,0,0,0 monster Orc Lord 1190,3,60000,66000
  867. // --- Eighth Beta-MVP area
  868. pvp_n_8-3.gat,0,0,0,0 monster Phreeoni 1159,3,60000,66000
  869. pvp_n_8-3.gat,0,0,0,0 monster Turtle General 1312,3,60000,66000
  870. pvp_n_8-3.gat,0,0,0,0 monster Orc Hero 1087,3,60000,66000
  871. pvp_n_8-3.gat,0,0,0,0 monster Orc Lord 1190,3,60000,66000
  872. // --- Theta-MVP Maps
  873. // --- First Theta-MVP area
  874. pvp_n_1-4.gat,0,0,0,0 monster Drake 1112,3,60000,66000
  875. pvp_n_1-4.gat,0,0,0,0 monster Osiris 1038,1,60000,66000
  876. // --- Second Theta-MVP area
  877. pvp_n_2-4.gat,0,0,0,0 monster Drake 1112,2,60000,66000
  878. pvp_n_2-4.gat,0,0,0,0 monster Osiris 1038,1,60000,66000
  879. pvp_n_2-4.gat,0,0,0,0 monster Doppelganger 1046,1,60000,66000
  880. // --- Third Theta-MVP area
  881. pvp_n_3-4.gat,0,0,0,0 monster Drake 1112,1,60000,66000
  882. pvp_n_3-4.gat,0,0,0,0 monster Osiris 1038,1,60000,66000
  883. pvp_n_3-4.gat,0,0,0,0 monster Doppelganger 1046,1,60000,66000
  884. pvp_n_3-4.gat,0,0,0,0 monster Lord of Death 1373,1,60000,66000
  885. // --- Fourth Theta-MVP area
  886. pvp_n_4-4.gat,0,0,0,0 monster Drake 1112,2,60000,66000
  887. pvp_n_4-4.gat,0,0,0,0 monster Osiris 1038,1,60000,66000
  888. pvp_n_4-4.gat,0,0,0,0 monster Doppelganger 1046,2,60000,66000
  889. pvp_n_4-4.gat,0,0,0,0 monster Lord of Death 1373,1,60000,66000
  890. // --- Fifth Theta-MVP area
  891. pvp_n_5-4.gat,0,0,0,0 monster Drake 1112,3,60000,66000
  892. pvp_n_5-4.gat,0,0,0,0 monster Osiris 1038,2,60000,66000
  893. pvp_n_5-4.gat,0,0,0,0 monster Doppelganger 1046,2,60000,66000
  894. pvp_n_5-4.gat,0,0,0,0 monster Lord of Death 1373,1,60000,66000
  895. // --- Sixth Theta-MVP area
  896. pvp_n_6-4.gat,0,0,0,0 monster Drake 1112,3,60000,66000
  897. pvp_n_6-4.gat,0,0,0,0 monster Osiris 1038,2,60000,66000
  898. pvp_n_6-4.gat,0,0,0,0 monster Doppelganger 1046,2,60000,66000
  899. pvp_n_6-4.gat,0,0,0,0 monster Lord of Death 1373,2,60000,66000
  900. // --- Seventh Theta-MVP area
  901. pvp_n_7-4.gat,0,0,0,0 monster Drake 1112,3,60000,66000
  902. pvp_n_7-4.gat,0,0,0,0 monster Osiris 1038,2,60000,66000
  903. pvp_n_7-4.gat,0,0,0,0 monster Doppelganger 1046,3,60000,66000
  904. pvp_n_7-4.gat,0,0,0,0 monster Lord of Death 1373,2,60000,66000
  905. // --- Eighth Theta-MVP area
  906. pvp_n_8-4.gat,0,0,0,0 monster Drake 1112,3,60000,66000
  907. pvp_n_8-4.gat,0,0,0,0 monster Osiris 1038,3,60000,66000
  908. pvp_n_8-4.gat,0,0,0,0 monster Doppelganger 1046,3,60000,66000
  909. pvp_n_8-4.gat,0,0,0,0 monster Lord of Death 1373,3,60000,66000
  910. // --- Epsilon-MVP Maps
  911. // --- First Epsilon-MVP area
  912. pvp_n_1-5.gat,0,0,0,0 monster Incantation Samurai 1492,3,60000,66000
  913. pvp_n_1-5.gat,0,0,0,0 monster Pharoh 1157,1,60000,66000
  914. // --- First Epsilon-MVP area
  915. pvp_n_2-5.gat,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
  916. pvp_n_2-5.gat,0,0,0,0 monster Pharoh 1157,1,60000,66000
  917. pvp_n_2-5.gat,0,0,0,0 monster Dark Lord 1272,1,60000,66000
  918. // --- First Epsilon-MVP area
  919. pvp_n_3-5.gat,0,0,0,0 monster Incantation Samurai 1492,1,60000,66000
  920. pvp_n_3-5.gat,0,0,0,0 monster Pharoh 1157,1,60000,66000
  921. pvp_n_3-5.gat,0,0,0,0 monster Dark Lord 1272,1,60000,66000
  922. pvp_n_3-5.gat,0,0,0,0 monster Baphomet 1039,1,60000,66000
  923. // --- First Epsilon-MVP area
  924. pvp_n_4-5.gat,0,0,0,0 monster Incantation Samurai 1492,3,60000,66000
  925. pvp_n_4-5.gat,0,0,0,0 monster Pharoh 1157,1,60000,66000
  926. pvp_n_4-5.gat,0,0,0,0 monster Dark Lord 1272,1,60000,66000
  927. pvp_n_4-5.gat,0,0,0,0 monster Baphomet 1039,1,60000,66000
  928. // --- First Epsilon-MVP area
  929. pvp_n_5-5.gat,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
  930. pvp_n_5-5.gat,0,0,0,0 monster Pharoh 1157,2,60000,66000
  931. pvp_n_5-5.gat,0,0,0,0 monster Dark Lord 1272,2,60000,66000
  932. pvp_n_5-5.gat,0,0,0,0 monster Baphomet 1039,1,60000,66000
  933. // --- First Epsilon-MVP area
  934. pvp_n_6-5.gat,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
  935. pvp_n_6-5.gat,0,0,0,0 monster Pharoh 1157,2,60000,66000
  936. pvp_n_6-5.gat,0,0,0,0 monster Dark Lord 1272,2,60000,66000
  937. pvp_n_6-5.gat,0,0,0,0 monster Baphomet 1039,1,60000,66000
  938. // --- First Epsilon-MVP area
  939. pvp_n_7-5.gat,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
  940. pvp_n_7-5.gat,0,0,0,0 monster Pharoh 1157,2,60000,66000
  941. pvp_n_7-5.gat,0,0,0,0 monster Dark Lord 1272,2,60000,66000
  942. pvp_n_7-5.gat,0,0,0,0 monster Baphomet 1039,2,60000,66000
  943. // --- First Epsilon-MVP area
  944. pvp_n_8-5.gat,0,0,0,0 monster Incantation Samurai 1492,3,60000,66000
  945. pvp_n_8-5.gat,0,0,0,0 monster Pharoh 1157,2,60000,66000
  946. pvp_n_8-5.gat,0,0,0,0 monster Dark Lord 1272,2,60000,66000
  947. pvp_n_8-5.gat,0,0,0,0 monster Baphomet 1039,2,60000,66000