diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-15 12:02:39 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-15 12:02:39 +0000 |
commit | a27c24d8a2e7c8a61adda584e345d2dee25f2de0 (patch) | |
tree | 4d30c2ef23c39b8f3932da8e052a533e097a2043 /npc/merchants | |
parent | 4813b88b4cab743ed22fed7262efd7b84d0396e0 (diff) | |
download | hercules-a27c24d8a2e7c8a61adda584e345d2dee25f2de0.tar.gz hercules-a27c24d8a2e7c8a61adda584e345d2dee25f2de0.tar.bz2 hercules-a27c24d8a2e7c8a61adda584e345d2dee25f2de0.tar.xz hercules-a27c24d8a2e7c8a61adda584e345d2dee25f2de0.zip |
Modified npc/merchants/clothes_dyer.txt, so that he refuses to dye your clothing like it is on official servers right now.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6074 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/merchants')
-rw-r--r-- | npc/merchants/clothes_dyer.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/merchants/clothes_dyer.txt b/npc/merchants/clothes_dyer.txt index e0cff38e3..95c21cfb5 100644 --- a/npc/merchants/clothes_dyer.txt +++ b/npc/merchants/clothes_dyer.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= Usnul
//===== Current Version: =====================================
-//= 2.2b
+//= 2.4
//===== Compatible With: =====================================
//= eAthena 1.0+
//===== Description: =========================================
@@ -15,6 +15,11 @@ //= 2.1a - added adv classes + abby class support [Lupus]
//= 2.2 – Spell checked. [Nexon]
//= 2.3 - Fixed dis $hit! [Poki#3]
+//= 2.4 - Disabled cloth dyeing since it's not implemented
+// on official servers and cause your client to crash
+// [Playtester]
+//============================================================
+//Note: To enable it, replace L_Busy with L_Dye
//============================================================
@@ -24,7 +29,7 @@ prt_in.gat,284,168,2 script Dyer Ginedin Rephere 55,{ mes "11... 12... Mmm... good. I think I'll be able to finish before tonight’s party. Oh! I didn't notice that you were here. Anyway how may I assist you?";
M_Menu:
next;
- menu "-Talk",L_Talk,"-Dye Clothing",L_Dye,"-Price list",L_PriceList,"-Cancel",L_End;
+ menu "-Talk",L_Talk,"-Dye Clothing",L_Busy,"-Price list",L_PriceList,"-Cancel",L_End;
L_Talk:
mes "[Dyer Ginedin Rephere]";
@@ -358,6 +363,10 @@ sL_NoDye: mes "For me to dye your clothes, I'll need the appropriate Dyestuff. Please check my price list for the information.";
next;
+L_Busy:
+ mes "Sorry, I'm too busy with other jobs to dye your clothes.";
+ goto M_Menu;
+
L_PriceList:
mes "[Dyer Ginedin Rephere]";
mes "Here is the list of colors you can choose from and their prices:";
|