• 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 Legends: Z-A 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.

Making HM moves forgettable through normal means

Guest123123

Guest
  • 0
    Posts
    A few weeks ago I made a thread about how the Move Deleter crashed whenever selecting a Gen 7 Pokemon to delete a move.

    It turns out that actually happens with all Pokemon, not just Gen 7. I don't know why this is happening (I posted the error message in the other thread but no one responded to the thread), so I think my only solution is to delete the Move Deleter and make HM moves forgettable so that a Move Deleter wouldn't be necessary. How would I go about doing that?
     
    Replace

    if ret>=0 && moveToLearn!=0 && pbIsHiddenMove?(party[partyindex].moves[ret].id) && !$DEBUG
    Kernel.pbMessage(_INTL("HM moves can't be forgotten now.")){ @scene.pbUpdate }

    for this

    if ret>=0 && moveToLearn!=0 && pbIsHiddenMove?(party[partyindex].moves[ret].id) && !$DEBUG
    #Kernel.pbMessage(_INTL("HM moves can't be forgotten now.")){ @scene.pbUpdate }
    break

    Anyway if your move deleter is bugged you can see what scripts interact with the function and
    compare them with a clean version of essentials
     
    Back
    Top