• 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!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll here!
  • Red, Hilda, Paxton, or Kellyn - 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.

How to disable "area" option.

  • 6
    Posts
    12
    Years
    Hello.
    Is there any option to turn off "area" in pokedex ?
    I am making new layout for my game and pokedex and nest area is just unusefull. I'm trying to leave there just "INFO" and "FORMS" buttons.
    Please, can you help me ?
     
    Search:
    Code:
    scene=PokemonNestMapScene.new
    And comment out (use #) this section:
    Code:
                 when 2 # Show nest
                   region=-1
                   if !DEXDEPENDSONLOCATION
                     dexnames=pbDexNames
                     if dexnames[pbGetSavePositionIndex].is_a?(Array)
                       region=dexnames[pbGetSavePositionIndex][1]
                     end
                   end
                   scene=PokemonNestMapScene.new
                   screen=PokemonNestMap.new(scene)
                   ret=screen.pbStartScreen(@dexlist[curindex][0],region,listlimits)
    so it looks like this:
    Code:
    #             when 2 # Show nest
    #               region=-1
    #               if !DEXDEPENDSONLOCATION
    #                 dexnames=pbDexNames
    #                 if dexnames[pbGetSavePositionIndex].is_a?(Array)
    #                   region=dexnames[pbGetSavePositionIndex][1]
    #                 end
    #               end
    #               scene=PokemonNestMapScene.new
    #               screen=PokemonNestMap.new(scene)
    #               ret=screen.pbStartScreen(@dexlist[curindex][0],region,listlimits)
    and then change:
    Code:
                 when 3 # Show forms
    That line to:
    Code:
                 when [COLOR="Red"][B]2[/B][/COLOR] # Show forms
    That should do the trick. Not tested.

    EDIT:
    Don't forget to edit the graphic and remove <nest> or <area> which ever one it says... I forget.
     
    Last edited:
    There's also this code just above the stuff Nickalooose mentioned:

    Code:
             elsif Input.trigger?(Input::RIGHT) || ret==6
               newpage=page+1 if page<[COLOR=Red]3[/COLOR]
               pbPlayCursorSE() if newpage!=1
    Change the red number to a 2. I don't think it'll fix much, but it's for the sake of completeness.
     
    Back
    Top