Issue information

Issue ID
#2521
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Dec 7, 2008 21:22
Last Post
Hercules Elf Bot
Mar 5, 2012 9:25
Confirmation
N/A

Hercules Elf Bot - Dec 7, 2008 21:22

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

That's a Error on this is scripts, on paste "Custom", Look it:
CODE
prontera.gat,154,198,5    script    Geovani    805,{
    mes "[Geovani]";
    mes "Hi there my friend,";
    mes "A while ago a very wise man taught me something.";
    next;
    mes "[Geovani]";
    mes "He taught me how to warp people";
    mes "And yesterday i finally mastered it!!";
    next;
    mes "[Geovani]";
    mes "Want me to show you?";
    mes "I can warp you to Gefenia, the old ruins of the rebuild city, Geffen";
    next;
    menu "Sure, Warp Me;)",Mwarpme,"Nah, Don't Try It On me",-;
    close;
Mwarpme:
    warp "gefenia01.gat",    40,    103;    close;
}

It Will Show an Close after Teleporting it's should be "end";
CODE
prontera.gat,154,198,5    script    Geovani    805,{
    mes "[Geovani]";
    mes "Hi there my friend,";
    mes "A while ago a very wise man taught me something.";
    next;
    mes "[Geovani]";
    mes "He taught me how to warp people";
    mes "And yesterday i finally mastered it!!";
    next;
    mes "[Geovani]";
    mes "Want me to show you?";
    mes "I can warp you to Gefenia, the old ruins of the rebuild city, Geffen";
    next;
    menu "Sure, Warp Me;)",Mwarpme,"Nah, Don't Try It On me",-;
    close;
Mwarpme:
    warp "gefenia01.gat",    40,    103;    end;
}