#==============================================================================
# Vollbild als Option im Startmenü
#==============================================================================
class Window_TitleCommand < Window_Command
alias alt_make_command_list_vollbild_zion:make_command_list
def make_command_list
add_command(Vocab::new_game, :new_game)
add_command(Vocab::continue, :continue, continue_enabled)
add_command("Vollbild", :vollbild)
add_command("Optionen",

ptionen) #optionen
add_command(Vocab::shutdown, :shutdown)
end
end
class Scene_Title < Scene_Base
alias alt_create_command_window_vollbild_zion:create_command_window
def create_command_window
alt_create_command_window_vollbild_zion
@command_window.set_handler

vollbild, method

command_vollbild))
@command_window.set_handler

optionen, method

command_options)) #optionen
end
def command_vollbild
$keybd = Win32API.new 'user32.dll', 'keybd_event', ['i', 'i', 'l', 'l'], 'v'
$keybd.call 0xA4, 0, 0, 0
$keybd.call 13, 0, 0, 0
$keybd.call 13, 0, 2, 0
$keybd.call 0xA4, 0, 2, 0
@command_window.activate
end
#--------------------------------------------------------------------------
# * [Options] Command #optionen
#--------------------------------------------------------------------------
def command_options
SceneManager.call(Scene_Options)
end
end