Issue information

Issue ID
#379
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Nov 6, 2007 4:48
Last Post
Hercules Elf Bot
Nov 6, 2007 4:48
Confirmation
N/A

Hercules Elf Bot - Nov 6, 2007 4:48

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

Hello,

the problem is very simple here.

The script npc/quests/quests_yuno.txt has a missing line :

set metto_q,2; into this part of Metto NPC

CODE
else if (metto_q == 1) {
                mes "I'm going to ask my colleague ^FF0000Stangckle^000000 to help me. I am sure he will be more than willing to help out an old friend.";
                next;
                mes "[Metto]";
                mes "If I had that fellow's help, this would be much easier. Pray! Pray to whatever God you believe that we will succeed!";
                close;
        }


Should be
CODE
else if (metto_q == 1) {
                mes "I'm going to ask my colleague ^FF0000Stangckle^000000 to help me. I am sure he will be more than willing to help out an old friend.";
                next;
                mes "[Metto]";
                mes "If I had that fellow's help, this would be much easier. Pray! Pray to whatever God you believe that we will succeed!";
                    set metto_q,2;
                close;
        }


That's all.

This post has been edited by Darkalia: Nov 5 2007, 08:48 PM