Issue information

Issue ID
#2669
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 15, 2009 13:39
Last Post
Hercules Elf Bot
Mar 5, 2012 9:30
Confirmation
N/A

Hercules Elf Bot - Jan 15, 2009 13:39

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

Not big deal but :
In /npc/cities/einbroch.txt (1.4 version for trunk - revision 13450), line 92
CODE
function    script    EinTower    {
    mes "["+.@name$+"]";
    mes "Good day~";
    mes "I'm " + getarg(0) + ", your";
    mes "guide to exploring";
    mes "the Einbroch Tower.";
    next;
    mes "[" + getarg(0) + "]";
    mes "Einbroch Tower offers";


Must be :
CODE
function    script    EinTower    {
    mes "[" + getarg(0) + "]";
    mes "Good day~";
    mes "I'm " + getarg(0) + ", your";
    mes "guide to exploring";
    mes "the Einbroch Tower.";
    next;
    mes "[" + getarg(0) + "]";
    mes "Einbroch Tower offers";


.@name$ don't exist. (not set).