在新窗口中打开脚本页

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
#==============================================================================
# ■ 跳过标题
# By :VIPArcher [email: VIPArcher@sina.com]
# -- 本脚本来自 http://rm.66rpg.com 使用或转载请保留以上信息。
#==============================================================================
$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

文章目录