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

Can i reset a pokemon to lvl 5?

15
Posts
7
Years
  • Hi people, can someone help me to make a NPC that will reset a specific pokemon from my party to lvl 5?
    And yes how? Thank you for helping me.
     
    Last edited:

    Poq

    144
    Posts
    6
    Years
    • Seen Aug 28, 2021
    Try using an event like this:
    Code:
    @>Script: pbChoosePokemon(1,3)
    @>Conditional Branch: Variable [0001] < 0
      @>Text: You cancelled the choice.
      @>Jump To Label: Done
     : Branch End
    @>Conditional Branch: pbGetPokemon(1).egg?      -- Checks whether the Pokémon recorded in Global Variable 1 is an egg
      @>Text: You chose an egg.
      @>Jump To Label: Done
     : Branch End
    @>Text: You chose a \v[3].                      -- Global Variable 3 has the Pokémon's name
    @>Script: poke=pbGetPokemon(1).
                    :poke.level=5
    @>Text: It's at level 5!
    @>Label: Done
     
    Last edited:
    Back
    Top