Currently, The main Menu only has 3 buttons including New game, Load game, and Quit. Each of them has a button type that corresponds with a certian action. Here is the default titlepage.fpi.
;AIScript from Wizard
;Header
desc = Title Page Wizard V103
;Script
:state=0:music=audiobankmusicgenerictitle.wav
:state=0:hudreset,hudx=50,hudy=10,hudimage=languagebankenglishgamecorebackdropsbasicgamemenu.tga,hudmake=display
:state=0:hudreset,hudx=50,hudy=45,hudimage=languagebankenglishgamecorebackdropsbasicnewgame.tga,hudtype=1,hudmake=button
:state=0:hudreset,hudx=50,hudy=55,hudimage=languagebankenglishgamecorebackdropsbasicloadgame.tga,hudtype=2,hudmake=button
:state=0:hudreset,hudx=50,hudy=65,hudimage=languagebankenglishgamecorebackdropsbasicexitgame.tga,hudtype=5,hudmake=button
:state=0:hudreset,hudx=50,hudy=50,hudimage=gamecorehudspointer.tga,hudmake=pointer
:state=0:state=2
:state=2:backdrop=gamecorebackdropsBasicbackground.jpg
:state=2,hudselectionmade=1:destroy
:state=2,hudselectionmade=5:quitgame,destroy
:state=2,hudselectionmade=2:loadgame
And here is the button and its matching action
:state=0:hudreset,hudx=50,hudy=45,hudimage=languagebankenglishgamecorebackdropsbasicnewgame.tga,hudtype=1,hudmake=button
:state=2,hudselectionmade=1:destroy
So I was thinking, Could we add another button, with something like hudtype=3, and have it play a video, or display another HUD such as credits or something along those lines?
hi