• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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
    9
    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