2020年11月12日
【ツクールMV】敵が「戦闘行動の強制」を含むコモンイベントを呼び出すスキルを使ったターンは 時間経過で解除されるステートが解除されない
■事象:
敵が「戦闘行動の強制」を含むコモンイベントを呼び出すスキルを使ったターンは 時間経過で解除されるステートが解除されない
■対処:
1.直接rpgmanagers.jsを編集する場合
BattleManager.processForcedAction = function() {
if (this._actionForcedBattler) {
//this._turnForced = true;//コメントアウト
this._subject = this._actionForcedBattler;
this._actionForcedBattler = null;
this.startAction();
this._subject.removeCurrentAction();
}
};
2.プラグイン化する場合:
(function() {
BattleManager.processForcedAction = function() {
if (this._actionForcedBattler) {
this._subject = this._actionForcedBattler;
this._actionForcedBattler = null;
this.startAction();
this._subject.removeCurrentAction();
}
}
情報元:
ランドル様、ミノ駆動様
敵が「戦闘行動の強制」を含むコモンイベントを呼び出すスキルを使ったターンは 時間経過で解除されるステートが解除されない
■対処:
1.直接rpgmanagers.jsを編集する場合
BattleManager.processForcedAction = function() {
if (this._actionForcedBattler) {
//this._turnForced = true;//コメントアウト
this._subject = this._actionForcedBattler;
this._actionForcedBattler = null;
this.startAction();
this._subject.removeCurrentAction();
}
};
2.プラグイン化する場合:
(function() {
BattleManager.processForcedAction = function() {
if (this._actionForcedBattler) {
this._subject = this._actionForcedBattler;
this._actionForcedBattler = null;
this.startAction();
this._subject.removeCurrentAction();
}
}
情報元:
ランドル様、ミノ駆動様
【このカテゴリーの最新記事】
-
no image
-
no image
posted by tabirpglab at 08:00
| 技術情報(ツクールMV)