赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 4 |
经验 | 0 |
最后登录 | 2023-11-28 |
在线时间 | 31 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 365
- 在线时间
- 31 小时
- 注册时间
- 2017-10-18
- 帖子
- 3
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
在一个状态的注释中输入了以下代码
<Custom React Effect>
if ($gameParty.inBattle()) {
target._secondChance = target.hp > 1;
}
</Custom React Effect>
<Custom Respond Effect>
if ($gameParty.inBattle() && target._secondChance && target.hp <= 0) {
target.startAnimation(49);
target.setHp(1);
}
</Custom Respond Effect>
之后测试游戏时不产生效果,怎么解决? |
|