An open library of RPG Maker MV plugins, powered by the community.

PGMV - The Community-Driven Plugin Library for RPG Maker MV

MV plugins

FTKR Item Box Capacity - FTKR_ItemBoxCapacity.js

Plugin desc : v1.0.1 Add capacity to item box

License : MIT License

Author : Futokoro

Desc page : https://github.com/munokura/futokoro-MV-plugins

Download Page : https://raw.githubusercontent.com/munokura/futokoro-MV-plugins/refs/heads/master/FTKR_ItemBoxCapacity.js

File name : FTKR_ItemBoxCapacity.js

Help of plugin :

@plugindesc v1.0.1 Add capacity to item box
@author Futokoro
@url https://github.com/munokura/futokoro-MV-plugins
@license MIT License

@help
English Help Translator: munokura
This is an unofficial English translation of the plugin help,
created to support global RPG Maker users.
Feedback is welcome to improve translation quality
(see: https://github.com/munokura/futokoro-MV-plugins ).
Original plugin by Futokoro.
Please check the URL below for the latest version of the plugin.
URL https://github.com/futokoro/RPGMaker
-----
-----------------------------------------------------------------------------
Overview
-----------------------------------------------------------------------------
Implementing this plugin will increase the item box's inventory capacity.

Also, if the maximum item stack size is exceeded, you can stack items separately.

-----------------------------------------------------------------------------
Setup Instructions
-----------------------------------------------------------------------------
1. Add this plugin to the "Plugin Manager."

2. Existing save data cannot be used.

-----------------------------------------------------------------------------
Setting the Item Box Capacity
-----------------------------------------------------------------------------
You can set the item box's inventory capacity.
To use this function, enable the plugin parameter <Enable Capacity>.

Setting the inventory capacity limits you to the number of items in that category.
You cannot possess more items than this number, and any items you acquire will be automatically discarded.

If you set the item capacity to 10, you can only possess 10 different items.
This does not affect how many of each item you have.

There are three categories that can be set: "Items," "Weapons," and "Armor."
"Key Item" are included in the "Items" category.

You can determine whether your item box has space using the following script:

$gameParty.isItemsCapacityOk() - Item capacity
$gameParty.isWeaponsCapacityOk() - Weapon capacity
$gameParty.isArmorsCapacityOk() - Armor capacity

To set capacity:
1. Set the [Initial Value] in the plugin parameters.
<Item Capacity>
<Weapon Capacity>
<Armor Capacity>
: Setting this to 0 will set the capacity to unlimited.

2. Set the [Additional Capacity] in the plugin command.
This additional capacity is calculated separately from the plugin parameter value.

IBC_SET_CAPACITY [category] [value] [calc_method]

The [Category] entry specifies which category's capacity to change.
ITEM
WEAPON
ARMOR

[Value] entry
¥V[x] can be used to reference the value of the in-game variable ID x.

The [Calculation Method] entry specifies how the [Value] is calculated.
If no calculation method is specified, substitution will be applied.
ADD or +
SUBTRACT or -
MULTIPLY or *
DIVIDE or /
MOD or %
SUBSTITUTE or =

Example)
IBC_SET_CAPACITY ITEM 10 ADD
IBC_SET_CAPACITY ARMOR ¥V[1] SUBSTITUTE
IBC_SET_CAPACITY WEAPON 5 SUBTRACT


The above settings will result in the following inventory capacity:

Capacity = Initial Value + Additional Amount

----------------------------------------------------------------------------
Item Stack Settings
-----------------------------------------------------------------------------
In the item box, each item is displayed on its own line.
The inventory count shows how many of that item you have.
This is the item stack.

This plugin allows you to change this stacking function.
To use this function, enable the plugin parameter <Enable Capacity>.

You can set the maximum number of stackable items using the following methods.

1. Set it in the plugin parameter
<Max Stack Number>

2. Enter the following tag in the item's Note field:
<IBC_STACK: x>
: x - Maximum Stack Number

If settings overlap, the Note field setting takes priority.
You cannot possess more items than this setting, and any obtained items will be automatically discarded.

By enabling the plugin parameter <Enable Duplicate Stack>,
you can possess more items than the stack limit.
Items exceeding the stack limit will be displayed on a separate line.
Note that items displayed on this separate line are counted as separate items in your inventory.

For example, if you have 20 "Potions" and the maximum stack limit is 10,
two "Potion" lines will be created.
This counts as two types of items.

-----------------------------------------------------------------------------
License for this plugin
-----------------------------------------------------------------------------
This plugin is released under the MIT License.

Copyright (c) 2017,2018 Futokoro
http://opensource.org/licenses/mit-license.php

-----------------------------------------------------------------------------
Change History
-----------------------------------------------------------------------------

v1.0.1 - 2018/09/22: Fixed a bug that prevented the script from working properly.
v1.0.0 - 2017/06/09: First version created

-----------------------------------------------------------------------------

@param --アイテムボックス容量設定--
@text --Item box capacity setting--

@param Item Capacity
@desc Item carrying capacity: 0 - unlimited, 1~ - specified number
@default 0

@param Weapon Capacity
@desc Weapon Capacity: 0 - Unlimited, 1~ - Specified number
@default 0

@param Armor Capacity
@desc Armor carrying capacity: 0 - unlimited, 1~ - specified number
@default 0

@param --スタック設定--
@text --Stack Settings--

@param Display Number of Digit
@desc Set the number of digits to display for the number of items you own. If the number of digits you own exceeds the number of digits to display, it will be compressed horizontally.
@default 2

@param Max Stack Number
@desc Maximum stack count
@default 99

@param Enable Duplicate Stack
@desc Can duplicate items be stacked? 1 - Allowed, 0 - Not allowed
@default 0

@param --購入設定--
@text --Purchase Settings--

@param Max Buy Number
@desc Maximum number of items that can be purchased at one time
@default 99

スポンサードリンク

-MV plugins

Copyright© PGMV - The Community-Driven Plugin Library for RPG Maker MV , 2026 All Rights Reserved.