Issue information

Issue ID
#473
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Nov 22, 2007 17:58
Last Post
Hercules Elf Bot
Nov 22, 2007 17:58
Confirmation
N/A

Hercules Elf Bot - Nov 22, 2007 17:58

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

npc/quests/quests/yuno.txt v1.8

Script is missing variables:
[codebox] else if (metto_q == 3 ) {
set metto_q,4;
mes "What? That punk Stangckle said he doesn't want to help me?! This is not good. This will slow my research considerably.";
next;
mes "[Metto]";
mes "...";
mes "What will";
mes "I do now?!";
next;[/codebox]

[codebox] else if (metto_q == 5) {
set metto_q,6;
mes "What? You mean to tell me that the very thing I need to continue my research, the mighty Great Z, has been destroyed?!!";
next;
mes "[Metto]";
mes "Nooooo~!! Why? Why would they do that? Are the Gods cursing me?!";
next;[/codebox]

Also, couldn't the else ifs in Kato be put into one else if since its the same dialogue:
[codebox] else if (metto_q == 6 || metto_q == 7 || metto_q == 8 || metto_q == 9) {
mes "I am interested in researching artificial intelligence. You know, like robots.";
next;
mes "[Kato]";
mes "I know it a very difficult feat to accomplish, but where there's a will, there's a way.";
next;
mes "[Kato]";
mes "If you ever see something really amazing like this, you'll know its my handiwork.";
close;
}[/codebox]