• 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!
  • 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