diff options
author | Mhalicot <sevenzz23@yahoo.com> | 2013-12-03 13:30:17 +0700 |
---|---|---|
committer | Mhalicot <sevenzz23@yahoo.com> | 2013-12-03 13:40:23 +0700 |
commit | 6c7ae76facc1191e47a43c3ea76d2c2c30025d85 (patch) | |
tree | 3754c73f5a6a1b6683951d5ec01d655411ec67c1 /npc/custom | |
parent | d1c60b8d70e1af8ec9be00fed902ab3a7ee69b56 (diff) | |
download | hercules-6c7ae76facc1191e47a43c3ea76d2c2c30025d85.tar.gz hercules-6c7ae76facc1191e47a43c3ea76d2c2c30025d85.tar.bz2 hercules-6c7ae76facc1191e47a43c3ea76d2c2c30025d85.tar.xz hercules-6c7ae76facc1191e47a43c3ea76d2c2c30025d85.zip |
Fixed error when unbinding items, removed /* */
Diffstat (limited to 'npc/custom')
-rw-r--r-- | npc/custom/itembind.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/itembind.txt b/npc/custom/itembind.txt index 916c57a46..8462b1515 100644 --- a/npc/custom/itembind.txt +++ b/npc/custom/itembind.txt @@ -63,7 +63,7 @@ prontera,144,174,4 script Bound Items 4_M_JP_MID,{ logmes "Bound "+ @inventorylist_amount[.@item]+" "+@inventorylist_id[.@item]+" as "+.boundtypes$[.@boundtype]+" type."; } } else { - /*if(!countbound()) { + if(!countbound()) { mes "You don't have any bound items in your inventory. Not much I can do here."; close; } @@ -74,7 +74,7 @@ prontera,144,174,4 script Bound Items 4_M_JP_MID,{ mes "You don't have enough to unbind an item."; close; } - }*/ + } getinventorylist(); for(.@i = 0; .@i < @inventorylist_count; .@i++) { if(@inventorylist_bound[.@i]) { |