设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1628|回复: 0
打印 上一主题 下一主题

[已经过期] 怎么在scene_battle4 检索已经死掉的敌人的技能

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
91 小时
注册时间
2011-3-19
帖子
25
跳转到指定楼层
1
发表于 2012-5-26 10:23:30 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 hcm 于 2012-5-26 17:11 编辑

一段仿梦幻西游 鬼魂术(死了以后5回合复活)的技能 角色能用 但是敌人没用
把actor改为enemy,把skills 改为 actions.skill_id 来判定有没有鬼魂术的属性 后 敌人并不会复活,看了队伍事件那里发现好像,战斗不能的判断优先于事件的判断

请教脚本高手指教


附上角色的鬼魂术判断脚本
  1. @dead_turn = [] if @dead_turn == nil
  2.      for actor in $game_party.actors
  3.       if actor.dead?  and @dead_turn[actor.id] != 5 and (actor.skill_learn?(8) or actor.skill_learn?(54))
  4.         @dead_turn[actor.id] = 0 if @dead_turn[actor.id] == nil
  5.         @dead_turn[actor.id] += 1
  6.       end
  7.       
  8.     end

  9.     # 回合数计数
  10.     $game_temp.battle_turn += 1
  11.    
  12.     for actor in $game_party.actors
  13.       if actor.dead? and actor.skill_learn?(54) and @dead_turn[actor.id] == 5
  14.         actor.recover_all
  15.         @dead_turn[actor.id] = 0
  16.       end
  17.     end
  18.     for actor in $game_party.actors
  19.       if actor.dead? and actor.skill_learn?(8) and @dead_turn[actor.id] == 5
  20.         actor.recover_half
  21.         @dead_turn[actor.id] = 0
  22.       end
  23.     end
复制代码
此人长期潜水做游戏,只有遇到困难才会出现
经常出没地点:RPGMAKER 提问区
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-1 15:24

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表