在新窗口中打开脚本页
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
 | $VIPArcherScript ||= {};$VIPArcherScript[:skip_title] = 20140701 module VIPArcher end module VIPArcher::SkipTitle   Allowed = false       end class << SceneManager   def first_scene_class     DataManager.setup_new_game     $game_map.autoplay     Scene_Map   end end unless $BTEST class Scene_End < Scene_MenuBase            def command_to_title     DataManager.setup_new_game     close_command_window     fadeout_all     $game_map.autoplay     SceneManager.goto(Scene_Map)   end unless VIPArcher::SkipTitle::Allowed end class Scene_Gameover < Scene_Base            def goto_title     DataManager.setup_new_game     fadeout_all     $game_map.autoplay     SceneManager.goto(Scene_Map)   end unless VIPArcher::SkipTitle::Allowed end class Game_Interpreter            def command_354     DataManager.setup_new_game     $game_map.autoplay     SceneManager.goto(Scene_Map)     Fiber.yield   end unless VIPArcher::SkipTitle::Allowed end
 | 
一个自己用的超简短,不可返回默认标题的跳过标题小脚本~
| 1 2
 | class Scene_Title;def start;DataManager.setup_new_game SceneManager.goto(Scene_Map)end;def terminate()end end
 |