The PokéCommunity Forums  

Go Back   The PokéCommunity Forums > Fan Games > Binary ROM Hacking
Reload this Page Other PKSV National dex var Help

Notices
For all updates, view the main page.

Binary ROM Hacking Need a helping hand or just want to talk about binary ROM hacks? Get comments and answers to any ROM Hacking-related problems, questions or thoughts you have here.

Ad Content
Reply
 
Thread Tools
  #1   Link to this post, but load the entire thread.  
Old December 28th, 2014 (9:07 AM).
Philipxander's Avatar
Philipxander Philipxander is offline
 
Join Date: Dec 2014
Gender: Male
Posts: 33
So for example if i go through the story of my rom, is there a way with var/flags on PKSV to get to that point without doing all the game? For example if i want the national dex?
Reply With Quote
  #2   Link to this post, but load the entire thread.  
Old December 28th, 2014 (9:21 AM).
Spherical Ice's Avatar
Spherical Ice Spherical Ice is online now
 
Join Date: Nov 2007
Location: Leicester, UK
Age: 25
Posts: 5,251
To activate the National Pokédex, the player needs to have interacted with a script that includes special 0x16F. As for the rest, it seems to be mostly setflag commands. If you're hacking FireRed, a list of the flags and their uses can be found here: http://www.pokecommunity.com/showthread.php?t=302347
__________________
Reply With Quote
  #3   Link to this post, but load the entire thread.  
Old December 28th, 2014 (10:22 AM). Edited December 28th, 2014 by Skaraborne.
Skaraborne's Avatar
Skaraborne Skaraborne is offline
The sharpest 'mon in the thread
 
Join Date: Dec 2014
Location: Ilex Forest
Gender: Male
Nature: Calm
Posts: 195
I hope my advice helped you out a bit. I'm actually relieved myself that it did work.
__________________
Reply With Quote
  #4   Link to this post, but load the entire thread.  
Old December 28th, 2014 (11:33 AM). Edited December 28th, 2014 by Philipxander.
Philipxander's Avatar
Philipxander Philipxander is offline
 
Join Date: Dec 2014
Gender: Male
Posts: 33
Thank you both Spherical Ice and Slowpoke, really handy.
Is there a way to have the completed pokedex? (also how am i supposed to insert it in a script, i tried by simply putting special 0x16 at the end of a message but didn't work), Sorry i just started!
Reply With Quote
  #5   Link to this post, but load the entire thread.  
Old December 28th, 2014 (11:14 PM). Edited December 28th, 2014 by Skaraborne.
Skaraborne's Avatar
Skaraborne Skaraborne is offline
The sharpest 'mon in the thread
 
Join Date: Dec 2014
Location: Ilex Forest
Gender: Male
Nature: Calm
Posts: 195
Quote:
Originally Posted by Philipxander
also how am i supposed to insert it in a script, i tried by simply putting special 0x16 at the end of a message but didn't work
I'm not quite good at specials, but I found a few when I was editing scripts. Just try it like this (if you're using PKSV):
Code:
#dyn 0x740000
#org @main
lock
faceplayer
msgbox @yourmessage
callstd MSG_NORMAL
special 0x16F
setflag (the National Pokédex ones from the list)
setflag
setflag
release
end

#org @yourmessage
=Your message.
Try it that way. As I mentioned, I'm not familiar with special scripts at all. Good luck!
__________________
Reply With Quote
  #6   Link to this post, but load the entire thread.  
Old December 29th, 2014 (2:10 AM).
Spherical Ice's Avatar
Spherical Ice Spherical Ice is online now
 
Join Date: Nov 2007
Location: Leicester, UK
Age: 25
Posts: 5,251
The special doesn't complete the Pokédex, it simply activates the National Pokédex. If you want to automatically capture every single Pokémon, well there really isn't a very efficient way of doing this other than a list of givepokemon commands. Note that this WILL make it seem like your game is frozen once you activate the script because of how long it takes to fully excecute. The best way to find out when it's finished is to apply the script to an NPC, interact with it, and then just hold down the speed-up button and a directional arrow key (so you know when the script is over as the player will start moving), you will eventually be released. This gives you Level 100 Pokémon from Bulbasaur to Deoxys. I made it using this handy list generator. This requires XSE 1.1.1 and its accompanying stdpoke.rbh and stditems.rbh files, available here.

Spoiler:
Code:
#dynamic 0x800000
#include stdpoke.rbh stditems.rbh

