Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
Hi guys!
I was wondering if there is a way to remove the gender selection after the birch speech. I'm building my own hack rom and I want just a male character as in the first pokemon games.
Yup definitely possible. Only requires a change of 2-3 lines of code.
Go to /src/main_menu.c. This file contains the entire new game sequence. You can change the entire sequence if you'd want (see Avara's post here on how to change the intro pokemon).
Specifically for removing the gender question: Go to line 1483, and edit the Task_NewGameBirchSpeech_WaitForPlayerFadeIn.
Little extra: For those looking where to change the intro speech text. Go to /data/text/birch_speech.inc, this contains all the text of the intro speech.
Hi!
I've recently changed some code lines about "removing gender selection". I suggest to change also the "Task_NewGameBirchSpeech_ProcessNameYesNoMenu" function this way:
Code:
case 1:
PlaySE(SE_SELECT);
gTasks[taskId].func = Task_NewGameBirchSpeech_StartNamingScreen;
This will prevent the game to go back to gender selection if you don't like your name and you press "no".