| 
 
| 赞 | 1 |  
| VIP | 0 |  
| 好人卡 | 0 |  
| 积分 | 2 |  
| 经验 | 0 |  
| 最后登录 | 2021-11-22 |  
| 在线时间 | 52 小时 |  
 Lv1.梦旅人 
	梦石0 星屑207 在线时间52 小时注册时间2019-1-23帖子9 | 
| 
ALL = 3
x
加入我们,或者,欢迎回来。您需要 登录 才可以下载或查看,没有帐号?注册会员  TEXT0 = "XXXX"
 TEXT1 = "XXXXX"
 TEXT2 = "XXX"
 class Scene_Title < Scene_Base
 alias ccw create_command_window
 def create_command_window
 ccw
 @command_window.set_handler(:cy, method(:ccy))
 end
 def ccy
 SceneManager.call(S_Cy)
 end
 end
 class Window_TitleCommand < Window_Command
 alias mcl make_command_list
 def make_command_list
 mcl
 add_command("人物介绍", :cy)
 end
 end
 class S_Cy < Scene_MenuBase
 def start
 super
 @cy_window = W_Cy.new
 @cy_window.set_handler(:cancel,   method(:return_scene))
 end
 end
 class W_Cy < Window_Selectable
 def initialize
 super(0, 0, Graphics.width, Graphics.height)
 refresh
 activate
 end
 def refresh
 contents.clear
 ALL.times do |i|
 draw_text(0, 0+i*24, width, line_height, eval("TEXT"+i.to_s))
 end
 end
 end
 
 
 就是这样。超过14行后就看不到了,然后就卡掉了。如何翻页呢??QWQ
 这个脚本是我网上找的,所以不太懂。。
 
 
 | 
 |