• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Staff applications for our PokéCommunity Daily and Social Media team are now open! Interested in joining staff? Then click here for more info!
  • 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 program wild encounters

  • 78
    Posts
    10
    Years
    • Seen Sep 7, 2015
    Hello,
    I am having a hard time, even after reading the wiki, learning how to program wild encounters.
    For Example,
    I'm trying to have an wild land encounter in a route that contains:
    20% Bidoof
    10%Starly
    15% Shinx
    20% Patrat
    5% Bunnelby

    Also, How would I put in double wild encounters in this type of situation?
     
    Last edited:
    Hello,
    I am having a hard time, even after reading the wiki, learning how to program wild encounters.
    For Example,
    I'm trying to have an wild land encounter in a route that contains:
    20% Bidoof
    10%Starly
    15% Shinx
    20% Patrat
    5% Bunnelby

    Also, How would I put in double wild encounters in this type of situation?
    70? Yep, I know that Essentials has support, but I suggest you to keep it simple. I'll give you an 100 example, with Mew with the remaining 30 points:

    (the probability Land default order is 20, 20, 10, 10, 10, 10, 5, 5, 4, 4, 1, 1)

    Code:
    031 # Route 3
    25,10,10
    Land
    BIDOOF,5,10
    PATRAT,5,10
    STARLY,5,10
    SHINX,5,10
    MEW,5,10
    MEW,5,10
    SHINX,5,10
    BUNNELBY,5,10
    MEW,5,10
    MEW,5,10
    MEW,5,10
    MEW,5,10
     
    Yeah, I figured out how to do that just 10 minutes before reading this, but I'm still looking on how to do double encounters, if you or anyone can help, it would be appreciated.
     
    Back
    Top