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

Multiple Pokédex's

  • 423
    Posts
    14
    Years
    • Seen Aug 31, 2023
    Ok ive gone through the region numbers for all pokémon and ive done kanto, johto, sinnoh, hoenn but it will not show unova and just goes straight to national dex even though ive added it to the regional dex list and added the unlock script for it

    EDIT
    ok fixed but now need to figure out how to move the region lists up on the screen as they do not all fit
     
    Last edited:
    The scripts that show the selection of Dexes to choose from are at the top of the script section PokemonPokedex. Change the number 192 that appears in three places there to whatever you want. You may also need to change the y coordinate of @sprites["headings"] as well (currently 136).
     
    ah kool thx will get this done also noticed that it will show how many pokemon owned and seen in kanto, johto, hoenn, sinnoh but no numbers for custom (a spare dex listing after unova for those who want a new region) or national dex
    any suggestions?

    EDIT
    issue fixed
    [PokeCommunity.com] Multiple Pokédex's
     
    Last edited:
    Dude, I have the same problem you had where the numbers were not showing for the bottom pokedex, but where showing for the rest. How did you fix it?
     
    its in the array of numbers that Maruno was on about each section had a group of 4 numbers and its the last number that needs to be increased

    this is my version of the section of the script in PokemonPokedex lines 55-66

    Code:
        @sprites["seenlist"]=Window_AdvancedTextPokemon.newWithSize(_INTL(""),
           270,110,98,292,@viewport) #192,98,192,@viewport)
        @sprites["seenlist"].text=seentext
        @sprites["seenlist"].windowskin=nil
        @sprites["ownedlist"]=Window_AdvancedTextPokemon.newWithSize(_INTL(""),
           366,110,98,292,@viewport) #192,98,192,@viewport)
        @sprites["ownedlist"].text=ownedtext
        @sprites["ownedlist"].windowskin=nil
        @sprites["headings"]=Window_AdvancedTextPokemon.newWithSize(
           _INTL("<c3=F8F8F8,C02028>SEEN<r>OBTAINED</c3>"),
           286,70,208,64,@viewport) #136,208,64,@viewport)
        @sprites["headings"].windowskin=nil
    hope this helps
     
    Back
    Top