summaryrefslogtreecommitdiff
path: root/npc/battleground/kvm/kvm_enter.txt
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-08-26 22:47:28 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-08-26 22:47:28 +0000
commitf83fd90579f5258ff145f9685499b67c5cd1fc68 (patch)
tree3160a65314e936898791cd2705d952f4241c8dc4 /npc/battleground/kvm/kvm_enter.txt
parent829350723346e4dda27c4eaf3395c3d36f12c409 (diff)
downloadhercules-f83fd90579f5258ff145f9685499b67c5cd1fc68.tar.gz
hercules-f83fd90579f5258ff145f9685499b67c5cd1fc68.tar.bz2
hercules-f83fd90579f5258ff145f9685499b67c5cd1fc68.tar.xz
hercules-f83fd90579f5258ff145f9685499b67c5cd1fc68.zip
* instance_npcname will now error if the NPC being looked up is not found, care of ramsey.
* delitem/2 will now send the close button when failing to find all neccecary items to delete. - Still do to, items should not be deleted as-found, and should be deleted once counted and in the event of delitem failure, nothing should be consumed. This is a design flaw in eathena, and should be fixed as soon as possible. * Implemented the Endless Tower instance. * Updated announces and dialogs in KVM. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14395 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/battleground/kvm/kvm_enter.txt')
-rw-r--r--npc/battleground/kvm/kvm_enter.txt33
1 files changed, 22 insertions, 11 deletions
diff --git a/npc/battleground/kvm/kvm_enter.txt b/npc/battleground/kvm/kvm_enter.txt
index c6d50e87a..95ef27b0c 100644
--- a/npc/battleground/kvm/kvm_enter.txt
+++ b/npc/battleground/kvm/kvm_enter.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena 1.0
//===== Description: =========================================
@@ -12,27 +12,33 @@
//= Original NPCs scrapped from bg_common.
//===== Additional Comments: =================================
//= 1.0 First Version.
+//= 1.1 Corrected some typos, and shifted messages around.
+//= Corrected iRO style quest log entries, however it's
+//= advisable that you not use them, as they conflict.
//============================================================
// KvM Officer - Guillaume
//============================================================
bat_room,164,178,5 script KVM Mercenary Officer#1 418,{
/*
- set .@kvm,checkquest(6027,PLAYTIME);
+ set .@kvm,checkquest(6026,PLAYTIME);
if ((.@kvm == 0) || (.@kvm == 1)) {
mes "[Croix Mercenary Officer]";
- mes "It seems you ahve recently participated in a KVM battle. You must wait 5 minutes before signing up again.";
+ 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.";
close;
}
+ else if (.@kvm == 2) {
+ erasequest 6026;
+ }
*/
set .@permit,checkquest(6025,PLAYTIME);
if ((.@permit == 0) || (.@permit == 1)) {
mes "[Guillaume Mercenary Officer]";
- 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.";
+ mes "It seems you have recently participated in a KVM battle. You must wait 5 minutes before signing up again.";
close;
}
- else {
- if (checkquest(6025) >= 0) erasequest 6025;
+ else if (.@permit == 2) {
+ erasequest 6025;
}
mes "[Guillaume Mercenary Officer]";
mes "Let them know the real might of Guillaume!";
@@ -43,6 +49,7 @@ bat_room,164,178,5 script KVM Mercenary Officer#1 418,{
mes "Show them how strong we are.";
mes "Today, everyone will hear the shout of triumph from Guillaume!";
close2;
+ //setquest 6025;
if (BaseLevel > 79) {
warp "bat_room",169,223;
}
@@ -124,21 +131,24 @@ bat_room,167,178,5 script Guillaume Knight#kvm 417,{
//============================================================
bat_room,164,121,1 script KVM Mercenary Officer#2 414,{
/*
- set .@kvm,checkquest(6027,PLAYTIME);
+ set .@kvm,checkquest(6025,PLAYTIME);
if ((.@kvm == 0) || (.@kvm == 1)) {
mes "[Croix Mercenary Officer]";
- mes "It seems you ahve recently participated in a KVM battle. You must wait 5 minutes before signing up again.";
+ 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.";
close;
}
+ else if (.@kvm == 2) {
+ erasequest 6025;
+ }
*/
set .@permit,checkquest(6025,PLAYTIME);
if ((.@permit == 0) || (.@permit == 1)) {
mes "[Croix Mercenary Officer]";
- 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.";
+ mes "It seems you have recently participated in a KVM battle. You must wait 5 minutes before signing up again.";
close;
}
- else {
- if (checkquest(6025) >= 0) erasequest 6025;
+ else if (.@permit == 2) {
+ erasequest 6025;
}
mes "[Croix Mercenary Officer]";
mes "Let them know the real might of Croix!";
@@ -149,6 +159,7 @@ bat_room,164,121,1 script KVM Mercenary Officer#2 414,{
mes "Show them how strong we are.";
mes "Today, everyone will hear the shout of triumph from Croix!";
close2;
+ //setquest 6026;
if (BaseLevel > 79) {
warp "bat_room",169,207;
}