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!

Change terms shown on the menu screen?

ensignkris

Villager
Xy$
0.00
So in the menu screen of "Items" it normally shows item, weapon, armor and key item.
But for the game I'm making, I have no need for the weapon and armor.
I know that i can rename the 'key item' to anything in the system, but can I remove those
weapon and armor tab? Is it possible with a plugin or?
 

Run

Towns Guard
Xy$
0.00
It's possible to remove them. There's likely some menu plugins existing already for it, as custom menus are popular, just look around.
If not, I'll make one later today when I have more free time.
 

CT_Bolt

Global Moderator
Staff member
Resource Team
Xy$
0.02
Add this to your plugins. (cute)
JavaScript:
Window_ItemCategory.prototype.maxCols = function() {return 2;};
Window_ItemCategory.prototype.makeCommandList = function() {
   this.addCommand(TextManager.item,    'item');
   this.addCommand(TextManager.keyItem, 'keyItem');
};
Should do the trick. (wink)(thumbsup)
It's just a very small edit to the original core code. Let me know how that works for you. (glad)

Attached a .js file for convenience. (cool)(icecream)
 

Attachments

Top