Issue information

Issue ID
#5056
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Sep 16, 2011 10:10
Last Post
Hercules Elf Bot
Mar 5, 2012 15:48
Confirmation
N/A

Hercules Elf Bot - Sep 16, 2011 10:10

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

Since r14409.

CODE
//=================================================Range NPC====================================================
prt_castle,94,150,4    script    #sound_tu    139,10,10,{
OnTouch_:
    if(tu_archer02 != 6) {
        mes "[Minister]";
        mes "Contact the";
        mes "Prontera Church.";
        mes "Hurry, this is urgent!";
        set tu_archer02, 7;
        close;
    }
    end;
}


This used to be:

CODE
        if(tu_archer02 != 6) end;
        mes "[Minister]";
        mes "Contact the";
        mes "Prontera Church.";
        mes "Hurry, this is urgent!";
        set tu_archer02, 7;
        close;


Who knows why it was changed like this, but it pretty much pops up the message for anyone now.

This post has been edited by BrianL: Sep 16 2011, 11:20 AM