| 
 
| 赞 | 160 |  
| VIP | 0 |  
| 好人卡 | 0 |  
| 积分 | 273 |  
| 经验 | 0 |  
| 最后登录 | 2025-10-31 |  
| 在线时间 | 5455 小时 |  
 Lv5.捕梦者 
	梦石0 星屑27250 在线时间5455 小时注册时间2016-3-8帖子1684 | 
| 本帖最后由 alexncf125 于 2020-8-19 21:40 编辑 
 复制代码class Window_Base < Window
  #--------------------------------------------------------------------------
  # ● 絵制等级
  #--------------------------------------------------------------------------
  def draw_actor_level(actor, x, y)
    change_color(system_color)
    draw_text(x, y, 32, line_height, Vocab::level_a)
    change_color(normal_color)
    a_lv = actor.level
    a_lv = a_lv.to_f / 10
    draw_text(x + 32, y, 24, line_height, a_lv, 2)
  end
end
以上,插入脚本后你会发现字都挤成了一团,提示,需改兩个数值,自己想
 | 
 |