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

Pokedex Menu Background

Prof Oakley

JourneyofPossibilities Creator
  • 75
    Posts
    12
    Years
    How would i change the script to make it so the pokedexMenubg picture shows up when you open the pokedex, even with only one region in it? I edited it to look cool, not realizing it was for multiple regions only.

    I want it so the player clicks pokedex on the menu, it shows that bg picture, they hit the spacebar, and then it goes to the pokedex information. Instead of just showing the list with one region.

    It doesn't have to say the information on it like seen and obtained, I just want to show the picture before they see the list of pokemon.
     
    In PokemonPauseMenu, find the following code and delete the red lines:
    Code:
          if cmdPokedex>=0 && command==cmdPokedex
            [COLOR=Red]if DEXDEPENDSONLOCATION
              pbFadeOutIn(99999) {
                 scene=PokemonPokedexScene.new
                 screen=PokemonPokedex.new(scene)
                 screen.pbStartScreen
                 @scene.pbRefresh
              }
            else[/COLOR]
              [COLOR=Red]if $PokemonGlobal.pokedexViable.length==1
                $PokemonGlobal.pokedexDex=$PokemonGlobal.pokedexViable[0]
                $PokemonGlobal.pokedexDex=-1 if $PokemonGlobal.pokedexDex==$PokemonGlobal.pokedexUnlocked.length-1
                pbFadeOutIn(99999) {
                   scene=PokemonPokedexScene.new
                   screen=PokemonPokedex.new(scene)
                   screen.pbStartScreen
                   @scene.pbRefresh
                }
              else[/COLOR]
                pbLoadRpgxpScene(Scene_PokedexMenu.new)
             [COLOR=Red] end[/COLOR]
            [COLOR=Red]end[/COLOR]
          elsif cmdPokegear>=0 && command==cmdPokegear
    To remove the text from that screen (i.e. the Dex name and quantities lists), edit the scripts in class Scene_PokedexMenu in PokemonPokedex. It's up to you to figure out how, although I will say that it'd involve deleting most of the scripts' contents.
     
    :) Thank you oh so very much!
     
    Back
    Top