Mini/Bonus game - Can I change select sceen

Geldor

New member
Hi,

If I have two game modes, is it possible to have a different select screen and rosta of characters for either mode?
For example:
Arcade game mode 'select screen'
background select screen1, with characters a,b,c and d to choose from.
Bonus game mode 'select screen'
goes to background select screen2 with characters c, d, and new characters e and f to choose from?
or is this a crazy idea.

Thanks in advance.
 
Yes, just uses two different select files. Each one calls a different background and use different allowselect.
Edit: Here are two examples I use on my game

First, you need to add SKIPSELECT on your set, like this
set @_Story_Mode
lives 3
credits 2
noshare 1
nosame 0 2
maxplayers 4
continuescore 0
cansave 2
custfade 200
skipselect

Then you need to make select txt file (I put mine under SELECTS folder) and call it on your levels.txt

select data/selects/select_1.txt

This is how your select file will look like:
music data/music/select.ogg 1
background data/Bgs/Select.gif

allowselect Sups Chas Blin Alfr Ccom Mack Chun Chuc Reay Ranm

You can change the "background" setting to load different backgrounds for each select :)
 
Last edited:
Back
Top Bottom