RPG Maker MV

RPG Maker MV

Michael the Wild 2015 年 12 月 26 日 上午 4:08
How can I make a customized Inventory?
Hi, I'm completely new to RPG Maker MV.

I want to create a game without Weapons, Armors and Key Items, how can I remove these Options from the Inventory Screen?
Is there a recommended plugin for that sort of things?

Thanks in advance!
< >
目前顯示第 1-2 則留言,共 2
Sabi 2015 年 12 月 26 日 下午 5:31 
I haven't seen a plugin that specifically does what you want. Here's a very quick code snippet that you can put in a .js plugin, though:

Window_ItemCategory.prototype.makeCommandList = function() {
this.addCommand(TextManager.item, 'item');
};

Just put this in a .js file and place it in your project/js/plugins folder and activate it. This will cause the item scene to not show weapons, armors, or key items, but the scene will still have the command bar that now only shows the command "item", so it may not be quite the clean transition you're looking for. However, just to have the item scene not show these commands, this will work.

Also, it is entirely possible to make your own item scene and use your own windows or the same windows in RPGM. If you are interested, there are some RPG Maker MV Javascript tutorials online.
Michael the Wild 2015 年 12 月 27 日 上午 1:32 
That helped a lot! Thank you so much ^^
< >
目前顯示第 1-2 則留言,共 2
每頁顯示: 1530 50

張貼日期: 2015 年 12 月 26 日 上午 4:08
回覆: 2