Hi After Midnight Games,
I'm really glad to hear that Faster Deposit/Withdraw is working perfectly for your use case!
You can also disable the item actions window completely with the Item Actions plugin. If you leave the actions notetag empty like this:
<actions>
</actions>
The plugin will detect that there are no options and skip opening the item actions window entirely.
Just to clarify on notetags: <maxWeight:number> is a valid notetag in the plugin. It increases the party's max weight when that item is in the inventory. You can also use negative values like <maxWeight:-10> to reduce the party's max weight. There are several other useful ones too, like <equipWeight:number>, which grants extra inventory space while the item is equipped. The help file has a full list with examples.
For storing inventory values in variables: You can pull the current and max inventory values with these script calls:
- Current inventory weight/slots used: $gameContainers.getCurrentPartyInventoryWeight();
- Max inventory weight/slots: $gameContainers.getCurrentPartyInventoryMaxWeight();
Use a Control Variables event command, set it to "Script", and paste one of those in. This works for both "Item Weight" and "Slot Based" modes.
Please let me know if you run into any issues or have other questions. I’m always happy to help, and I really appreciate bug reports too. I stay active with updates based on community feedback.
Best of luck with your project!












