Project1

标题: 怎么样在战斗中不显示敌人血条 [打印本页]

作者: tallboy8    时间: 2012-9-13 12:57
标题: 怎么样在战斗中不显示敌人血条
  {:2_286:}     dsu_plus_rewardpost_czw
作者: zxcgood2009    时间: 2012-9-13 15:45
敌人本来就没有啊,如果用的是血条脚本,那你要把脚本贴出来啊。
作者: hys111111    时间: 2012-9-13 18:03
zxcgood2009 发表于 2012-9-13 15:45
敌人本来就没有啊,如果用的是血条脚本,那你要把脚本贴出来啊。
  1. # ————————————————————————————————————
  2. # 本脚本来自www.66rpg.com,转载请保留此信息
  3. # ————————————————————————————————————

  4. #==============================================================================
  5. # ■ Window_Help
  6. #------------------------------------------------------------------------------
  7. # 重新定义的内容,可以显示敌人的HP\MP百分比
  8. # 作者:carol3_柳柳
  9. #==============================================================================

  10. class Window_Help < Window_Base
  11.   def set_enemy(actor)
  12.     self.contents.clear
  13.     draw_actor_name(actor, 4, 0)
  14.     draw_actor_state(actor, 140, 0)
  15.     carol3_draw_hp_bar(actor, 284, 0)
  16.     carol3_draw_sp_bar(actor, 460, 0)
  17.     @text = nil
  18.     self.visible = true
  19.   end
  20.   def carol3_draw_hp_bar(actor, x, y, width = 128) #宽度可调
  21.     self.contents.font.color = system_color
  22.     self.contents.fill_rect(x-1, y+17, width+2,6, Color.new(0, 0, 0, 255))
  23.     w = width * actor.hp / actor.maxhp
  24.     self.contents.fill_rect(x, y+18, w,1, Color.new(255, 96, 96, 255))
  25.     self.contents.fill_rect(x, y+19, w,1, Color.new(255, 0, 0, 255))
  26.     self.contents.fill_rect(x, y+20, w,1, Color.new(128, 0, 0, 255))
  27.     self.contents.fill_rect(x, y+21, w,1, Color.new(0, 0, 0, 255))
  28.     self.contents.draw_text(x,y,128,32,$data_system.words.hp,1)
  29.     self.contents.font.color = normal_color
  30.   end
  31.   def carol3_draw_sp_bar(actor, x, y, width = 128)
  32.     self.contents.font.color = system_color
  33.     self.contents.fill_rect(x-1, y+17, width+2,6, Color.new(0, 0, 0, 255))
  34.     w = width * actor.sp / actor.maxsp
  35.     self.contents.fill_rect(x, y+18, w,1, Color.new(128, 255, 255, 255))
  36.     self.contents.fill_rect(x, y+19, w,1, Color.new(0, 255, 255, 255))
  37.     self.contents.fill_rect(x, y+20, w,1, Color.new(0, 192, 192, 255))
  38.     self.contents.fill_rect(x, y+21, w,1, Color.new(0, 128, 128, 255))
  39.     self.contents.draw_text(x,y,128,32,$data_system.words.sp,1)
  40.     self.contents.font.color = normal_color
  41.   end
  42. end
复制代码
怎么不可以敌人血条?
作者: tallboy8    时间: 2012-9-13 19:07
hys111111 发表于 2012-9-13 18:03
怎么不可以敌人血条?

怎么样用呢?

作者: hys111111    时间: 2012-9-13 19:10
tallboy8 发表于 2012-9-13 19:07
怎么样用呢?

点击脚本编辑器,在Main前面按Insert插入就可以了。
作者: tallboy8    时间: 2012-9-13 19:38
我是说。怎么样让我想要的一个敌人不显示血条
作者: hys111111    时间: 2012-9-13 21:25
tallboy8 发表于 2012-9-13 19:38
我是说。怎么样让我想要的一个敌人不显示血条
  1. # ————————————————————————————————————
  2. # 本脚本来自www.66rpg.com,转载请保留此信息
  3. # ————————————————————————————————————

  4. #==============================================================================
  5. # ■ Window_Help
  6. #------------------------------------------------------------------------------
  7. # 重新定义的内容,可以显示敌人的HP\MP百分比
  8. # 作者:carol3_柳柳
  9. #==============================================================================

  10. class Window_Help < Window_Base
  11.   def set_enemy(actor)
  12.     self.contents.clear
  13.     draw_actor_name(actor, 4, 0)
  14.     draw_actor_state(actor, 140, 0)
  15.     if !actor.is_a(Game_Event) and !true_id(actor.id,[1,2])#这里表示1、2号怪物不显示血条
  16.       carol3_draw_hp_bar(actor, 284, 0)
  17.       carol3_draw_sp_bar(actor, 460, 0)
  18.     end
  19.     @text = nil
  20.     self.visible = true
  21.   end
  22.   def true_id(var = 0,id = [])
  23.     for i in id
  24.       if var == id
  25.         return true
  26.       end
  27.     end
  28.   end
  29.   def carol3_draw_hp_bar(actor, x, y, width = 128) #宽度可调
  30.     self.contents.font.color = system_color
  31.     self.contents.fill_rect(x-1, y+17, width+2,6, Color.new(0, 0, 0, 255))
  32.     w = width * actor.hp / actor.maxhp
  33.     self.contents.fill_rect(x, y+18, w,1, Color.new(255, 96, 96, 255))
  34.     self.contents.fill_rect(x, y+19, w,1, Color.new(255, 0, 0, 255))
  35.     self.contents.fill_rect(x, y+20, w,1, Color.new(128, 0, 0, 255))
  36.     self.contents.fill_rect(x, y+21, w,1, Color.new(0, 0, 0, 255))
  37.     self.contents.draw_text(x,y,128,32,$data_system.words.hp,1)
  38.     self.contents.font.color = normal_color
  39.   end
  40.   def carol3_draw_sp_bar(actor, x, y, width = 128)
  41.     self.contents.font.color = system_color
  42.     self.contents.fill_rect(x-1, y+17, width+2,6, Color.new(0, 0, 0, 255))
  43.     w = width * actor.sp / actor.maxsp
  44.     self.contents.fill_rect(x, y+18, w,1, Color.new(128, 255, 255, 255))
  45.     self.contents.fill_rect(x, y+19, w,1, Color.new(0, 255, 255, 255))
  46.     self.contents.fill_rect(x, y+20, w,1, Color.new(0, 192, 192, 255))
  47.     self.contents.fill_rect(x, y+21, w,1, Color.new(0, 128, 128, 255))
  48.     self.contents.draw_text(x,y,128,32,$data_system.words.sp,1)
  49.     self.contents.font.color = normal_color
  50.   end
  51. end
复制代码
我稍微做了修改,满意了吧。
if !actor.is_a(Game_Event) and !true_id(actor.id,[1,2])#这里表示1、2号怪物不显示血条





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