Project1
标题:
关于mv的死亡离队脚本
[打印本页]
作者:
zjl88858
时间:
2015-12-28 13:23
标题:
关于mv的死亡离队脚本
本noob一点点js都不会,求大神帮忙写一个简单的脚本实现这个效果:
人物如果死亡,并且在战斗结束之前没有使用道具复活,则在战斗结束之后离队。
如果在战斗结束之前复活,即不离队。
谢谢~(o゚ω゚o)
作者:
汪汪
时间:
2015-12-28 14:18
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();
}
};
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1