• 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!
  • Cyndy, May, Hero (Conquest), or Wes - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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.

Changing the pause menu's contents

  • 11
    Posts
    10
    Years
    • Seen May 25, 2021
    How I can replace the Pokédex? I have the ''Controls Screen'' script and I can display this in the Pause menu:

    Code:
    # To this screen be displayed in the pause menu, in PokemonPauseMenu script,
    # before line 'commands[cmdDebug=commands.length]=_INTL("Debug") if $DEBUG' add:
    #
    # cmdControls=-1
    # commands[cmdControls=commands.length]=_INTL("Controls")
    #
    # Before line 'elsif cmdOption>=0 && command==cmdOption' add:
    #
    # elsif cmdControls>=0 && command==cmdControls
    #   scene=PokemonControlsScene.new       
    #   screen=PokemonControls.new(scene)
    #   pbFadeOutIn(99999) {
    #     screen.pbStartScreen
    #   }

    Thats right, but I want delete the Pokedex button and add a new button, something like ''CONTROLS'', but all that I try is wrong...

    Some help?
     
    Back
    Top