kvm_enter.txt 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. //===== eAthena Script =======================================
  2. // BattleGround System - KvM Entrance NPCs
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= eAthena 1.0
  9. //===== Description: =========================================
  10. //= [AEGIS Conversion]
  11. //= Kreiger Von Midgard Battleground Entrance NPCs
  12. //= Original NPCs scrapped from bg_common.
  13. //===== Additional Comments: =================================
  14. //= 1.0 First Version.
  15. //============================================================
  16. // KvM Officer - Guillaume
  17. //============================================================
  18. bat_room,164,178,5 script KVM Mercenary Officer#1 418,{
  19. /*
  20. set .@kvm,checkquest(6027,PLAYTIME);
  21. if ((.@kvm == 0) || (.@kvm == 1)) {
  22. mes "[Croix Mercenary Officer]";
  23. mes "It seems you ahve recently participated in a KVM battle. You must wait 5 minutes before signing up again.";
  24. close;
  25. }
  26. */
  27. set .@permit,checkquest(6025,PLAYTIME);
  28. if ((.@permit == 0) || (.@permit == 1)) {
  29. mes "[Guillaume Mercenary Officer]";
  30. mes "I know that you've already signed with the Croix. Go back and join their team. We will not accept traitors to fight for us.";
  31. close;
  32. }
  33. else {
  34. if (checkquest(6025) >= 0) erasequest 6025;
  35. }
  36. mes "[Guillaume Mercenary Officer]";
  37. mes "Let them know the real might of Guillaume!";
  38. next;
  39. switch(select("I will fight with you.:End Conversation.")) {
  40. case 1:
  41. mes "[Guillaume Mercenary Officer]";
  42. mes "Show them how strong we are.";
  43. mes "Today, everyone will hear the shout of triumph from Guillaume!";
  44. close2;
  45. if (BaseLevel > 79) {
  46. warp "bat_room",169,223;
  47. }
  48. else if (BaseLevel < 60) {
  49. warp "bat_room",197,223;
  50. }
  51. else {
  52. warp "bat_room",225,223;
  53. }
  54. close;
  55. case 2:
  56. mes "[Guillaume Mercenary Officer]";
  57. mes "We will win!";
  58. close;
  59. }
  60. }
  61. // Guillaume Knight - KvM
  62. //============================================================
  63. bat_room,167,178,5 script Guillaume Knight#kvm 417,{
  64. mes "[Guillaume Knight]";
  65. mes "Hello.";
  66. mes "What do you want to know?";
  67. next;
  68. switch(select("Apply for KVM.:What is KVM?:How do I participate in KVM?:I want to know my Kreiger Points.")) {
  69. case 1:
  70. mes "[Guillaume Knight]";
  71. mes "Applications are not available yet.";
  72. mes "To apply, you need to go to a KVM Mercenary Officer.";
  73. close;
  74. case 2:
  75. mes "[Guillaume Knight]";
  76. mes "KVM is the abbreviation of Kreiger Von Midgard.";
  77. mes "Adventurer, are you aware that the way to the new world has been opened?";
  78. next;
  79. mes "[Guillaume Knight]";
  80. mes "We, the Guillaume Administration, have several plans to advance to the new world.";
  81. mes "And KVM is one of them.";
  82. next;
  83. mes "[Guillaume Knight]";
  84. mes "It means that we, one of many countries in the Midgard continent,";
  85. mes "have decided to employ many adventurers for the immediate advance to the new world.";
  86. next;
  87. mes "[Guillaume Knight]";
  88. mes "Therefore, to select the best adventurers, we are holding the KVM.";
  89. mes "We exspect responses from many adventurers.";
  90. next;
  91. mes "[Guillaume Knight]";
  92. mes "And we will give them rewards for their participation!";
  93. mes "As for the rewards, please contact a KVM Logistic Officer.";
  94. close;
  95. case 3:
  96. mes "[Guillaume Knight]";
  97. mes "Basically, KVM is a 5 on 5 battle.";
  98. mes "First, you apply with a KVM receptionist, in a group or individually.";
  99. next;
  100. mes "[Guillaume Knight]";
  101. mes "Group applications are for when you intend to enter the KVM with your party members,";
  102. mes "and a personal application is for when you intend to enter the KVM individually.";
  103. next;
  104. mes "[Guillaume Knight]";
  105. mes "Please apply with a KVM officer, and he will contact you later when you are in Prontera.";
  106. next;
  107. mes "[Guillaume Knight]";
  108. mes "Then you enter and follow the instructions in the battlefield.";
  109. next;
  110. mes "[Guillaume Knight]";
  111. mes "However, please be advised that unless you are in the KVM office, he cannot contact you.";
  112. close;
  113. case 4:
  114. mes "[Guillaume Knight]";
  115. mes "Your Kreiger Points are:";
  116. mes ""+kvm_point+".";
  117. close;
  118. }
  119. }
  120. // KvM Officer - Croix
  121. //============================================================
  122. bat_room,164,121,1 script KVM Mercenary Officer#2 414,{
  123. /*
  124. set .@kvm,checkquest(6027,PLAYTIME);
  125. if ((.@kvm == 0) || (.@kvm == 1)) {
  126. mes "[Croix Mercenary Officer]";
  127. mes "It seems you ahve recently participated in a KVM battle. You must wait 5 minutes before signing up again.";
  128. close;
  129. }
  130. */
  131. set .@permit,checkquest(6025,PLAYTIME);
  132. if ((.@permit == 0) || (.@permit == 1)) {
  133. mes "[Croix Mercenary Officer]";
  134. mes "I know that you've already signed with the Guillaume. Go back and join their team. We will not accept traitors to fight for us.";
  135. close;
  136. }
  137. else {
  138. if (checkquest(6025) >= 0) erasequest 6025;
  139. }
  140. mes "[Croix Mercenary Officer]";
  141. mes "Let them know the real might of Croix!";
  142. next;
  143. switch(select("I will fight with you.:End Conversation.")) {
  144. case 1:
  145. mes "[Croix Mercenary Officer]";
  146. mes "Show them how strong we are.";
  147. mes "Today, everyone will hear the shout of triumph from Croix!";
  148. close2;
  149. if (BaseLevel > 79) {
  150. warp "bat_room",169,207;
  151. }
  152. else if (BaseLevel < 60) {
  153. warp "bat_room",197,207;
  154. }
  155. else {
  156. warp "bat_room",225,207;
  157. }
  158. close;
  159. case 2:
  160. mes "[Croix Mercenary Officer]";
  161. mes "We will win!";
  162. close;
  163. }
  164. }
  165. // Croix Knight - KvM
  166. //============================================================
  167. bat_room,167,121,1 script Croix Knight#kvm 413,{
  168. mes "[Croix Knight]";
  169. mes "Hello.";
  170. mes "What do you want to know?";
  171. next;
  172. switch(select("Apply for KVM.:What is KVM?:How do I participate in KVM?:I want to know my Kreiger Points.")) {
  173. case 1:
  174. mes "[Croix Knight]";
  175. mes "Applications are not available yet.";
  176. mes "To apply, you need to go to a KVM Mercenary Officer.";
  177. close;
  178. case 2:
  179. mes "[Croix Knight]";
  180. mes "KVM is the abbreviation of Kreiger Von Midgard.";
  181. mes "Adventurer, are you aware that the way to the new world has been opened?";
  182. next;
  183. mes "[Croix Knight]";
  184. mes "We, the Croix Administration, have several plans to advance to the new world.";
  185. mes "And KVM is one of them.";
  186. next;
  187. mes "[Croix Knight]";
  188. mes "It means that we, one of many countries in the Midgard continent,";
  189. mes "have decided to employ many adventurers for the immediate advance to the new world.";
  190. next;
  191. mes "[Croix Knight]";
  192. mes "Therefore, to select the best adventurers, we are holding the KVM.";
  193. mes "We exspect responses from many adventurers.";
  194. next;
  195. mes "[Croix Knight]";
  196. mes "And we will give them rewards for their participation!";
  197. mes "As for the rewards, please contact a KVM Logistic Officer.";
  198. close;
  199. case 3:
  200. mes "[Croix Knight]";
  201. mes "Basically, KVM is a 5 on 5 battle.";
  202. mes "First, you apply with a KVM receptionist, in a group or individually.";
  203. next;
  204. mes "[Croix Knight]";
  205. mes "Group applications are for when you intend to enter the KVM with your party members,";
  206. mes "and a personal application is for when you intend to enter the KVM individually.";
  207. next;
  208. mes "[Croix Knight]";
  209. mes "Please apply with a KVM officer, and he will contact you later when you are in Prontera.";
  210. next;
  211. mes "[Croix Knight]";
  212. mes "Then you enter and follow the instructions in the battlefield.";
  213. next;
  214. mes "[Croix Knight]";
  215. mes "However, please be advised that unless you are in the KVM office, he cannot contact you.";
  216. close;
  217. case 4:
  218. mes "[Croix Knight]";
  219. mes "Your Kreiger Points are:";
  220. mes ""+kvm_point+".";
  221. close;
  222. }
  223. }