• 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!
  • Scottie, Todd, Serena, Kris - 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.

[Scripting Question] Johto and Kanto Pokedex

  • 6
    Posts
    11
    Years
    • Seen Jan 2, 2021
    Hello,
    I've been trying to add a new Pokedex to my game, for example I would like to have Kanto's Pokedex and later I receive the Johto Pokedex from Oak's Aide. All I found so far is this script(found below), but I couldn't find a way to have the Aide to give me that new Pokedex.

    Other than that, when I debug the other Pokedex I can't seem to toggle between the two Pokedex.

    Can anyone help me?

    DEXDEPENDSONLOCATION = false
    def pbDexNames; return [
    [_INTL("Kanto Pokédex"),0],
    [_INTL("Johto Pokédex"),1],
    _INTL("National Pokédex")
    ]; end
    ALWAYSSHOWALLFORMS = false
    DEXINDEXOFFSETS = []
     
    Back
    Top