summaryrefslogtreecommitdiff
path: root/npc/011-1_Woodland
diff options
context:
space:
mode:
authorFate <fate-tmw@googlemail.com>2008-12-24 10:01:01 -0700
committerFate <fate-tmw@googlemail.com>2008-12-24 10:01:01 -0700
commitb9b23fe20e0563523e83a224d1e68886512bb783 (patch)
tree12d82a9991c20100a176f8e7a5d93ce61988773e /npc/011-1_Woodland
parent44feb664401d24a0cd4cfb380d22d5ee6c512fd2 (diff)
downloadserverdata-b9b23fe20e0563523e83a224d1e68886512bb783.tar.gz
serverdata-b9b23fe20e0563523e83a224d1e68886512bb783.tar.bz2
serverdata-b9b23fe20e0563523e83a224d1e68886512bb783.tar.xz
serverdata-b9b23fe20e0563523e83a224d1e68886512bb783.zip
Minor fixes and extensions to inventory limit checks
Diffstat (limited to 'npc/011-1_Woodland')
-rw-r--r--npc/011-1_Woodland/alchemist.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/011-1_Woodland/alchemist.txt b/npc/011-1_Woodland/alchemist.txt
index fa088345..6329a5d6 100644
--- a/npc/011-1_Woodland/alchemist.txt
+++ b/npc/011-1_Woodland/alchemist.txt
@@ -408,7 +408,7 @@ L_dark_blue:
if (countitem(@PEARL) < 1) goto L_dark_blue_fail;
if (zeny < 10000) goto L_dark_blue_fail;
getinventorylist;
- if (@inventorylist_count == 100 && countitem(@BLUE) > 100 && countitem(@MAUVE) > 20 && countitem(@PEARL) > 2) goto L_TooMany;
+ if (@inventorylist_count == 100 && countitem(@BLUE) > 100 && countitem(@MAUVE) > 50 && countitem(@PEARL) > 1) goto L_TooMany;
delitem @BLUE, 100;
delitem @MAUVE, 50;
delitem @PEARL, 1;
@@ -436,7 +436,7 @@ L_purple:
if (countitem(@MAUVE) < 20) goto L_purple_fail;
if (countitem(@PEARL) < 1) goto L_purple_fail;
getinventorylist;
- if (@inventorylist_count == 100 && countitem(@BLUE) > 100 && countitem(@RED) > 100 && countitem(@MAUVE) > 20 && countitem(@PEARL) > 2) goto L_TooMany;
+ if (@inventorylist_count == 100 && countitem(@BLUE) > 100 && countitem(@RED) > 100 && countitem(@MAUVE) > 20 && countitem(@PEARL) > 1) goto L_TooMany;
if (zeny < 40000) goto L_purple_fail;
delitem @BLUE, 100;
delitem @RED, 100;