AVENTZERO 发表于 2013-11-4 05:30
同问求助啊!!
你挖坟了.........
======不過還是算了不扣分好了=========
在class Window_Message的第53行左右的visible_line_number
把他的值return為想要的行數....
然後如果乃是伸手黨看不懂的話.........
=begin ================================= 游戏中对话行數修改 By:PK(PandaKing) ================================= #================================ # 【说明】 #================================ 游戏中对话行數修改 =end #================================ # 【设定】 #================================ module Message_line_max Line_Max = 5 # 5是你要的行數 end #================================ # 【脚本】 #================================ class Window_Message < Window_Base def visible_line_number return Message_line_max::Line_Max end end
=begin
=================================
游戏中对话行數修改 By:PK(PandaKing)
=================================
#================================
# 【说明】
#================================
游戏中对话行數修改
=end
#================================
# 【设定】
#================================
module Message_line_max
Line_Max = 5 # 5是你要的行數
end
#================================
# 【脚本】
#================================
class Window_Message < Window_Base
def visible_line_number
return Message_line_max::Line_Max
end
end
設定完後插入main吧 |