• 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.

Is it possible to add the Pokémon Storage System as Start Menu option?

  • 183
    Posts
    7
    Years
    • Seen Jan 22, 2025
    I'll be direct, I successfully added the option in the start menu and when it appears (it activates as the same time as the Pokémon option, even if its useless at that moment) but I can't figure out what to do now
    I basically copied the "bag" option codes for making the button, and I tried using some different things for calling the PSS, but the only one that compiles correctly, softlockes the game...

    Code:
    static bool8 StartMenuPCCallback(void)
    {
        if (!gPaletteFade.active)
        {
            PlayRainStoppingSoundEffect();
            RemoveExtraStartMenuWindows();
            CleanupOverworldWindowsAndTilemaps();
    		ShowPokemonStorageSystemPC;
            return TRUE;
        }
    
        return FALSE;
    }
    This is what I was going for...
    But I don't know what to do, the game crashes with a black screen and the music keeps playing...
     
    ShowPokemonStorageSystemPC;

    Fairly confident this line does nothing, you're not calling the function because you don't have () at the end (i.e. ShowPokemonStorageSystemPC();).
     
    Back
    Top