isaacsol 10 Report post Posted March 3, 2012 Introduction This script was designed to automatically launch an RPG Maker XP game into fullscreen without the player having to use ALT+ENTER. Normal Version: This version automatically takes the player into full screen in Test play and Actual play. begin if not $full $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) $full = 1 end end Disabled Version: This version automatically takes the player into full screen Actual play, but is disabled in Test play. begin unless $DEBUG and not $full $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) $full = 1 end end 1 Heretic86 reacted to this Share this post Link to post Share on other sites
DarkGuardian29 1 Report post Posted June 24, 2012 Can this script be compatible with ForeverZer0's custom resolution script? http://www.rmxpunlimited.net/forums/topic/7024-custom-resolution/ Share this post Link to post Share on other sites
RPGMakerXPChris 1 Report post Posted June 28, 2012 Very nice. Thanks. Share this post Link to post Share on other sites