Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
isaacsol

RMXP Full Screen Script

Recommended Posts

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  

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...