• 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.

Wild Pokemon with impossible levels (missingNo)

@nuzamaki90
That would mean regular Pokemon would go over 100 he doesn't want that to happen. therefore we need a different method!
 
I recommend you to edit only the level displayed in the battle message box (in Pokemon_ActualScene change line 'textpos.push([_INTL("Lv{1}",@battler.level),@spritebaseX+202,8,true,base,shadow])' to display fixed levels for these pokémon.

To make some species with different max level, you need to edit all scripts where 'MAXLEVEL' are read and change to something like 'levellimit(species)' and make the def:

Code:
def levellimit(species)
  ([PBSpecies::MISSINGNO, PBSpecies::SOMEOTHERPOKEMON, PBSpecies::SOMEANOTHERPOKEMON].include?(species)) ? return 255 : return MAXLEVEL
end

You need to put a way to read the species, so you need to edit some methods to pass this attribute.
 
I recommend you to edit only the level displayed in the battle message box (in Pokemon_ActualScene change line 'textpos.push([_INTL("Lv{1}",@battler.level),@spritebaseX+202,8,true,base,shadow])' to display fixed levels for these pokémon.

To make some species with different max level, you need to edit all scripts where 'MAXLEVEL' are read and change to something like 'levellimit(species)' and make the def:

Code:
def levellimit(species)
  ([PBSpecies::MISSINGNO, PBSpecies::SOMEOTHERPOKEMON, PBSpecies::SOMEANOTHERPOKEMON].include?(species)) ? return 255 : return MAXLEVEL
end
You need to put a way to read the species, so you need to edit some methods to pass this attribute.
Thanks You!

Also must I change the MAXLEVEL of the script Compiler?
 
Back
Top