diff --git a/npc/re/other/kachua_key.txt b/npc/re/other/kachua_key.txt
index d16c457306..988e9cd764 100644
--- a/npc/re/other/kachua_key.txt
+++ b/npc/re/other/kachua_key.txt
@@ -16,9 +16,9 @@ sec_in02,126,178,3 script Kachua's Secret Box#bm 4_TREASURE_BOX,{
switch(select("^4d4dffOpen the box 1 time (1 Kachua Secret Key)^000000","^4d4dffOpen the box 10 times (10 Kachua Secret Keys)^000000")) {
case 1:
mes "^FF0000[Notice]^000000";
- mes "^FF0000Exchange one random item with one Kachua's Secret Key.^000000";
- mes "^FF0000The item exchanged above cannot be withdrawn, nor can it be exchanged to Kachua's Secret Key.^000000";
- next;
+ mes "^FF0000Exchange one random item with one Kachua's Secret Key.^000000";
+ mes "^FF0000The item exchanged above cannot be withdrawn, nor can it be exchanged to Kachua's Secret Key.^000000";
+ next;
if(select("Keep going.","Stop conversation.") == 2) {
mes "You have decided not to open the Box.";
close;
@@ -32,21 +32,21 @@ sec_in02,126,178,3 script Kachua's Secret Box#bm 4_TREASURE_BOX,{
}
delitem("K_Secret_Key", 1);
getgroupitem(IG_KACHUA_SECRET_BOX);
- mes "Kachua's Secret Box is opened!";
+ mes "Kachua's Secret Box was opened!";
mes "Were you lucky?";
specialeffect2 EF_VALLENTINE;
close;
}
case 2:
mes "^FF0000[Notice]^000000";
- mes "^FF0000Exchange 10 random item with 10 Kachua's Secret Key.^000000";
- mes "^FF0000The items exchanged above cannot be withdrawn, nor can it be exchanged to Kachua's Secret Key.^000000";
- next;
+ mes "^FF0000Exchange 10 random item with 10 Kachua's Secret Key.^000000";
+ mes "^FF0000The items exchanged above cannot be withdrawn, nor can it be exchanged to Kachua's Secret Key.^000000";
+ next;
if(select("Keep going.","Stop conversation.") == 2) {
mes "You have decided not to open the Box.";
close;
} else if (countitem("K_Secret_Key") < 10) {
- mes "Not enough - [Kachua Secret Key]23919
.";
+ mes "You do not have enough - [Kachua Secret Key]23919
.";
close;
} else {
for (.@i = 1; .@i <= 10; ++.@i) {
@@ -60,10 +60,10 @@ sec_in02,126,178,3 script Kachua's Secret Box#bm 4_TREASURE_BOX,{
}
delitem("K_Secret_Key", 1);
getgroupitem(IG_KACHUA_SECRET_BOX);
- dispbottom "Kachua's Secret Box opened " + .@i + " times. It's kept opening.",0xFFFFFF;
+ dispbottom "Kachua's Secret Box was opened " + .@i + " times. It's kept opening.",0xFFFFFF;
specialeffect2 EF_VALLENTINE;
}
- mes "Kachua's Secret Box is opened 10 times!";
+ mes "Kachua's Secret Box was opened 10 times!";
mes "Were you lucky?";
close;
}