TechSkylander1518 submitted a new resource:
Fill PokéDex - Just a quick bit of code to fill the player's PokéDex!
Read more about this resource...
Fill PokéDex - Just a quick bit of code to fill the player's PokéDex!
For debugging, there's the Fill Boxes command (though it's a bit slower), but if you wanted to fill a player's PokeDex without giving them a buttload of Pokemon, you'd be out of luck! So, here's that!
Ruby:def fillPokedex for i in 1..PBSpecies.maxValue $Trainer.setSeen(i) $Trainer.setOwned(i) $Trainer.formseen[i] = [[],[]] speciesData = pbLoadSpeciesData formdata = pbLoadFormToSpecies formdata[i] = [i] if !formdata[i]...
Read more about this resource...