diff options
Diffstat (limited to 'npc/items/emptybox.txt')
-rw-r--r-- | npc/items/emptybox.txt | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/npc/items/emptybox.txt b/npc/items/emptybox.txt index ec667ebdc..2f676b115 100644 --- a/npc/items/emptybox.txt +++ b/npc/items/emptybox.txt @@ -18,10 +18,11 @@ OnUse: mesc l("Fill with what?"); select l("Don't fill"), - rif(countitem(GrassCarp) >= 7, l("7 Grass Carp")), - rif(countitem(Croconut) >= 8, l("8 Croconut")), - rif(countitem(CommonCarp) >= 20, l("20 Common Carp")), - rif(countitem(Plushroom) >= 87, l("87 Plushroom")); + rif(countitem(GrassCarp) >= 7, l("7 Grass Carps")), + rif(countitem(Croconut) >= 8, l("8 Croconuts")), + rif(countitem(CommonCarp) >= 20, l("20 Common Carps")), + rif(countitem(Aquada) >= 50, l("50 Aquadas")), + rif(countitem(Plushroom) >= 87, l("87 Plushrooms")); mes ""; switch (@menu) { case 2: @@ -37,6 +38,10 @@ OnUse: getitem FishBox, 1; break; case 5: + delitem Aquada, 50; + getitem AquadaBox, 1; + break; + case 6: delitem Plushroom, 87; getitem PlushroomBox, 1; break; |