I just noticed that the text for the player header and storage header windows is not centered.
It is because you are using the direct width which the player set for the window instead of simply using 'contents.width' for the width of the text. Replace them with 'contents.width' and it will be centered correctly.
Thanks for the gold option! *-*
@Killok
To disable the item categories, set 'nil' for their text settings.
To disable deposit/withdraw options, set...
Wait, that is not possible right now, I think.
But coding this isn't hard at all.
Here is what you need to do for it:
Search for 'Window_SS_Category < Window_HorzCommand'.
In this class, go to the 'col_max' definition.
Replace that whole definition with this:
def col_max categ = ADIK::SHARED_STORAGE::SS_CATEGORY_WINDOW[$shared_storage_number] categ = ADIK::SHARED_STORAGE::SS_CATEGORY_WINDOW[0] if categ.nil? if categ[5].nil? || categ[6].nil? return 1 else return 2 end endNow go a bit further down and you will see the 'make_command_list' definition.Replace that definition with this one:
Code:
def make_command_list categ = ADIK::SHARED_STORAGE::SS_CATEGORY_WINDOW[$shared_storage_number] categ = ADIK::SHARED_STORAGE::SS_CATEGORY_WINDOW[0] if categ.nil? add_command(categ[5], :deposit, true) unless categ[5].nil? add_command(categ[6], :withdraw, true) unless categ[6].nil? end
Now you can do the same with the deposit/withdraw options as with the item category options. Set the text for them to nil to disable them.