#org @start
special 0x16F
givepokemon PKMN_BULBASAUR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_IVYSAUR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VENUSAUR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHARMANDER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHARMELEON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHARIZARD 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SQUIRTLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WARTORTLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BLASTOISE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CATERPIE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_METAPOD 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BUTTERFREE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WEEDLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KAKUNA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BEEDRILL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PIDGEY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PIDGEOTTO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PIDGEOT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RATTATA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RATICATE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SPEAROW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FEAROW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_EKANS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ARBOK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PIKACHU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RAICHU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SANDSHREW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SANDSLASH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NIDORAN♀ 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NIDORINA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NIDOQUEEN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NIDORAN♂ 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NIDORINO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NIDOKING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CLEFAIRY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CLEFABLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VULPIX 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NINETALES 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_JIGGLYPUFF 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WIGGLYTUFF 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ZUBAT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GOLBAT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ODDISH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GLOOM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VILEPLUME 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PARAS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PARASECT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VENONAT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VENOMOTH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DIGLETT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DUGTRIO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MEOWTH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PERSIAN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PSYDUCK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GOLDUCK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MANKEY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PRIMEAPE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GROWLITHE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ARCANINE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_POLIWAG 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_POLIWHIRL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_POLIWRATH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ABRA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KADABRA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ALAKAZAM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MACHOP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MACHOKE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MACHAMP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BELLSPROUT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WEEPINBELL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VICTREEBEL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TENTACOOL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TENTACRUEL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GEODUDE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GRAVELER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GOLEM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PONYTA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RAPIDASH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SLOWPOKE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SLOWBRO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAGNEMITE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAGNETON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FARFETCHED 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DODUO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DODRIO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SEEL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DEWGONG 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GRIMER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MUK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHELLDER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CLOYSTER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GASTLY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HAUNTER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GENGAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ONIX 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DROWZEE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HYPNO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KRABBY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KINGLER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VOLTORB 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ELECTRODE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_EXEGGCUTE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_EXEGGUTOR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CUBONE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAROWAK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HITMONLEE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HITMONCHAN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LICKITUNG 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KOFFING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WEEZING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RHYHORN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RHYDON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHANSEY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TANGELA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KANGASKHAN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HORSEA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SEADRA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GOLDEEN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SEAKING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_STARYU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_STARMIE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MRMIME 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SCYTHER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_JYNX 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ELECTABUZZ 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAGMAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PINSIR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TAUROS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAGIKARP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GYARADOS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LAPRAS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DITTO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_EEVEE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VAPOREON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_JOLTEON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FLAREON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PORYGON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_OMANYTE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_OMASTAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KABUTO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KABUTOPS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_AERODACTYL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SNORLAX 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ARTICUNO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ZAPDOS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MOLTRES 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DRATINI 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DRAGONAIR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DRAGONITE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MEWTWO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MEW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHIKORITA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BAYLEEF 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MEGANIUM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CYNDAQUIL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_QUILAVA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TYPHLOSION 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TOTODILE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CROCONAW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FERALIGATR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SENTRET 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FURRET 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HOOTHOOT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NOCTOWL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LEDYBA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LEDIAN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SPINARAK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ARIADOS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CROBAT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHINCHOU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LANTURN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PICHU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CLEFFA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_IGGLYBUFF 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TOGEPI 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TOGETIC 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NATU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_XATU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAREEP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FLAAFFY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_AMPHAROS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BELLOSSOM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MARILL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_AZUMARILL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SUDOWOODO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_POLITOED 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HOPPIP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SKIPLOOM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_JUMPLUFF 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_AIPOM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SUNKERN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SUNFLORA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_YANMA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WOOPER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_QUAGSIRE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ESPEON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_UMBREON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MURKROW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SLOWKING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MISDREAVUS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_UNOWN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WOBBUFFET 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GIRAFARIG 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PINECO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FORRETRESS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DUNSPARCE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GLIGAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_STEELIX 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SNUBBULL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GRANBULL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_QWILFISH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SCIZOR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHUCKLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HERACROSS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SNEASEL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TEDDIURSA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_URSARING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SLUGMA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAGCARGO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SWINUB 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PILOSWINE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CORSOLA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_REMORAID 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_OCTILLERY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DELIBIRD 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MANTINE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SKARMORY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HOUNDOUR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HOUNDOOM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KINGDRA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PHANPY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DONPHAN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PORYGON2 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_STANTLER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SMEARGLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TYROGUE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HITMONTOP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SMOOCHUM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ELEKID 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAGBY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MILTANK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BLISSEY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RAIKOU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ENTEI 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SUICUNE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LARVITAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PUPITAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TYRANITAR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LUGIA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HO-OH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CELEBI 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TREECKO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GROVYLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SCEPTILE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TORCHIC 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_COMBUSKEN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BLAZIKEN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MUDKIP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MARSHTOMP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SWAMPERT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_POOCHYENA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MIGHTYENA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ZIGZAGOON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LINOONE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WURMPLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SILCOON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BEAUTIFLY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CASCOON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DUSTOX 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LOTAD 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LOMBRE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LUDICOLO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SEEDOT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NUZLEAF 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHIFTRY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TAILLOW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SWELLOW 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WINGULL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PELIPPER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RALTS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KIRLIA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GARDEVOIR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SURSKIT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MASQUERAIN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHROOMISH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BRELOOM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SLAKOTH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VIGOROTH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SLAKING 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NINCADA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NINJASK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHEDINJA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WHISMUR 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LOUDRED 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_EXPLOUD 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAKUHITA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HARIYAMA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_AZURILL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NOSEPASS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SKITTY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DELCATTY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SABLEYE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MAWILE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ARON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LAIRON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_AGGRON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MEDITITE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MEDICHAM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ELECTRIKE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MANECTRIC 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_PLUSLE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MINUN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VOLBEAT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ILLUMISE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ROSELIA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GULPIN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SWALOT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CARVANHA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHARPEDO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WAILMER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WAILORD 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_NUMEL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CAMERUPT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TORKOAL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SPOINK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GRUMPIG 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SPINDA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TRAPINCH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_VIBRAVA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FLYGON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CACNEA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CACTURNE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SWABLU 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ALTARIA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ZANGOOSE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SEVIPER 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LUNATONE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SOLROCK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BARBOACH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WHISCASH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CORPHISH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CRAWDAUNT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BALTOY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CLAYDOL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LILEEP 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CRADILY 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ANORITH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ARMALDO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_FEEBAS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_MILOTIC 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CASTFORM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KECLEON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHUPPET 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BANETTE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DUSKULL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DUSCLOPS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_TROPIUS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CHIMECHO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_ABSOL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WYNAUT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SNORUNT 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GLALIE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SPHEAL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SEALEO 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_WALREIN 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_CLAMPERL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_HUNTAIL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GOREBYSS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RELICANTH 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LUVDISC 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BAGON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SHELGON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_SALAMENCE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_BELDUM 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_METANG 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_METAGROSS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_REGIROCK 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_REGICE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_REGISTEEL 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LATIAS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_LATIOS 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_KYOGRE 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_GROUDON 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_RAYQUAZA 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_JIRACHI 0x64 ITEM_NONE 0x0 0x0 0x0
givepokemon PKMN_DEOXYS 0x64 ITEM_NONE 0x0 0x0 0x0
release
end
__________________
Reply With Quote
  #7   Link to this post, but load the entire thread.  
