rifall
Smash Cadet
Welcome to Creating a Custom Stage Selection Screen: The Idiot Guide
Why am I making this?
I saw the MK26 basic guide, but even then, I had to sort out a lot of my confusion myself since it was mixed in with some advanced talk.
In this guide, I'll talk you through an example code. You'll see the code's progress as it's being built. This way, when you're customizing the code, you can be sure you haven't done anything wrong.
Building an Example Code
We're going to use 2 Ocarina codes. The first one modifies the Brawl Stage Selection Screen and the second one modifies the Melee Stage Selection Screen. You can put any Stage you want on either screen.
Brawl Screen
Code:
006B929C 000000WW
066B99D8 000000WW
XXXXXXXX XXXXXXXX
Code:
006B92A4 000000YY
066B9A58 000000YY
ZZZZZZZZ ZZZZZZZZ
WW is how many stages we want on the Brawl Select Screen. It's the same for both section. We want 10 stages on that screen, so we'll convert 10 to Hex and put it where the WW is. 10 in Hex is 0A. So now our code looks like this.
Code:
006B929C 0000000A
066B99D8 0000000A
XXXXXXXX XXXXXXXX
Code:
006B929C 0000000A
066B99D8 0000000A
00010203 04050708
090A
Code:
006B929C 0000000A
066B99D8 0000000A
00010203 04050708
090A0000 00000000
Code:
006B92A4 000000YY
066B9A58 000000YY
ZZZZZZZZ ZZZZZZZZ
Code:
006B92A4 0000000A
066B9A58 0000000A
0B0C0D0E 0F101112
1314
Code:
006B92A4 0000000A
066B9A58 0000000A
0B0C0D0E 0F101112
13140000 00000000
Code:
006B929C 0000000A
066B99D8 0000000A
00010203 04050708
090A0000 00000000
006B92A4 0000000A
066B9A58 0000000A
0B0C0D0E 0F101112
13140000 00000000
Customizing your Code
Once you know how to do that, you're ready to make one entirely your own. All you need to do is be able to put Level ID's in the order you want them to appear (left to right, top to bottom).
Here is what you'll need.
Code:
00 Battlefield
01 Final Destination
02 Delfino Plaza
03 Luigi's Mansion
04 Mushroomy Kingdom
05 Mario Circuit
06 Wifi Waiting Room
07 Rumble Falls
08 Pirate Ship
09 Bridge of Eldin
0A Norfair
0B Frigate Orpheon
0C Yoshi's Island (B)
0D Halberd
0E Lylat Cruise
0F Pokémon Stadium 2
10 Spear Pillar
11 Port Town Aero Dive
12 Summit
13 Flat Zone 2
14 Castle Siege
15 WarioWare, Inc.
16 Distant Planet
17 Skyworld
18 Mario Bros.
19 New Pork City
1A Smashville
1B Shadow Moses Island
1C Green Hill Zone
1D PictoChat
1E Hanenbow
1F Temple
20 Yoshi's Island (M)
21 Jungle Japes
22 Onett
23 Green Greens
24 Rainbow Cruise
25 Corneria
26 Big Blue
27 Brinstar
28 Pokémon Stadium
29 Menu
2A 75m
2B Blank
If you're using Project M, this list might be more useful
00 Battlefield
01 Final Destination
02 Delfino Plaza
03 Dracula's Castle
04 Metal Cavern
05 Mario Circuit
\* 06 Wifi Waiting Room*\
07 Rumble Falls M
08 Pirate Ship
09 Hyrule Castle 64
0A Norfair
0B Frigate Orpheon
0C Yoshi's Island (B)
0D Halberd
0E Lylat Cruise
0F Pokémon Stadium 2
10 Saffron City
11 Port Town Aero Dive
12 Summit
13 Flat Zone 2
14 Castle Siege
15 WarioWare, Inc.
16 SSE: Jungle
17 Skyworld
18 Fountain of Dreams
19 Fourside
1A Smashville
1B Shadow Moses Island
1C Green Hill Zone M
1D PictoChat
1E Skyloft
1F Temple
20 Yoshi's Story (M)
21 Jungle Japes
22 Onett
23 Dreamland 64
24 Rainbow Cruise
25 Corneria
26 Big Blue
27 Brinstar
28 Pokémon Stadium
29 Menu
2A Kongo Jungle 64
\*2B Blank*\
Notes:
Putting a Blank icon in your Stage Select Screen and selecting it will crash the game.
XX and ZZ sections can and will most likely be multiple lines long. Only one line is shown with letters for example purposes.
You have to know how to make GCT codes and run them through Brawl. http://www.youtube.com/watch?v=nz7fk96wCGw
Code Manager and GCTedit are both good programs for adding your code to Brawl.
This does not permanently change your game.
You can use Gecko or Configurable USB Loader to run your codes through Brawl.
Putting a Blank icon in your Stage Select Screen and selecting it will crash the game.
XX and ZZ sections can and will most likely be multiple lines long. Only one line is shown with letters for example purposes.
You have to know how to make GCT codes and run them through Brawl. http://www.youtube.com/watch?v=nz7fk96wCGw
Code Manager and GCTedit are both good programs for adding your code to Brawl.
This does not permanently change your game.
You can use Gecko or Configurable USB Loader to run your codes through Brawl.