diff options
author | Fate <fate-tmw@googlemail.com> | 2008-12-24 21:24:57 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2008-12-24 21:24:57 -0700 |
commit | 562a0fdbaa002a49f4763bd07442e2ed32726ab9 (patch) | |
tree | 0e997cd03f8a03e8bf839890318efd15a0242dc2 /npc/013-3_Cave/sword_chest.txt | |
parent | 63006fa540fe6fbddd132be33b39fd28f02a2e0f (diff) | |
parent | e896b785935c661319ade424f473f4442e1878eb (diff) | |
download | serverdata-562a0fdbaa002a49f4763bd07442e2ed32726ab9.tar.gz serverdata-562a0fdbaa002a49f4763bd07442e2ed32726ab9.tar.bz2 serverdata-562a0fdbaa002a49f4763bd07442e2ed32726ab9.tar.xz serverdata-562a0fdbaa002a49f4763bd07442e2ed32726ab9.zip |
Merge branch 'master' into magic
Diffstat (limited to 'npc/013-3_Cave/sword_chest.txt')
-rw-r--r-- | npc/013-3_Cave/sword_chest.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/013-3_Cave/sword_chest.txt b/npc/013-3_Cave/sword_chest.txt index 1cac4879..c570bfcd 100644 --- a/npc/013-3_Cave/sword_chest.txt +++ b/npc/013-3_Cave/sword_chest.txt @@ -13,6 +13,8 @@ L_Yes: if(countitem(537) < 10) goto L_Not_Enough; + getinventorylist; + if (@inventorylist_count == 100 && countitem(537) > 10) goto L_TooMany; delitem 537, 10; getitem 536, 1; mes "[Chest]"; @@ -28,4 +30,9 @@ L_Finished: mes "[Chest]"; mes "You already opened this chest."; close; + +L_TooMany: + mes "[Chest]"; + mes "You don't have room for what ever is inside. Maybe you should try again later."; + close; } |