• 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.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • 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?

  • 182
    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...
     
    Back
    Top