pbGrantRandomPokemon(RANDOM_FIX, 5)
def pbRandomStarter
r = rand(898) #Make sure this number matches the amount of pokemon in your national dex.
pbAddToParty(r + 1,5)
end
RANDOM_STARTER={1=>:BULBASAUR,2=>:CHARMANDER,3=>:SQUIRTLE,4=>:PIKACHU,5=>:EEVEE}
def pbRandomStarterPkmn
r = rand(5) + 1
pbAddToParty(RANDOM_STARTER.fetch(r),5)
end
Taht's because of this :
![]()
It worked for the guy in his video :(
pbGrantRandomPokemon(pbGet(47), 5)
pbAddPokemon(pbGet(47), 5)