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

Can't unlock the National Pokédex

12
Posts
8
Years
  • In such a short spawn of time I come with another problem.
    I tried having three regional pokédex and a national one, but for some reason it doesn't work. I end up only with the three regional dexes while the national one is still locked (even in the debug mode I can't unlock it). I'm trying to make a dex list just like XY had. This is how I've set it up in the script "Settings"

    Code:
    DEXDEPENDSONLOCATION = false
    def pbDexNames; return [
       [_INTL("Center Pokédex"),0],
       [_INTL("North Pokédex"),1],
       [_INTL("Islands Pokédex"),2],
       _INTL("National Pokédex")
    ]; end
    ALWAYSSHOWALLFORMS = false
    DEXINDEXOFFSETS    = []

    and this is the commands I'm using to give the dex to the player
    Code:
    $Trainer.pokedex = true
    pbUnlockDex(0)
    pbUnlockDex(1)
    pbUnlockDex(2)
    pbUnlockDex
     
    Back
    Top