#==============================================================================
# ■满级也能得经验
#------------------------------------------------------------------------------
# 随便写着玩的,目前冲突为止,有BUG欢迎报告。
# 适用范围:修道修真类的,(等级上限会随剧情变化)
# 比如现在没有完成渡劫任务满级了,可以继续获得经验,方便以后完成任务继续升级
# 不会因为满级没有即时做任务,所浪费掉的经验感到可惜
#==============================================================================
class Window_Status < Window_Selectable
#--------------------------------------------------------------------------
# ● 绘制经验值信息
#--------------------------------------------------------------------------
def draw_exp_info(x, y)
s1 = @actor.max_level? ? @actor.exp : @actor.exp#####
s2 = @actor.max_level? ? "-------" : @actor.next_level_exp - @actor.exp
s_next = sprintf(Vocab::ExpNext, Vocab::level)
change_color(system_color)
draw_text(x, y + line_height * 0, 180, line_height, Vocab::ExpTotal)
draw_text(x, y + line_height * 2, 180, line_height, s_next)
change_color(normal_color)
draw_text(x, y + line_height * 1, 180, line_height, s1, 2)
draw_text(x, y + line_height * 3, 180, line_height, s2, 2)
end
end
class Game_Actor < Game_Battler
#--------------------------------------------------------------------------
# ● 最大等级
#--------------------------------------------------------------------------
def max_level
actor.max_level= $game_variables[7]#将最大等级存入7号变量
end
end
#==============================================================================
# ■满级也能得经验
#------------------------------------------------------------------------------
# 作者:懒De说 QQ:329433260
# 有需要写脚本的可以MMMM我
#------------------------------------------------------------------------------
# 脚本来源:[url]www.66rpg.com[/url] ● 转载请保留信息,谢谢!
#==============================================================================