Okay here's the script for making a splash screen for your game's (or more than one screen if you want)
Change your titlepage.fpi to the one in the code segment.
;AIScript from Wizard
;Splash Screen added by Tal
;Header
desc = Title Page Wizard
;Script
:state=0:hudreset,hudx=50,hudy=50,hudimage=languagebankenglishgamecorebackdropstitlesplash.tga,hudname=splash,hudhide=1,hudmake=display,state=10
:state=10:music=audiobankmusicterrorstrikeTerrorStrike.ogg
:state=10:hudshow=splash
:state=10:timerstart,state=15
:state=15,timergreater=6000:hudfadeout=splash,state=1
:state=1:hudreset,hudx=50,hudy=10,hudimage=gamecorebackdropsterrorstrikegametitle.dds,hudmake=display
:state=1:hudreset,hudx=50,hudy=50,hudimage=gamecorebackdropsterrorstrikenewgame.dds,hudtype=1,hudmake=button
:state=1:hudreset,hudx=50,hudy=60,hudimage=gamecorebackdropsterrorstrikeexitgame.dds,hudtype=5,hudmake=button
:state=1:hudreset,hudx=50,hudy=50,hudimage=gamecorehudsheart.dds,hudmake=pointer
:state=1:state=2
:state=2:backdrop=gamecorebackdropsterrorstrikegamemenu_background.jpg
:state=2,hudselectionmade=1:destroy
:state=2,hudselectionmade=5:quitgame,destroy
Note I used the TerrorStrike menu as an example. This is for one splash screen. For two sceen's use this.
;AIScript from Wizard
;Splash Screen added by Tal
;Header
desc = Title Page Wizard
;Script
:state=0:hudreset,hudx=50,hudy=50,hudimage=languagebankenglishgamecorebackdropstitlesplash.tga,hudname=splash,hudhide=1,hudmake=display,state=10
:state=10:music=audiobankmusicterrorstrikeTerrorStrike.ogg
:state=10:hudshow=splash
:state=10:timerstart,state=15
:state=15,timergreater=6000:hudfadeout=splash,state=20
:state=20:hudreset,hudx=50,hudy=50,hudimage=languagebankenglishgamecorebackdropstitlesplash2.tga,hudname=splash2,hudhide=1,hudmake=display,state=25
:state=25:music=audiobankmusicterrorstrikeTerrorStrike.ogg
:state=25:hudshow=splash2
:state=25:timerstart,state=30
:state=30,timergreater=6000:hudfadeout=splash2,state=1
:state=1:hudreset,hudx=50,hudy=10,hudimage=gamecorebackdropsterrorstrikegametitle.dds,hudmake=display
:state=1:hudreset,hudx=50,hudy=50,hudimage=gamecorebackdropsterrorstrikenewgame.dds,hudtype=1,hudmake=button
:state=1:hudreset,hudx=50,hudy=60,hudimage=gamecorebackdropsterrorstrikeexitgame.dds,hudtype=5,hudmake=button
:state=1:hudreset,hudx=50,hudy=50,hudimage=gamecorehudsheart.dds,hudmake=pointer
:state=1:state=2
:state=2:backdrop=gamecorebackdropsterrorstrikegamemenu_background.jpg
:state=2,hudselectionmade=1:destroy
:state=2,hudselectionmade=5:quitgame,destroy
Enjoy the script.
Tal