Project1

标题: 关于mv的死亡离队脚本 [打印本页]

作者: zjl88858    时间: 2015-12-28 13:23
标题: 关于mv的死亡离队脚本
本noob一点点js都不会,求大神帮忙写一个简单的脚本实现这个效果:
人物如果死亡,并且在战斗结束之前没有使用道具复活,则在战斗结束之后离队。
如果在战斗结束之前复活,即不离队。
谢谢~(o゚ω゚o)
作者: 汪汪    时间: 2015-12-28 14:18

  1. BattleManager.endBattle = function(result) {
  2.     this._phase = 'battleEnd';
  3.     if (this._eventCallback) {
  4.         this._eventCallback(result);
  5.     }
  6.     //
  7.     //下
  8.     var ids= []
  9.     $gameParty._actors.map(function(id) {
  10.         if  ($gameActors.actor(id).isDead()){
  11.                 ids.push(id)
  12.             }      
  13.     });
  14.     for(var i=ids.length-1;i>=0;i--){
  15.             $gameParty.removeActor(ids[i])
  16.     }
  17.     //上
  18.     //
  19.     if (result === 0) {
  20.         $gameSystem.onBattleWin();
  21.     } else if (this._escaped) {
  22.         $gameSystem.onBattleEscape();
  23.     }
  24. };
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1