Issue information

Issue ID
#277
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Oct 22, 2007 14:37
Last Post
Hercules Elf Bot
Oct 22, 2007 14:37
Confirmation
N/A

Hercules Elf Bot - Oct 22, 2007 14:37

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

In Cities/Morocc there is the same NPC twice.

554-580:

CODE
// Morroc Field
//============================================================
moc_fild16,199,212,4    script    Uncle Assassin#moc    55,{
    mes "[Hashisid]";
    mes "Assassins are trained to approach their enemies steathily, as well as to shroad their intent. For this purpose, we never look our targets in the eye.";
    next;
    if (select("Notion of Assassin:Quit Conversation") == 1) {
        mes "[Hashisid]";
        mes "Assassins may be commonly known as infiltrators and murderers who kill without remorse.";
        next;
        mes "[Hashisid]";
        mes "In actuality, the Assassin clan is forbidden to harm innocent people, or at least, not without good reason.";
        next;
        mes "[Hashisid]";
        mes "Our true directive is to assassinate evil creatures, and to use our stealth to gather intelligence for the good of all Rune-Midgard.";
        close;
    }
    mes "[Hashisid]";
    mes "Once upon a time, our ancestors would smoke tobacco before performing their duties.";
    next;
    mes "[Hashisid]";
    mes "However, we no longer do so, since insect or animal monsters are very senstive to the smell.";
    next;
    mes "[Hashisid]";
    mes "There are many factors that contribute to successful stealth. Depending on your opponent, it's not enough to just be invisible sometimes...";
    close;
}


and 692-713:

CODE
// Hashisid ====================================
moc_fild16,199,212,4    script    Hashisid    48,{
    mes "[Hashisid]";
    mes "For Assassins, it is important not to look a target in the eye.  If a target is smart, he/she may be able to tell what you're up too.";
    next;
    menu "About Assassins",M_0,"Quit Conversation",M_End;
    
    M_0:
        mes "[Hashisid]";
        mes "Let me tell you a little bit about Assassins";
        next;
        mes "[Hashisid]";
        mes "Assassin's are hired to infiltrate, gather intelligence, and even commit murder without being seen or heard.";
        mes "Stealth and speed are vital to Assassins.  Assassins live in the shadows and never get praise or congratulations.";
        next;
        mes "[Hashisid]";
        mes "It's their job to go unnoticed.  Though an Assassin may seem like a cruel and heartless individual....";
        mes "An Assassin will never do any harm to an innocent being.  The main purpose of the Assassin to seek out and destroy evil forces!";
        close;
    M_End:
        close;
}


I guess the 692-713 one is from before the Aegis conversion and was simply not removed.