Issue information

Issue ID
#1394
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Apr 20, 2008 19:44
Last Post
Hercules Elf Bot
Apr 20, 2008 19:44
Confirmation
N/A

Hercules Elf Bot - Apr 20, 2008 19:44

Originally posted by [b]Everade[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=1394

schg_cas01.txt
NPC Name Steward

QUOTE
switch(select("Invest in Commercial Growth:Cancel")) {
case 1:
if (Zeny < .@eco_invest) {
mes "[ Steward ]";
mes "I'm sorry, Master, but";
mes "you do not have enough";
mes "zeny to make an investment";
mes "for the guild today.";
end;
}



Should be:
QUOTE
switch(select("Invest in Commercial Growth:Cancel")) {
case 1:
if (Zeny < .@eco_invest) {
mes "[ Steward ]";
mes "I'm sorry, Master, but";
mes "you do not have enough";
mes "zeny to make an investment";
mes "for the guild today.";
close;
}



I think that bug is on all Castles.

This post has been edited by Everade: Apr 20 2008, 12:54 PM