The RPG Maker Resource Kit

Other Game Creation => Program Troubleshooting => Topic started by: loonygamer on March 28, 2006, 06:44:54 PM

Title: A title screen splash screen/video
Post by: loonygamer on March 28, 2006, 06:44:54 PM
is there any way to put a splash screen or an intro video before the title menu comes up?
Title: A title screen splash screen/video
Post by: Blizzard on March 28, 2006, 06:49:27 PM
Can you script? Get my Credits v1.04 (somewhere on page 1 of the scripts section) and you can easily edit it into an intro script. If you can
Title: A title screen splash screen/video
Post by: loonygamer on March 28, 2006, 07:02:43 PM
i can script a little bit. im still a learner tho. i'll try tinkering with it, then if i need help ill just reply back here.
Title: A title screen splash screen/video
Post by: Blizzard on March 28, 2006, 07:39:24 PM
Ok. Hint: Call the intro fro main instead of Scene_Title, then call Scene_Title after the intro is over. Oh, you should add this here:

[code]class Scene_Splash
def main
unless $DEBUG #this
Title: A title screen splash screen/video
Post by: loonygamer on March 28, 2006, 07:45:07 PM
gee thanks. but how where do i add this? do i add it in Scene_Title? or another class and just call up Scene_Title?

also, if you have any messengers, just talk to me there.

AIM - jober911
MSN - mf_jober@50-50.com
Yahoo! - hellbender_gemini911
Title: A title screen splash screen/video
Post by: Blizzard on March 28, 2006, 08:01:34 PM
Make a new script somewhere above main (right click, Insert). Add my template above and start scripting. In "Main" just change the "$scene = Scene_Title" to "$scene = Scene_Splash". Now it will work. I don
Title: A title screen splash screen/video
Post by: loonygamer on March 28, 2006, 09:01:14 PM
if i want a splash picture, i would just define another method to make the pic appear before the title screen?
Title: A title screen splash screen/video
Post by: Blizzard on March 28, 2006, 09:06:20 PM
Actually that