| 
 
| 赞 | 58 |  
| VIP | 37 |  
| 好人卡 | 59 |  
| 积分 | 12 |  
| 经验 | 66255 |  
| 最后登录 | 2023-5-29 |  
| 在线时间 | 1017 小时 |  
 Lv3.寻梦者 
	梦石0 星屑1232 在线时间1017 小时注册时间2011-4-30帖子1516 | 
| 复制代码
BattleManager.endBattle = function(result) {
    this._phase = 'battleEnd';
    if (this._eventCallback) {
        this._eventCallback(result);
    }
    //
    //下
    var ids= []
    $gameParty._actors.map(function(id) {
        if  ($gameActors.actor(id).isDead()){
                ids.push(id)
            }      
    });
    for(var i=ids.length-1;i>=0;i--){
            $gameParty.removeActor(ids[i])
    }
    //上
    //
    if (result === 0) {
        $gameSystem.onBattleWin();
    } else if (this._escaped) {
        $gameSystem.onBattleEscape();
    }
};
 | 
 评分
查看全部评分
 |