added missing labels

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7547 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Lupus 2006-07-06 08:18:44 +00:00
parent 10160ebcfc
commit bb9b14d4fd
2 changed files with 14 additions and 11 deletions

View File

@ -39,6 +39,7 @@ Playtester
Date Added Date Added
====== ======
07/05 07/05
* fixed missing labels socket_enchant.txt [Lupus]
* Standardized NPCs quest/quests_city headers, now says 'Quest NPCs related to' * Standardized NPCs quest/quests_city headers, now says 'Quest NPCs related to'
- Also fixed typos in those NPC city headers [Evera] - Also fixed typos in those NPC city headers [Evera]
* Removed that Dbbug announce line from the 2004 headgears quest npc. * Removed that Dbbug announce line from the 2004 headgears quest npc.

View File

@ -3,14 +3,14 @@
//===== By: ================================================== //===== By: ==================================================
//= Sousuke_PL //= Sousuke_PL
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 0.1 //= 0.1a
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena SVN //= eAthena SVN
//===== Description: ========================================= //===== Description: =========================================
//= item loses all element refinement and upgrades but //= item loses all element refinement and upgrades but
//= cards too? //= cards too?
//===== Additional Comments: ================================= //===== Additional Comments: =================================
//= 0.1 //= 0.1a added missing L_No: to 2 funcs [Lupus]
//============================================================ //============================================================
@ -512,9 +512,6 @@ lhz_in02.gat,281,35,5 script Socket Enchant 84,{
set @newitem,5165; set @newitem,5165;
callfunc "f_armor_s2"; callfunc "f_armor_s2";
//============================================================ //============================================================
//= Other //= Other
//============================================================ //============================================================
@ -524,11 +521,6 @@ lhz_in02.gat,281,35,5 script Socket Enchant 84,{
mes "Bye~!"; mes "Bye~!";
close; close;
L_No:
mes "[Socket Enchant]";
mes "Ok, Bye.";
close;
} }
//============================================================ //============================================================
@ -582,7 +574,12 @@ function script addslot {
mes "[Socket Enchant]"; mes "[Socket Enchant]";
mes "Sorry, but i could't upgrade it."; mes "Sorry, but i could't upgrade it.";
close; close;
L_No:
mes "[Socket Enchant]";
mes "Ok, Bye.";
close;
} }
//============================================================ //============================================================
@ -636,6 +633,11 @@ function script addslot2 {
mes "Sorry, but i could't upgrade it."; mes "Sorry, but i could't upgrade it.";
close; close;
L_No:
mes "[Socket Enchant]";
mes "Ok, Bye.";
close;
} }