Old December 29th, 2014 (12:51 PM).
Philipxander's Avatar
Philipxander Philipxander is offline
 
Join Date: Dec 2014
Gender: Male
Posts: 33
Thank you mate, However there's a reason i wanted to see the national dex, well you see i expanded the pokemons with the gen III suite, and i wanted to see if actually they go beyond deoxys, i added 140...
Reply With Quote
  #8   Link to this post, but load the entire thread.  
Old December 29th, 2014 (1:26 PM).
Spherical Ice's Avatar
Spherical Ice Spherical Ice is online now
 
Join Date: Nov 2007
Location: Leicester, UK
Age: 25
Posts: 5,251
You could simply just givepokemon 0x1B8 0x10 0x0 0x0 0x0 0x0, as that would give you the first expanded Pokémon.
__________________
Reply With Quote
  #9   Link to this post, but load the entire thread.  
Old December 30th, 2014 (8:24 AM).
Philipxander's Avatar
Philipxander Philipxander is offline
 
Join Date: Dec 2014
Gender: Male
Posts: 33
Yup, but i wanted to see if they show up in the dex, that's why, thank you anyway!
Reply With Quote
  #10   Link to this post, but load the entire thread.  
Old January 9th, 2015 (8:11 AM).
Skaraborne's Avatar
Skaraborne Skaraborne is offline
The sharpest 'mon in the thread
 
Join Date: Dec 2014
Location: Ilex Forest
Gender: Male
Nature: Calm
Posts: 195
I've found another method somewhere around, guaranteed to work.

Code:
#dyn 0x740000
#org @main
lock
faceplayer
message @upgradepokedex
callstd MSG_NORMAL
special FR_NATIONAL_DEX
release
end

#org @upgradepokedex
= I'll upgrade your Pokedex for you.
That should work.
__________________
Reply With Quote
  #11   Link to this post, but load the entire thread.  
Old January 9th, 2015 (8:16 AM).
Spherical Ice's Avatar
Spherical Ice Spherical Ice is online now
 
Join Date: Nov 2007
Location: Leicester, UK
Age: 25
Posts: 5,251
Quote:
Originally Posted by Slowpoke13 View Post
I've found another method somewhere around, guaranteed to work.

Code:
#dyn 0x740000
#org @main
lock
faceplayer
message @upgradepokedex
callstd MSG_NORMAL
special FR_NATIONAL_DEX
release
end

#org @upgradepokedex
= I'll upgrade your Pokedex for you.
That should work.
That's exactly what my first post explained, special 0x16F activates the national dex.
__________________
Reply With Quote
Reply

Quick Reply

Join the conversation!

Create an account to post a reply in this thread, participate in other discussions, and more!

Create a PokéCommunity Account
Ad Content

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 9:10 AM.