ตัวหนา  แก้ตรง สคริปต์ Window_MenuStatus ใส่เพิ่มตรงตัวหนา
      actor = $game_party.actors[i]
      self.contents.font.bold = true
      draw_actor_graphic(actor, x - 40, y + 80)
      draw_actor_name(actor, x, y)
      draw_actor_class(actor, x + 144, y)
      draw_actor_level(actor, x, y + 32)
      draw_actor_state(actor, x + 90, y + 32)
      draw_actor_exp(actor, x, y + 64)
      draw_actor_hp(actor, x + 236, y + 32)
      draw_actor_sp(actor, x + 236, y + 64)
      self.contents.font.bold = false
หลอดเลือด  แก้ตรง สคริปต์ [XP] Neo HP/MP Gauge ตรงตัวหนา เปลี่ยนเป็น x -12
  alias wor_neog_winbase_draw_achp draw_actor_hp
  def draw_actor_hp(actor, x, y, width = 144)
    draw_actor_hp_gauge(actor, 352, y, 80)
    wor_neog_winbase_draw_achp(actor, x, y, width)
  end
  
  alias wor_neog_winbase_draw_acsp draw_actor_sp
  def draw_actor_sp(actor, x, y, width = 144)
    draw_actor_mp_gauge(actor, 454,y, 80)
    wor_neog_winbase_draw_acsp(actor, x, y, width)
  end
					
				
				
This post was last modified: 08-28-2013, 11:48 PM by hengmana.