Issue information

Issue ID
#2712
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 26, 2009 6:57
Last Post
Hercules Elf Bot
Mar 5, 2012 9:32
Confirmation
N/A

Hercules Elf Bot - Jan 26, 2009 6:57

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

in the npc/guild/agit_template.txt the count to see if the player has the amount necessary to summon the Guardian, the NPC check 1000 instead of 10000

QUOTE
mes "Will you summon the chosen guardian? 10000 zeny is required to summon.";
next;
switch(select("Summon:Cancel")) {
case 1:
mes "[ Steward " + .@name$ + " ]";
if (getgdskilllv(.@GID,10002) == 0) {
mes "Master, we have not the resources to Summon the Guardian. If you want to accumulate them, you have to learn the Guild skill, We failed to summon the Guardian.";
close;
}
if (GetCastleData(strnpcinfo(2),.@GDnum) == 1) {
mes "Master, you already have summoned that Guardian. We cannot summon another.";
close;
}

if (Zeny < 1000) {
mes "Well... I'm sorry but we don't have funds to summon the Guardian. We failed to summon the Guardian.";
close;
}
set zeny,zeny-10000;
SetCastleData strnpcinfo(2),.@GDnum,1; // mark as 'installed'
set .@UseGID,.@GDnum - 10;


Sorry for any erro in the translation