| 
 
| 赞 | 89 |  
| VIP | 350 |  
| 好人卡 | 311 |  
| 积分 | 103 |  
| 经验 | 150139 |  
| 最后登录 | 2024-6-24 |  
| 在线时间 | 5019 小时 |  
 Lv4.逐梦者 (版主) 无限の剣制 
	梦石0 星屑10301 在线时间5019 小时注册时间2013-2-28帖子5030  
 | 
| 虽然不知道你要做什么,但我先放一个链接在这里 https://rpg.blue/thread-476318-1-1.html
 
 注释掉显示HP和MP可以在这边改
 
 复制代码class Window_Base < Window
  #--------------------------------------------------------------------------
  # ● 绘制简单的状态
  #--------------------------------------------------------------------------
  def draw_actor_simple_status(actor, x, y)
    draw_actor_name(actor, x, y)
    draw_actor_level(actor, x, y + line_height * 1)
    draw_actor_icons(actor, x, y + line_height * 2)
    draw_actor_class(actor, x + 120, y)
    # draw_actor_hp(actor, x + 120, y + line_height * 1)
    # draw_actor_mp(actor, x + 120, y + line_height * 2)
  end
end
 | 
 评分
查看全部评分
 |