Here's how you do it.
First, you need to create an entry in SLADE called "MAPINFO". Here's what the MAPINFO in Powered Up contains:
Code:
clearepisodes
episode MAP01
name "Single Player"
noskillmenu
episode CREDMAP
name "Credits"
noskillmenu
episode MMPCUT
name "Powered Up Campaign"
noskillmenu
episode PUCREDS
name "Powered Up Credits"
noskillmenu
If you want to add something, you add it after "CREDMAP".
Line 1: Put "episode" then the stage you want it to start at. The map rotation is defined in seperate MAPINFO files (which Ivory made a tutorial on somewhere, if you need it I can link it.)
Line 2: Put "name" then the name of the option. For example, "Powered Up Campaign".
Line 3: Putting "noskillmenu" prevents you from choosing the difficulty, because I'm pretty sure difficulty is weird in MM8BDM.
As for the actual stages, you'll need to create a file called "CMPGNINFO":
Code:
{
mapname = MM1CUT
gamemode = deathmatch
fraglimit = 20
dmflags = 2375812
dmflags2 = 1024
compatflags = 0
bot[0] = Cutman
bot[1] = Megaman
bot[2] = Iceman
}
mapname = Code of the map. Duh.
gamemode = Don't change. Sets the gamemode of course.
fraglimit = Choose how many frags you want the game to end at.
dmflags = Don't touch.
dmflags2 = Don't touch.
compatflags = Don't touch
bot[x] = Choose which bots you want to add. You need to put each bot on a seperate line.
IMPORTANT: MAKE SURE YOU MERGE THE ORIGINAL CMPGNINFO AND YOUR NEW ONE. OTHERWISE THE MAIN CAMPAIGN WILL SCREW UP.
Hope this helps!
-HD