diff options
author | Jared Adams <jaxad0127@gmail.com> | 2008-12-23 17:16:49 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2008-12-23 17:18:37 +0000 |
commit | b1ced66321ffed02cde1a9ccd39fa2c9ba004125 (patch) | |
tree | 87b2f8639b8e1b79125ebdd77f71d19305d0084c /npc/020-2_Nivalis/furquest.txt | |
parent | 2ac5f8a1dfa5482dc1fee2bbd41b5e0eb0928abd (diff) | |
download | serverdata-b1ced66321ffed02cde1a9ccd39fa2c9ba004125.tar.gz serverdata-b1ced66321ffed02cde1a9ccd39fa2c9ba004125.tar.bz2 serverdata-b1ced66321ffed02cde1a9ccd39fa2c9ba004125.tar.xz serverdata-b1ced66321ffed02cde1a9ccd39fa2c9ba004125.zip |
Fixeds to check for invy room before giving items
Diffstat (limited to 'npc/020-2_Nivalis/furquest.txt')
-rw-r--r-- | npc/020-2_Nivalis/furquest.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/020-2_Nivalis/furquest.txt b/npc/020-2_Nivalis/furquest.txt index 4d67f8c4..5c2c00df 100644 --- a/npc/020-2_Nivalis/furquest.txt +++ b/npc/020-2_Nivalis/furquest.txt @@ -222,6 +222,8 @@ L_State_5: L_State_5_pay: if (zeny < 15000) goto L_State_5_nocash; + getinventorylist; + if (@inventorylist_count == 100) goto L_TooMany; set zeny, zeny-15000; getitem 563, 1; set QUEST_WG_state, 6; @@ -326,4 +328,8 @@ L_State_13: mes "\"You are so glamourous, my dear friend!"; mes "I have done a very good job on your clothes!\""; close; + +L_TooMany: + mes "[Agostine, The Legendary Tailor]"; + mes "\"You don't have anywhere to put them. Come back when you do."; } |