New forum theme up and running!
Originally posted by KradeIts 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 endEDIT: Sorry, corrected a mistake
Originally posted by MrMisterquote:Originally posted by KradeIts 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 endEDIT: Sorry, corrected a mistakeUm, Katakana? English please.