Main Menu
  • Welcome to The RPG Maker Resource Kit.

Little help

Started by bruno, February 02, 2006, 06:45:48 PM

0 Members and 1 Guest are viewing this topic.

bruno

Hay i was woundering if some one could tell me how to make your game full screen in rpgxp, im not sure if its a code or not so i posted it here

ArkBennett

One way is to press Arl+Enter and it'll go fullscreen.

For a script put this on line 8 in "Main"

Quote$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)

There, that should do it.

bruno

Thanks for the help... :wink: