FEATURES
A scene that allows the player to store items and retrieve them later. Also now includes a bank to store gold.
Includes a variety of script calls for eventing purposes.
Includes options to customize the vocab of the scene as well as other options such as allowing the player to store key items or not.
DOWNLOAD:
Get it here >
is there a way to make an interest rate of the gold in your bank?
so you gain a percent of money added to your bank after some time?
There’s no feature to do that as part of this script, but using the script calls I provided:
bank_add(amount)
bank_count
You could use eventing knowledge and common events to make it happen.
how do you count gold?
Using Control Variables event command you can use the ‘Script’ field in there and add:
bank_count
That will use the amount of gold you have in the bank in the variable.
oh so if you just put the bank_count command without the id and other stuff it will count gold?
All banks use the same gold, I didn’t make the gold separate. Putting ‘bank_count’ returns how much gold the player has banked. Putting ‘bank_count’ in a variable allows you to do something with that number.
kk cool, nd I’m only using one bank so ya… thanks bro.
Where should I put the script?
Below the “Materials” heading and above the “Main” heading in your script editor.
This script is pretty great and i look forward to playing with it, but i do have a question… is there a way to “add all” to a storage box via script call? I’m trying to make up a game where the main character changes at different parts of the story and am hoping to avoid the default shared inventory.
Not currently implemented in this script. There are scripts out there made for party inventories that you mention. Tsukihime has written some you might be interested in
much thanks for the super fast reply! I’m looking Tsukihime up now!
i got the script in my game but how do i acces the bank in the game?
The script calls you can use are at the top of the script.
Tab 3 of your event commands is ‘Script…’ event command. Add:
open_storage
I can’t understand how to make more than one bank. I always opened the same >:
There is a whole paragraph explaining it in the instructions :(
And if you still don’t understand, download the demo and look at the chest events.
When I try to run the script, it complains with this:
Script ‘script name’ line 142: NoMethofError occured.
undefined method'[]’ for nil:NilClass
What happen?!
Not sure. Go through this checklist to try to find out.
https://galvs-scripts.com/errors-using-scripts/
‘Kay. I’ll check it out and will report. (in case I need to ask for more help)
It works now. Thanks for the help, and thanks for the scripts; they’re AWESOME!!!!
hi, is it possible to have alreadyone item of my choice in the bank the first time i open it ?
Yes, it tells you how to add items to it in the script instructions
oh sorry didn”t see it ^^
bank_add(X) works but store_add (“item”, 1, 10) don’t…why ?
store_add (“weapon”, 1, 1) don’t work either….
Download the demo to try to work out if you are doing something wrong. I had a quick look and it’s working in the demo so I don’t know why yours wouldn’t.
Sorry, I don’t have time lately to personally help everyone :(
This is a fantastic script. I appreciate you sharing it. I was wondering if you’d help me out with something. Is there by chance a script call that would allow for changing the inventory limit mid-game? I’d like to allow for bag upgrades as the game progresses. Thanks again.
Sorry, I’m too busy to do requests right now :(
Galvs, Would you like to change your script so that it can only store fruit. More like it already exists to deposit items can I have another script in the list? Because it is giving error to have two equal scripts.
Sorry, I dont have time to do requests :(
Great script sir.
Is there a way that I can check my inventory limit (like 6/30) or I have to guess how many itens my characters are carrying by counting them on my inventory?
Please ask support questions at an rpgmaker forum. Thanks
Well, since its your script I thought I could ask here.
All i asked for is if theres a hud or something during the bank scene to check how many itens i have/limit.
Sorry, I did not add that to the script. But asking in a forum people might be able to assist :)
I’ve had this issue before, but was never able to trace it completely until now.
To make sure that it wasn’t a compatibility issue, I tested the script in a new project with no other scripts present and here is what I found using the version 1.7 of this script:
When you use the store_count command, it will count the specified items in the storage bank. However, if you save the game and return to it in a save game, for some reason, the count will always register ‘0’ despite the storage still retaining the same amount of items previously deposited into the bank storage. This only occurs in a saved game, and not a fresh game that hasn’t been saved yet.
In other words, this makes it difficult for quest that relies on an item count inside the storage bank especially if a player decides to save a game in the middle of a quest, and come back to it later at a later time.
I’ve also noticed as a side effect, that if any new items are added to the bank storage after the save, they are deposited into a new pile in the bank storage instead of combining with the previous pile. For example: 20x potions from a previous save, then 10x potions creates another pile from present gameplay. This occured without the use of a stack qty control. Furthermore, the store_count feature only counts the present pile added during the current game session, and not all of the items of the same ID and type in the storage.
Hi Privateer – thanks for bringing this to my attention and thank you for the explanation, it helped a lot to find the bug.
I know what the cause is and it’s a big issue that I overlooked and will actually require a rewrite of how it works. I will get to it as soon as I can but not sure when that will be.
I’m glad I could be of help. I’m sure you’re quite busy, but I do like your scripts, so I figured it would help to bring it to your attention. Keep up the great work.
I have re-written a bunch of stuff with how to script works. Any saved games you have before updating the script will no longer work correctly, unfortunately (I am going to guess stored items will vanish), as the container code had to be re-written.
But version 1.8 should solve the issues Privateer found