Project1

标题: 怎么做消耗物品的技能? [打印本页]

作者: link756367658    时间: 2017-11-2 08:01
标题: 怎么做消耗物品的技能?
例如 用这个技能需要消耗子弹 子弹没有了 技能是不能用的
作者: yang1zhi    时间: 2017-11-2 09:35
https://rpg.blue/forum.php?mod=v ... B%E7%89%A9%E5%93%81
作者: link756367658    时间: 2017-11-2 10:15
yang1zhi 发表于 2017-11-2 09:35
https://rpg.blue/forum.php?mod=viewthread&tid=383794&highlight=%E6%8A%80%E8%83%BD%2B%E6%B6%88%E8%80% ...

都是照着打的 但是报错啊
作者: iisnow    时间: 2017-11-2 13:59
https://rpg.blue/thread-226207-1-1.html
参看安酱的教程
作者: 步兵中尉    时间: 2017-11-3 00:21
个人感觉不用那么复杂啊!

在脚本中ctrl+shift+F搜索“可以使用特技判定”,找到位于Game_Actor的此段定义。
然后添加:
如果  技能ID==123 并且 物品47号的数量少于5个
   那么不能使用

翻译为脚本:
  1.    if skill_id == 123 and $game_party.item_number(47) <= 5
  2.      return false
  3.    end
复制代码


这样就可以了。然后你在技能的公共事件里面添加物品消耗即可。




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