• 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.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Serena, Kris, Dawn, Red - which Pokémon protagonist is your favorite? Let us know by voting in our grand final favorite protagonist poll!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • 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.

[Error] No mega evolution

  • 35
    Posts
    4
    Years
    • Seen Jun 1, 2022
    Ever since I 1st launched pokemon essentials v18.1 + Gen 8 Plugin I couldn't mega evolve. I couldn't evolve my own made mega evos like Mega Arcanine. My gym leaders could evolve pokemon that already mega evolve like steelix or absol. Could somebody help me. I didn't make any script changes. I'm wondering if this is just a problem with the gen 8 plugin. If so how do I fix it?
     
    Ever since I 1st launched pokemon essentials v18.1 + Gen 8 Plugin I couldn't mega evolve. I couldn't evolve my own made mega evos like Mega Arcanine. My gym leaders could evolve pokemon that already mega evolve like steelix or absol. Could somebody help me. I didn't make any script changes. I'm wondering if this is just a problem with the gen 8 plugin. If so how do I fix it?

    This is indeed a problem with the Gen 8 project.
    Find this function in PokeBattle_Pokemon:
    Code:
      def hasItem?(item_id = 0)
        held_item = self.item
        return held_item > 0 if item_id == 0
        return false if !hasConst?(PBItems,item_id)
        return held_item == getID(PBItems,item_id)
      end
    and comment the line "return false if !hasConst?(PBItems,item_id)". I really don't know why this liine doesn't do what it's supposed to do precisely with mega-stones.
     
    Thank you. It now works perfectly, does commenting out that line change anything else? Also does the gen 8 plugin have any other things like that?
     
    Back
    Top