- Joined
- Mar 10, 2023
- Messages
- 9
- Reaction score
- 3
- First Language
- Filipino
- Primarily Uses
- RMMV
I've moved this thread to Plugin Requests (from MZ Support). Thank you.
There is a plugin called KeyItemAlone that ships with RMMV. It shows only Key Items, i.e. a sub-category of items. On the Steam version (probably similar for standalone) it can be found at:
Window_ItemCategory.prototype.makeCommandList = function() {
this.addCommand(TextManager.item, 'item');
this.addCommand(TextManager.weapon, 'weapon');
this.addCommand(TextManager.armor, 'armor'); // delete or comment out
this.addCommand(TextManager.keyItem, 'keyItem');
};
Window_ItemCategory.prototype.maxCols = function() {
return 4; //return 3
};