Project1
标题:
求问如何在战斗中用脚本使用道具
[打印本页]
作者:
多卡多卡
时间:
2019-5-14 12:38
标题:
求问如何在战斗中用脚本使用道具
本帖最后由 多卡多卡 于 2019-5-14 18:31 编辑
在制作插件时,想实现战斗中HP低于一定比例时使用药品回复时遇到了问题
比如某个角色血量小于一半时使用1号道具
if (this.hp < 0.5 * this.mhp)
$gameActors.actor(this._actorId).useItem($dataItems[1]);
但里面的useItem()这个函数却无法执行从而使角色无法做出行动,站着不动(没有弹出错误窗口)
请问有没有解决的方法?
换了个方法把现在问题解决了
if (this.hp < 0.5 * this.mhp && $gameParty.numItems($dataItems[1]) > 0)
{
var action = new Game_Action(this);
action.setItemObject($dataItems[1]);
action._targetActorId = this._actorId;
this._actions.push(action);
this.setActionState('waiting');
}
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1