# 首先新建空白地图,假设地图ID为 x ,在其上添加自动执行事件(显示文字、播放BGM之类),以起到“作品关于”的效果,“帮助”“收藏”等...别忘了返回标题菜单就好~
# 根据帖子 [url]http://rpg.blue/forum.php?mod=viewthread&tid=217685[/url],在module DataManager ,class Window_TitleCommand ,以及class Scene_Title 中添加相应的代码, 实现在标题菜单中添加 “关于”,并且选择后跳转到地图 x 并自动执行事件
# 以下代码直接复制到“插件脚本”下就可以,不需要在原位置添加
# 在 DataManager 模块中添加 "about",原理是将 setup_new_game 改编
# 注意 $game_map.setup(x) 中的 x
module DataManager
def self.setup_about
create_game_objects
$game_party.setup_starting_members
$game_map.setup(x)
$game_player.moveto($data_system.start_x, $data_system.start_y)
$game_player.refresh
Graphics.frame_count = 0
end
end
# 这段代码可以直接在标题画面中显示“关于”,但是如果没有对 about 进行定义的话,“关于”这个选项就只是个摆设~
class Window_TitleCommand < Window_Command
def make_command_list
add_command(Vocab::new_game, :new_game)
add_command(Vocab::continue, :continue, continue_enabled)
add_command(Vocab::shutdown, :shutdown)
add_command("关于",:about)
end
end
# 这段代码首先将 about 定义为 动作 command_about, 然后又定义了 command_about 如何动作
# 改编自原脚本中的 def command_new_game
class Scene_Title < Scene_Base
def create_command_window
@command_window = Window_TitleCommand.new
@command_window.set_handler(:new_game, method(:command_new_game))
@command_window.set_handler(:continue, method(:command_continue))
@command_window.set_handler(:shutdown, method(:command_shutdown))
@command_window.set_handler(:about, method(:command_about))
end
def command_about
DataManager.setup_about
close_command_window
fadeout_all
$game_map.autoplay
SceneManager.goto(Scene_Map)
end
end