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

[Scripting Question] Johto and Kanto Pokedex

6
Posts
10
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