bossnia.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. //===== rAthena Script =======================================
  2. //= Bossnia Warp NPCs
  3. //===== By: ==================================================
  4. //= Masao
  5. //===== Current Version: =====================================
  6. //= 1.3
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= Bossnia MVP event.
  11. //===== Additional Comments: =================================
  12. //= 1.0 Converted from the official script.
  13. //= 1.1 Optimized. [Euphy]
  14. //= 1.2 Moved spawns and warps (by Masao) to this file. [Euphy]
  15. //= 1.3 Added VIP features. [Euphy]
  16. //============================================================
  17. // Entrance NPCs
  18. //============================================================
  19. prontera,132,125,4 script Bossnia Staff#1 908,{
  20. mes "[Riss]";
  21. mes "Hello?";
  22. mes "I found some beautiful places";
  23. mes "while I travelled all over the world.";
  24. mes "I am an adventurer.";
  25. mes "Haha~";
  26. next;
  27. mes "[Riss]";
  28. mes "What? My name is...";
  29. mes "'Bossnia Staff'?? No no...";
  30. mes "Well, my name is not so important.";
  31. mes "Sometimes you should be generous.";
  32. mes "No time for considering that kind of small stuff";
  33. mes "when you have to concentrate on more important things.";
  34. next;
  35. mes "[Riss]";
  36. mes "Hum... anyway I want to say... something..";
  37. mes "While I was travelling through some places,";
  38. mes "I found a really fearful place.";
  39. next;
  40. mes "[Riss]";
  41. mes "Most of the time when you come to a place,";
  42. mes "there is one strong and fearful monster.";
  43. mes "Isn't it?";
  44. next;
  45. mes "[Riss]";
  46. mes "But... but... in there...";
  47. mes "There are lots of fearful and strong monsters in there...";
  48. mes "That was really frightful.";
  49. next;
  50. mes "[Riss]";
  51. mes "If I had reacted a bit later... a few seconds...";
  52. mes "I might have been killed.";
  53. next;
  54. mes "[Riss]";
  55. mes "What?";
  56. mes "You want to go in there?";
  57. mes "Oh~ Boy~ you didn't get me.";
  58. mes "In there.......";
  59. next;
  60. mes "[Riss]";
  61. mes "Uh... you already know?";
  62. mes "Although you know the place, you want to go in...";
  63. mes "Good, I will send you there.";
  64. mes "But after you went there, don't hold";
  65. // If the VIP system is enabled, players pay a Reset Stone for 5 entrances (with a choice of warps).
  66. // If it's disabled, players pay 5,000z per entrance.
  67. if (VIP_SCRIPT) {
  68. mes "a grudge against me. It'll cost you 1 Reset Stone for 5 access.";
  69. next;
  70. mes "[Riss]";
  71. if (bossnia_event > 0) {
  72. set .@type,1;
  73. mes "Remaining access: "+bossnia_event;
  74. } else if (countitem(6320)) {
  75. set .@type,2;
  76. mes "Do you want to go?";
  77. } else {
  78. mes "You don't have a ticket now.....";
  79. mes "So come to me again with a Reset Stone later.";
  80. close;
  81. }
  82. next;
  83. if(select("Enter:Leave") == 2)
  84. close;
  85. set .@i, select("First:Second:Third:Fourth");
  86. switch(select("Warp 1:Warp 2:Warp 3:Warp 4")) {
  87. case 1: set .@x,31; set .@y,208; break;
  88. case 2: set .@x,31; set .@y,31; break;
  89. case 3: set .@x,208; set .@y,31; break;
  90. case 4: set .@x,208; set .@y,208; break;
  91. }
  92. if (.@type == 1)
  93. set bossnia_event, bossnia_event-1;
  94. else {
  95. delitem 6320,1; //Premium_Reset_Stone
  96. set bossnia_event,4;
  97. }
  98. specialeffect2 EF_MAXPOWER;
  99. warp "bossnia_0"+.@i,.@x,.@y;
  100. close;
  101. } else {
  102. mes "a grudge against me. Also it costs 5,000 zeny.";
  103. next;
  104. if (Zeny > 4999) {
  105. mes "[Riss]";
  106. mes "Would you really like to take the challenge?";
  107. mes "Ok, just choose the course.";
  108. next;
  109. set .@i, select("First:Second:Third:Fourth");
  110. mes "[Riss]";
  111. mes "Take care, boy~";
  112. mes "Don't hold a grudge against me.";
  113. close2;
  114. set Zeny, Zeny - 5000;
  115. warp "bossnia_0"+.@i,rand(202,204),rand(202,204);
  116. end;
  117. } else {
  118. mes "[Riss]";
  119. mes "You don't have enough money...";
  120. mes "Come back when you have at least 5,000 zeny.";
  121. close;
  122. }
  123. }
  124. }
  125. geffen,124,169,4 duplicate(Bossnia Staff#1) Bossnia Staff#2 908
  126. payon,165,150,4 duplicate(Bossnia Staff#1) Bossnia Staff#3 908
  127. morocc,142,100,4 duplicate(Bossnia Staff#1) Bossnia Staff#4 908
  128. lighthalzen,203,140,4 duplicate(Bossnia Staff#1) Bossnia Staff#5 908
  129. rachel,132,144,4 duplicate(Bossnia Staff#1) Bossnia Staff#6 908
  130. // Warp Portals
  131. //============================================================
  132. bossnia_01,204,204,0 warp bossnia01 1,1,prontera,155,180
  133. bossnia_02,204,204,0 warp bossnia02 1,1,prontera,155,180
  134. bossnia_03,204,204,0 warp bossnia03 1,1,prontera,155,180
  135. bossnia_04,204,204,0 warp bossnia04 1,1,prontera,155,180
  136. // Monster Spawns
  137. //============================================================
  138. //----------------------------------------------------------------------------
  139. // bossnia_01 - Bossnia
  140. //----------------------------------------------------------------------------
  141. bossnia_01,0,0 monster Garm 1252,5,7200000
  142. bossnia_01,0,0 monster Gloom Under Night 1768,2,7200000
  143. bossnia_01,0,0 monster Dark Lord 1272,3,7200000
  144. bossnia_01,0,0 monster Doppelganger 1046,10,7200000
  145. bossnia_01,0,0 monster Dracula 1389,5,1800000
  146. bossnia_01,0,0 monster Drake 1112,10,1800000
  147. bossnia_01,0,0 monster Detale 1719,2,7200000
  148. bossnia_01,0,0 monster Maya 1147,10,1800000
  149. bossnia_01,0,0 monster Mistress 1059,1,1800000
  150. bossnia_01,0,0 monster Baphomet 1039,10,1800000
  151. bossnia_01,0,0 monster Egnigem Cenia 1658,10,1800000
  152. bossnia_01,0,0 monster Amon Ra 1511,1,1800000
  153. bossnia_01,0,0 monster Atroce 1785,10,1800000
  154. bossnia_01,0,0 monster Vesper 1685,2,7200000
  155. bossnia_01,0,0 monster Eddga 1115,1,1800000
  156. bossnia_01,0,0 monster Osiris 1038,10,7200000
  157. bossnia_01,0,0 monster Orc Lord 1190,10,7200000
  158. bossnia_01,0,0 monster Orc Hero 1087,2,1800000
  159. bossnia_01,0,0 monster Samurai Specter 1492,1,3600000
  160. bossnia_01,0,0 monster Moonlight Flower 1150,1,3600000
  161. bossnia_01,0,0 monster Lord of the Dead 1373,1,3600000
  162. bossnia_01,0,0 monster Ktullanux 1779,2,7200000
  163. bossnia_01,0,0 monster Kiel D-01 1734,2,7200000
  164. bossnia_01,0,0 monster Thanatos Phantom 1708,2,7200000
  165. bossnia_01,0,0 monster Lady Tanee 1688,1,3600000
  166. bossnia_01,0,0 monster Tao Gunka 1583,1,3600000
  167. bossnia_01,0,0 monster Turtle General 1312,10,7200000
  168. bossnia_01,0,0 monster Pharaoh 1157,2,3600000
  169. bossnia_01,0,0 monster Stormy Knight 1251,2,3600000
  170. bossnia_01,0,0 monster Falling Bishop 1871,5,7200000
  171. bossnia_01,0,0 monster Phreeoni 1159,10,7200000
  172. bossnia_01,0,0 monster Golden Thief Bug 1086,10,3600000
  173. bossnia_01,0,0 monster Evil Snake Lord 1418,10,7200000
  174. bossnia_01,0,0 monster RSX-0806 1623,5,7200000
  175. bossnia_01,0,0 monster Assassin Cross Eremes 1647,1
  176. bossnia_01,137,118,1,1 monster Whitesmith Howard 1648,1
  177. bossnia_01,122,195,1,1 monster Beelzebub 1873,1
  178. bossnia_01,45,118,1,1 monster Beelzebub 1873,1
  179. bossnia_01,196,122,1,1 monster Valkyrie Randgris 1751,1
  180. bossnia_01,142,61,1,1 monster Ifrit 1832,1
  181. //----------------------------------------------------------------------------
  182. // bossnia_02 - Bossnia
  183. //----------------------------------------------------------------------------
  184. bossnia_02,0,0 monster Garm 1252,5,7200000
  185. bossnia_02,0,0 monster Gloom Under Night 1768,2,7200000
  186. bossnia_02,0,0 monster Dark Lord 1272,3,7200000
  187. bossnia_02,0,0 monster Doppelganger 1046,10,7200000
  188. bossnia_02,0,0 monster Dracula 1389,5,1800000
  189. bossnia_02,0,0 monster Drake 1112,10,1800000
  190. bossnia_02,0,0 monster Detale 1719,2,7200000
  191. bossnia_02,0,0 monster Maya 1147,10,1800000
  192. bossnia_02,0,0 monster Mistress 1059,1,1800000
  193. bossnia_02,0,0 monster Baphomet 1039,10,1800000
  194. bossnia_02,0,0 monster Egnigem Cenia 1658,10,1800000
  195. bossnia_02,0,0 monster Amon Ra 1511,1,1800000
  196. bossnia_02,0,0 monster Atroce 1785,10,1800000
  197. bossnia_02,0,0 monster Vesper 1685,2,7200000
  198. bossnia_02,0,0 monster Eddga 1115,1,1800000
  199. bossnia_02,0,0 monster Osiris 1038,10,7200000
  200. bossnia_02,0,0 monster Orc Lord 1190,10,7200000
  201. bossnia_02,0,0 monster Orc Hero 1087,2,1800000
  202. bossnia_02,0,0 monster Samurai Specter 1492,1,3600000
  203. bossnia_02,0,0 monster Moonlight Flower 1150,1,3600000
  204. bossnia_02,0,0 monster Lord of the Dead 1373,1,3600000
  205. bossnia_02,0,0 monster Ktullanux 1779,2,7200000
  206. bossnia_02,0,0 monster Kiel D-01 1734,2,7200000
  207. bossnia_02,0,0 monster Thanatos Phantom 1708,2,7200000
  208. bossnia_02,0,0 monster Lady Tanee 1688,1,3600000
  209. bossnia_02,0,0 monster Tao Gunka 1583,1,3600000
  210. bossnia_02,0,0 monster Turtle General 1312,10,7200000
  211. bossnia_02,0,0 monster Pharaoh 1157,2,3600000
  212. bossnia_02,0,0 monster Stormy Knight 1251,2,3600000
  213. bossnia_02,0,0 monster Falling Bishop 1871,5,7200000
  214. bossnia_02,0,0 monster Phreeoni 1159,10,7200000
  215. bossnia_02,0,0 monster Golden Thief Bug 1086,10,3600000
  216. bossnia_02,0,0 monster Evil Snake Lord 1418,10,7200000
  217. bossnia_02,0,0 monster RSX-0806 1623,5,7200000
  218. bossnia_02,0,0 monster Assassin Cross Eremes 1647,1
  219. bossnia_02,137,118,1,1 monster Whitesmith Howard 1648,1
  220. bossnia_02,122,195,1,1 monster Beelzebub 1873,1
  221. bossnia_02,45,118,1,1 monster Beelzebub 1873,1
  222. bossnia_02,196,122,1,1 monster Valkyrie Randgris 1751,1
  223. bossnia_02,142,61,1,1 monster Ifrit 1832,1
  224. //----------------------------------------------------------------------------
  225. // bossnia_03 - Bossnia
  226. //----------------------------------------------------------------------------
  227. bossnia_03,0,0 monster Garm 1252,5,7200000
  228. bossnia_03,0,0 monster Gloom Under Night 1768,2,7200000
  229. bossnia_03,0,0 monster Dark Lord 1272,3,7200000
  230. bossnia_03,0,0 monster Doppelganger 1046,10,7200000
  231. bossnia_03,0,0 monster Dracula 1389,5,1800000
  232. bossnia_03,0,0 monster Drake 1112,10,1800000
  233. bossnia_03,0,0 monster Detale 1719,2,7200000
  234. bossnia_03,0,0 monster Maya 1147,10,1800000
  235. bossnia_03,0,0 monster Mistress 1059,1,1800000
  236. bossnia_03,0,0 monster Baphomet 1039,10,1800000
  237. bossnia_03,0,0 monster Egnigem Cenia 1658,10,1800000
  238. bossnia_03,0,0 monster Amon Ra 1511,1,1800000
  239. bossnia_03,0,0 monster Atroce 1785,10,1800000
  240. bossnia_03,0,0 monster Vesper 1685,2,7200000
  241. bossnia_03,0,0 monster Eddga 1115,1,1800000
  242. bossnia_03,0,0 monster Osiris 1038,10,7200000
  243. bossnia_03,0,0 monster Orc Lord 1190,10,7200000
  244. bossnia_03,0,0 monster Orc Hero 1087,2,1800000
  245. bossnia_03,0,0 monster Samurai Specter 1492,1,3600000
  246. bossnia_03,0,0 monster Moonlight Flower 1150,1,3600000
  247. bossnia_03,0,0 monster Lord of the Dead 1373,1,3600000
  248. bossnia_03,0,0 monster Ktullanux 1779,2,7200000
  249. bossnia_03,0,0 monster Kiel D-01 1734,2,7200000
  250. bossnia_03,0,0 monster Thanatos Phantom 1708,2,7200000
  251. bossnia_03,0,0 monster Lady Tanee 1688,1,3600000
  252. bossnia_03,0,0 monster Tao Gunka 1583,1,3600000
  253. bossnia_03,0,0 monster Turtle General 1312,10,7200000
  254. bossnia_03,0,0 monster Pharaoh 1157,2,3600000
  255. bossnia_03,0,0 monster Stormy Knight 1251,2,3600000
  256. bossnia_03,0,0 monster Falling Bishop 1871,5,7200000
  257. bossnia_03,0,0 monster Phreeoni 1159,10,7200000
  258. bossnia_03,0,0 monster Golden Thief Bug 1086,10,3600000
  259. bossnia_03,0,0 monster Evil Snake Lord 1418,10,7200000
  260. bossnia_03,0,0 monster RSX-0806 1623,5,7200000
  261. bossnia_03,0,0 monster Assassin Cross Eremes 1647,1
  262. bossnia_03,137,118,1,1 monster Whitesmith Howard 1648,1
  263. bossnia_03,122,195,1,1 monster Beelzebub 1873,1
  264. bossnia_03,45,118,1,1 monster Beelzebub 1873,1
  265. bossnia_03,196,122,1,1 monster Valkyrie Randgris 1751,1
  266. bossnia_03,142,61,1,1 monster Ifrit 1832,1
  267. //----------------------------------------------------------------------------
  268. // bossnia_04 - Bossnia
  269. //----------------------------------------------------------------------------
  270. bossnia_04,0,0 monster Garm 1252,5,7200000
  271. bossnia_04,0,0 monster Gloom Under Night 1768,2,7200000
  272. bossnia_04,0,0 monster Dark Lord 1272,3,7200000
  273. bossnia_04,0,0 monster Doppelganger 1046,10,7200000
  274. bossnia_04,0,0 monster Dracula 1389,5,1800000
  275. bossnia_04,0,0 monster Drake 1112,10,1800000
  276. bossnia_04,0,0 monster Detale 1719,2,7200000
  277. bossnia_04,0,0 monster Maya 1147,10,1800000
  278. bossnia_04,0,0 monster Mistress 1059,1,1800000
  279. bossnia_04,0,0 monster Baphomet 1039,10,1800000
  280. bossnia_04,0,0 monster Egnigem Cenia 1658,10,1800000
  281. bossnia_04,0,0 monster Amon Ra 1511,1,1800000
  282. bossnia_04,0,0 monster Atroce 1785,10,1800000
  283. bossnia_04,0,0 monster Vesper 1685,2,7200000
  284. bossnia_04,0,0 monster Eddga 1115,1,1800000
  285. bossnia_04,0,0 monster Osiris 1038,10,7200000
  286. bossnia_04,0,0 monster Orc Lord 1190,10,7200000
  287. bossnia_04,0,0 monster Orc Hero 1087,2,1800000
  288. bossnia_04,0,0 monster Samurai Specter 1492,1,3600000
  289. bossnia_04,0,0 monster Moonlight Flower 1150,1,3600000
  290. bossnia_04,0,0 monster Lord of the Dead 1373,1,3600000
  291. bossnia_04,0,0 monster Ktullanux 1779,2,7200000
  292. bossnia_04,0,0 monster Kiel D-01 1734,2,7200000
  293. bossnia_04,0,0 monster Thanatos Phantom 1708,2,7200000
  294. bossnia_04,0,0 monster Lady Tanee 1688,1,3600000
  295. bossnia_04,0,0 monster Tao Gunka 1583,1,3600000
  296. bossnia_04,0,0 monster Turtle General 1312,10,7200000
  297. bossnia_04,0,0 monster Pharaoh 1157,2,3600000
  298. bossnia_04,0,0 monster Stormy Knight 1251,2,3600000
  299. bossnia_04,0,0 monster Falling Bishop 1871,5,7200000
  300. bossnia_04,0,0 monster Phreeoni 1159,10,7200000
  301. bossnia_04,0,0 monster Golden Thief Bug 1086,10,3600000
  302. bossnia_04,0,0 monster Evil Snake Lord 1418,10,7200000
  303. bossnia_04,0,0 monster RSX-0806 1623,5,7200000
  304. bossnia_04,0,0 monster Assassin Cross Eremes 1647,1
  305. bossnia_04,137,118,1,1 monster Whitesmith Howard 1648,1
  306. bossnia_04,122,195,1,1 monster Beelzebub 1873,1
  307. bossnia_04,45,118,1,1 monster Beelzebub 1873,1
  308. bossnia_04,196,122,1,1 monster Valkyrie Randgris 1751,1
  309. bossnia_04,142,61,1,1 monster Ifrit 1832,1