• 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] Dex List script

211
Posts
7
Years
    • Seen May 5, 2024
    Hi....Can I ask?
    What the script to Show New Dex list using Npc event.
    Thank's
    Sorry for my bad english.
     

    WolfPP

    Spriter/ Pixel Artist
    1,309
    Posts
    5
    Years
  • Sorry but i don't undestand you.

    Well, to check pokedex than you have, just search, inside 'Settings', 'DEXDEPENDSONLOCATION = false':
    Code:
    DEXDEPENDSONLOCATION = false
    def pbDexNames; return [
       [_INTL("Kanto Pokédex"),0],
       [_INTL("Johto Pokédex"),1],
       [_INTL("Hoenn Pokédex"),2],
       [_INTL("Sinnoh Pokédex"),3],
       [_INTL("Unova Pokédex"),4],
       [_INTL("Kalos Pokédex"),5],
       [_INTL("Alola Pokédex"),6],
       _INTL("National Pokédex")
    ]; end
    ALWAYSSHOWALLFORMS = true #false
    DEXINDEXOFFSETS    = [-1]#{}
    This is my script, just check what you have.

    Also, to open region pokedex, just check how NPC works in Pokémon Lab map, Event ID 13 (aka Dex access):
    https://imgur.com/a/v0qUMgi
     
    Last edited:
    Back
    Top