diff options
author | shadowlady <shadowlady@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-07 23:45:57 +0000 |
---|---|---|
committer | shadowlady <shadowlady@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-07 23:45:57 +0000 |
commit | 1757fbe16d27f8dd178414202caec7b9e88f342b (patch) | |
tree | 8ce5f4a948e9c96924b198bc329eb3073bfbde99 /npc/jobs/novice | |
parent | 638f1dd43e840582fc6042c9aaa85a2a137163dd (diff) | |
download | hercules-1757fbe16d27f8dd178414202caec7b9e88f342b.tar.gz hercules-1757fbe16d27f8dd178414202caec7b9e88f342b.tar.bz2 hercules-1757fbe16d27f8dd178414202caec7b9e88f342b.tar.xz hercules-1757fbe16d27f8dd178414202caec7b9e88f342b.zip |
Fixed A wrong label calling. Resulting in npc not ending the talk.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@53 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/novice')
-rw-r--r-- | npc/jobs/novice/novice.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/jobs/novice/novice.txt b/npc/jobs/novice/novice.txt index 4710d6cda..6e8ea3146 100644 --- a/npc/jobs/novice/novice.txt +++ b/npc/jobs/novice/novice.txt @@ -102,7 +102,6 @@ new_1-2.gat,100,29,4 script Usher 86,{ mes "[Usher]";
mes "Welcome to the ^FF0000Training Ground^000000 .";
mes "Please choose ^0099FFIntroduction^000000 first if you need to check detailed information about Training Ground.";
- Lmenu:
next;
menu "Sign Up on the Training Ground.",Lsign,"Direct Access to Ragnarok.",Ldirect,"^0099FFIntroduction.^000000",Lintro,"Cancel.",Lcancel;
@@ -201,7 +200,9 @@ new_1-2.gat,100,29,4 script Usher 86,{ mes "[Usher]";
mes "If you want to apply on the Training Ground, Please choose 'Sign Up on the Training Ground'.";
mes "if you not, choose 'Direct Access to Ragnarok'.";
- goto Lmenu;
+ next;
+ menu "Sign Up on the Training Ground.",Lsign,"Direct Access to Ragnarok.",Ldirect,"^0099FFIntroduction.^000000",Lintro,"Cancel.",Lcancel;
+ close;
Lcancel:
mes "[Usher]";
|