• 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!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • 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.

Make wild Pok?mon stronger on maps with higher ID numbers

  • 10
    Posts
    9
    Years
    • Seen Apr 27, 2016
    Make wild Pokémon stronger on maps with higher ID numbers

    Hello! i've edited an original essentials script with a simple equation that calculates the level of all the WILD pokemon found!

    just remove this part in PField_EncounterModifiers:
    Code:
    Events.onWildPokemonCreate+=proc {|sender,e|
       pokemon=e[0]
       if $game_map.map_id==51
         pokemon.level=pbBalancedLevel($Trainer.party) - 4 + rand(5)   # For variety
         pokemon.calcStats
         pokemon.resetMoves
       end
    }

    and replace it with this:
    Code:
    #by roby_kof
    Events.onWildPokemonCreate+=proc {|sender,e|
       pokemon=e[0]
       if $game_map.map_id>16
         pokemon.level=($game_map.map_id/7)+10+rand($game_map.map_id/7)  # For variety
         pokemon.calcStats
         pokemon.resetMoves
       end
    }

    you can edit the
    Code:
    $game_map.map_id>16
    with any map ID you want the script to sart... you can also change the parameters in the equation if you need to!
    My equation calculates levels which get higher and have a higher range with a rhythm similar to the original Pokémon games.
    Levels are calculated using the map ID: the higher is the ID, the higher are the levels!
     
    Last edited:
    Back
    Top