Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

How to Only show certain parts of the inventory

So I'm working on a game that's more puzzle and story based kinda like OneShot and I want to make it so that when you open the menu the only thing that appears is the key items section
 

Selvalanch

Villager
Xy$
0.00
Open rpg_windows.js

look at line 1888 - 1893 Window_ItemCategory Function. Copy this function and paste it in new js file. delete 'item' 'weapon' 'armor' line. save. then add your new js file to game as plugin.
 
Open rpg_windows.js

look at line 1888 - 1893 Window_ItemCategory Function. Copy this function and paste it in new js file. delete 'item' 'weapon' 'armor' line. save. then add your new js file to game as plugin.
Between those two lines the only thing I see is
Code:
};

Window_ItemCategory.prototype.setItemWindow = function(itemWindow) {
    this._itemWindow = itemWindow;
    this.update();
};
I don't see item weapon or armor
 
Top