Originally posted by Krade
Its simply a matter of changing Scene_Title in the script editor, these 2 parts to be precise:
Determines the options shown in the title screen
s1 = "New Game"
s2 = "Continue"
s3 = "Exit"
@command_window = Window_Command.new(192, [s1, s2, s3])
Determines what actions the options peform
case @command_window.index
when 0 # ニューゲーム
command_new_game
when 1 # コンティニュー
command_continue
when 2 # シャットダウン
command_shutdown
end
EDIT: Sorry, corrected a mistake
Originally posted by MrMister
quote: Originally posted by Krade
Its simply a matter of changing Scene_Title in the script editor, these 2 parts to be precise:
Determines the options shown in the title screen
s1 = "New Game"
s2 = "Continue"
s3 = "Exit"
@command_window = Window_Command.new(192, [s1, s2, s3])
Determines what actions the options peform
case @command_window.index
when 0 # ニューゲーム
command_new_game
when 1 # コンティニュー
command_continue
when 2 # シャットダウン
command_shutdown
end
EDIT: Sorry, corrected a mistake
Um, Katakana? English please.