~Frozen Darkness~
It's watching you...
- 503
- Posts
- 17
- Years
- Age 27
- Staten Island, NY
- Seen Dec 9, 2020
Welcome everyone, to my tutorial section! I'll post some scripts here that'll prove very useful. Most of these scripts I'll be using for Pokemon Aftermath, but some will not be in. So here we go:
Tutorial 1: Making the game going into Full Screen
In the Script Editor of RPG Maker XP, put this script on top of RGSS2 Compatibility:
begin
if $full == nil
$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
The game will now launch in Full Screen Mode when you play it.
Current Glitches: None known yet.
Next: How to change Pokemon Forms
Tutorial 1: Making the game going into Full Screen
In the Script Editor of RPG Maker XP, put this script on top of RGSS2 Compatibility:
begin
if $full == nil
$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
The game will now launch in Full Screen Mode when you play it.
Current Glitches: None known yet.
Next: How to change Pokemon Forms