NuKa_BuBble 2 Report post Posted April 12, 2012 (edited) Scripts: ~ Scene_Bank (Main) ~ NUKA - Adv_BAC (ADD-ON) ~ NUKA - Adv Inventory System (ADD-ON) ~ NUKA - Bank Interrests (ADD-ON) -> Can be delete if you use the inventory system. Tell me if you find spelling errors, if you have an update idea or if the script crash. Version: 2.1 ~ 1.x: Global variables deletes and bug fix ~ 2.0: Half of the script rewrite! ~ 2.1: Add-On Scripts added! Features to add: ~ Add-ons script that add features to this one. ~ Rewrite the calling method (Only at the end) Add-ons to make: ~ Lost golds when the player die ~ Cost for running away from the fight ~ Add a mail system (For the interrests. Could be use for something else.) ~ Add a melting system (To create gold ingots, copper ingots and silver ingots. Could be use for other things.) Any other idea? What I do on it yet? Actually nothing Instructions: I made a bank that handle the items, weapons, armors and golds. This is an heavy script of almost 1850 lines. Call it by using: $scene = Scene_VerifyBankAccount.new Demo/Script: Demo Here Screenshots: Store golds. Main script. Store an item. Main script. The name input. Add-On. Personalized message. Add-On. ____________________________________________________________________________________________________ Please, give credits. If you don't, at least, don't claim as your own! ____________________________________________________________________________________________________ Edited April 12, 2012 by NuKa_BuBble 1 Jon Bon reacted to this Share this post Link to post Share on other sites
Thallion 0 Report post Posted May 21, 2012 This looks pretty cool, except from the screenshot, I think the opacity should be higher. Share this post Link to post Share on other sites
Polraudio 122 Report post Posted May 21, 2012 Very nice script :D I would set the opacity anywhere from 175-200. Share this post Link to post Share on other sites
Heretic86 25 Report post Posted May 29, 2012 I'd prefer if I had the control to give it what ever window skin I wanted so it matches the style of whatever game anyone comes up with, no offense, but non customized window transparency, or at least make it optional. So I ran into this bug after I deposited ALL my Gold. Adv Inventory System - line 667 nil cant be coerced into a Fixnum Still a few bugs to work out... Share this post Link to post Share on other sites
Saltome 16 Report post Posted September 27, 2012 Actually that bug occurs when the script tries to add interest that equals zero to your account. Basically there is no failsafe to prevent the code from passing an empty variable to the function that crashes. To solve it go to "NUKA - Adv Inventory System" script, and replace lines 3597, 3598 and 3599 with these: $game_party.store_inbank_copper(@copper_interrest) if @copper_interrest!=nil $game_party.store_inbank_silver(@silver_interrest) if @silver_interrest!=nil $game_party.store_inbank_gold(@gold_interrest) if @gold_interrest!=nil 1 Marked reacted to this Share this post Link to post Share on other sites