Lamontgames Battle Actor 1.0.0
by Matthew30903
Introduction
This small plugin allows you to change the maximum number of actors that appear in the menu and in battle independently. There are other scripts that do similar and it is easy to do yourself, but I have yet to see a script that gives control over both independently.
For example: You could have a battle party of 5, but 6 actors on the menu.
Features
- Easy to use.
- Change max menu and battle actors independently.
Screenshots
Spoiler
[/url][url=https://forums.rpgmakerweb.com/attachments/max_actor_menu-png.51128/]
How to Use
Place it below any script that modifies the actor display or battle system.
Plugin
Link
Spoiler//==============================================================================
// Lamontgames Battle Actor
//==============================================================================
/*:
@plugindesc Changes the maximum actors in menu and battle.
@author Matthew Lamont
@Version : 1.0.0
//==============================================================================
// Plugin Commands
//==============================================================================
@param Max Battle Actor
@desc The number of actors in Battle.
@default 5
@param Max Menu Actor
@desc The number of actors displayed on menus at once.
@default 5
@help
//==============================================================================
// Introduction
//==============================================================================
This plugin gives developers the ability to set the maximum number of actors in
battle and the displayed actors on the menu.
*/
//==============================================================================
// Param Variables
//==============================================================================
(function() {
var parameters = PluginManager.parameters('Lamontgames_Battle_Actor');
var new_max_battle = Number(parameters['Max Battle Actor']);
var new_max_menu = Number(parameters['Max Menu Actor']);
//==============================================================================
//MenuStatus and BattleMembers
//==============================================================================
Game_Party.prototype.maxBattleMembers = function() {
return new_max_battle;
};
Window_MenuStatus.prototype.numVisibleRows = function() {
return new_max_menu;
};
})();
Terms of Use
Free for any project, including commercial. No credit is necessary as it is just a small edit.
If you wish to give credit you may.
Notes
This should be compatible with most things. In the screenshot I am using Yanfly's Row plugin as an example.
本贴来自国际rpgmaker官方论坛作者:matthew30903处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:
https://forums.rpgmakerweb.com/threads/lamontgames-battle-actor.70444/