• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • 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.

How to change pokemon max level?

Moving this to the correct forum.... although increasing a max level so high it is near infinite would require a bit of coding in the
Code:
$pokemon
object.
 
Last edited:
i want to change the pokemons max levels from 100 to infinity, but how?

'Setting' script:
Code:
#===============================================================================
# * The maximum level Pokémon can reach.
# * The level of newly hatched Pokémon.
# * The odds of a newly generated Pokémon being shiny (out of 65536).
# * The odds of a wild Pokémon/bred egg having Pokérus (out of 65536).
#===============================================================================
[COLOR="Red"]MAXIMUMLEVEL       = 100[/COLOR]
EGGINITIALLEVEL    = 1
SHINYPOKEMONCHANCE = 8
POKERUSCHANCE      = 3

Change to 999? lol
 
'Setting' script:
Code:
#===============================================================================
# * The maximum level Pokémon can reach.
# * The level of newly hatched Pokémon.
# * The odds of a newly generated Pokémon being shiny (out of 65536).
# * The odds of a wild Pokémon/bred egg having Pokérus (out of 65536).
#===============================================================================
[COLOR="Red"]MAXIMUMLEVEL       = 100[/COLOR]
EGGINITIALLEVEL    = 1
SHINYPOKEMONCHANCE = 8
POKERUSCHANCE      = 3

Change to 999? lol

You'd also have to specify how much xp it takes to get to every level past 100 for each learning rate in PBExperience!
 
Last edited:
The Settings is a script section, which means you open it using the built in script editor. It's the icon beside the music note on the bar at the top, or you can click Tools>Script Editor...
The script sections are on the left side, while the contents are on the right. Settings is the one at the very top.

Also, while it uses a look up table for the first 100 levels, Essentials switches to a formula to calculate exp growth. (Read about the formulas on Bulbapedia.)
Mind you, some of those formulas may misbehave at ridiculous levels.
 
Back
Top