Project1
标题:
如何让逃跑几率为100%?
[打印本页]
作者:
18503097404
时间:
2017-7-30 11:04
标题:
如何让逃跑几率为100%?
如题,是改脚本rpg_managers的哪里?
作者:
wabcmcc
时间:
2017-7-30 17:31
日本論壇:
http://tm.lucky-duet.com/viewtopic.php?f=5&t=1308
(未測試)
//=============================================================================
// Escape100.js
//=============================================================================
/*:
* @plugindesc 逃げる成功率を100%にする
* @author みこと
*
* @param escapeSwitche
* @desc 逃げる成功率を100%にするスイッチの番号
* @default 10
*
* @help 指定のスイッチがONになっている間、戦闘コマンド『逃げる』を必ず成功させます。
* ただしバトルの処理で『逃走可能』にチェックが入っていない場合は逃げられません。
*
* このプラグインには、プラグインコマンドはありません。
*/
(function() {
var parameters = PluginManager.parameters('Escape100');
BattleManager.processEscape = function() {
$gameParty.performEscape();
SoundManager.playEscape();
var success = this._preemptive ? true : (Math.random() < this._escapeRatio);
if (success || $gameSwitches.value(parameters['escapeSwitche'])) {
this.displayEscapeSuccessMessage();
this._escaped = true;
this.processAbort();
} else {
this.displayEscapeFailureMessage();
this._escapeRatio += 0.1;
$gameParty.clearActions();
this.startTurn();
}
return success;
};
})();
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1