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
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.
Thanks for the help... :wink: