• 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!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll here!
  • Red, Hilda, Paxton, or Kellyn - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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 can I make Pokemon able to forget HM just like a TM?

  • 4
    Posts
    10
    Years
    • Seen Sep 20, 2014
    Hey,

    POKEMON ESSENTIALS / RPG MAKER XP QUESTION

    Is there a way to allow Pokemon to forget HMs? I would like to make my HMs forgettable just like TMs. Is there a way?

    Greetings,
    Musicxmp3
     
    Find this in PokemonSummary

    Code:
    def pbStartForgetScreen(party,partyindex,moveToLearn)
        ret=-1
        @scene.pbStartForgetScene(party,partyindex,moveToLearn)
        loop do
          [email protected](moveToLearn)
          if ret>=0 && moveToLearn!=0 && pbIsHiddenMove?(party[partyindex].moves[ret].id) && !$DEBUG
            Kernel.pbMessage(_INTL("HM moves can't be forgotten now.")){ @scene.pbUpdate }
          else
            break
          end
        end
        @scene.pbEndScene
        return ret
      end

    Change to this

    Code:
    def pbStartForgetScreen(party,partyindex,moveToLearn)
        ret=-1
        @scene.pbStartForgetScene(party,partyindex,moveToLearn)
          [email protected](moveToLearn)
        @scene.pbEndScene
        return ret
      end
     
    Back
    Top