Project1

标题: 我方血条问题 [打印本页]

作者: letppigogo    时间: 2012-1-4 22:52
标题: 我方血条问题
一面的血条插件是横向排列的!怎么改成竖向排列呢!


#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================


# ————————————————————————————————————

# ▼▲▼ XRXS_BP 2. HP,SPメーター表示 ▼▲▼
# by 桜雅 在土

#==============================================================================
# ■ Window_BattleStatus
#==============================================================================
class Window_BattleStatus < Window_Base
  #--------------------------------------------------------------------------
  # ● 初始化
  #--------------------------------------------------------------------------
  alias xrxs_bp2_refresh refresh
  def refresh
    xrxs_bp2_refresh
    @item_max = $game_party.actors.size
    for i in 0...$game_party.actors.size
      actor = $game_party.actors
      actor_x = i * 160 + 5
      draw_actor_hp_meter(actor, actor_x, 132, 100)
    end
  end
end
#==============================================================================
# ■ Window_Base
#==============================================================================
class Window_Base < Window
  #--------------------------------------------------------------------------
  # ● HP描画
  #--------------------------------------------------------------------------
  def draw_actor_hp_meter(actor, x, y, width =156, type = 0)
    if type == 1 and actor.hp == 0
      return
    end
    self.contents.font.color = system_color
    self.contents.fill_rect(x-1, y+27, width+2,6, Color.new(0, 0, 0, 255))
    w = width * actor.hp / [actor.maxhp,1].max
    self.contents.fill_rect(x, y+28, w,1, Color.new(255, 96, 96, 255))
    self.contents.fill_rect(x, y+29, w,1, Color.new(255, 0, 0, 255))
    self.contents.fill_rect(x, y+30, w,1, Color.new(128, 0, 0, 255))
    self.contents.fill_rect(x, y+31, w,1, Color.new(0, 0, 0, 255))
  end
end


#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#============================================================================== dsu_plus_rewardpost_czw




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