赞 | 4 |
VIP | 0 |
好人卡 | 0 |
积分 | 16 |
经验 | 0 |
最后登录 | 2024-8-26 |
在线时间 | 220 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1606
- 在线时间
- 220 小时
- 注册时间
- 2022-2-3
- 帖子
- 160
|
你好,我这边查询到一个方法 是跟战斗胜利是有关系的。
在 rmmz_managers.js 中的 BattleManager.processVictory 。
可以看到这个方法中包含了
/* 处理胜利 */
BattleManager.processVictory = function() {
$gameParty.removeBattleStates();
$gameParty.performVictory();
this.playVictoryMe();
this.replayBgmAndBgs();
this.makeRewards();
//显示胜利信息
this.displayVictoryMessage();
//显示奖励,包含经验值,金钱,掉落物
this.displayRewards();
this.gainRewards();
this.endBattle(0);
};
可以按照你的需求,进行修改。 |
|