Reserve Experience - gives Reserve Party Half Experience
PG_ExpRes.js - version 1by Piyan Glupak
In MV, the editor lets you choose whether or not to give the reserve party experience after a battle. The choices that the editor gives are for the members of the reserve party to get the same amount of experienceas the battle party members, or to get none at all.This plugin gives the reserve party approximately half the experience that the battle party gets, whatever option .
There are no parameters plugin commands or script calls; it is purely plug-and-play.
The reason that the reserve party does not get exactly half is because of rounding to keep experience an integer.If all your enemies give an even number of experience points the reserve party would get exactly half.
Spoiler: Why give your reserve party half experience for combat?Most parties represent a small group.Most of the combat would usually be done by the most capable members, but everyone present would witness it.The battle party (by default the first 4 members) would learn by doing, but the hangers-on (the reserve party, by default members 5 to 8) would witness combat at close hand.They wouldn't be landing blows or casting offensive spells, but they would feel similar fears, witness the reactions necessary for combat and unconsciously get used to the snap decisions to make.I believe that people who hang around with violent people get a better idea of how to do violence than people who rarely see it, but aren't as good at it as people who habitually do it.
JavaScript:
//=============================================================================
// PG_ExpRes.js
//=============================================================================
/*:
* @plugindesc Reserve party gets half the experience that the battle does after battles
*
* @author Piyan Glupak
*
* @help
* Install it fairly low down the plugins list. The reserve party members get
* about half the experience that battle party members get after a battle.
*
* This plugin overides the option in the editor to give/not give experience to
* the reserve party, so script wizards won't be able to switch to either of the
* default options.
*
* TERMS OF USE
* Use it freely for commercial or non-commercial games. It isn't essential, but
* it would be nice to appear in the credits, either as 'Piyan Glupak' or my real
* name, if you know it.
*
* COMPATIBILITY
* No known issues.
*/
(function() {
Game_Actor.prototype.finalExpRate = function() {
return this.exr * (this.isBattleMember() ? 1 : 0.5);
};
})();
Terms and conditions: You make use this freely for commercial and non-commercial games.I would prefer to be credited, either as “Piyan Glupak” or by my real name, which is Richard Lee.
Please not publish this plugin on the Internet, but give a link to this page instead.(This is in case I ever need to update it.I only want the latest version to be available.)
本贴来自国际rpgmaker官方论坛作者:Piyan Glupak处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/reserve-experience-gives-reserve-party-half-experience.163870/
页:
[1]