Auto Full Screen Script Author:orb
Version:1.0
IntroductionIts plug and play. Just insert it above main and bellow all others.
FeaturesWhen the game starts, it opens up infull screen mode so you don't have to press Alt+Enter.
ScreenshotsNone requiered
Script#===========================================================================
#Writen by:orb
#version 1.0
#Date 21/3/12
#===========================================================================
#This script turns on the full screen mode automatically with out having
#to press Alt + Enter
#
#Instructions:
#
#This script is plug and play, just paste it ABOVE main, and BELLOW everything
#else!
#lable it Scene_FullPromt and thats it!
#
#--------------------------------------------------------------------------
#--------------------------------------------------------------------------
# Start Scene_FullPromp
#--------------------------------------------------------------------------
class Scene_FullPromp
#------------------------------------------------------------------------------
# Begin by loading DataBase
#------------------------------------------------------------------------------
$data_system = load_data("Data/System.rxdata")
$game_system = Game_System.new
showm = Win32API.new 'user32', 'keybd_event', %w(l l l l), ''
showm.call(18,0,0,0)
showm.call(13,0,0,0)
showm.call(13,0,2,0)
showm.call(18,0,2,0)
$scene = nil
end
CompatibilityCompatible with every thing.
Author's NoteYou are free to modify or distribute but under the name of the author.