• 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!
  • It's time to vote for your favorite Pokémon Battle Revolution protagonist in our new weekly protagonist poll! Click here to cast your vote and let us know which PBR protagonist you like most.
  • 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] Missing PBMoves script

#Not Important

All hail the wishmaker
  • 910
    Posts
    5
    Years
    Recently, I made a post that i had a PBSpecies missing error,
    I fixed the error by adding this PBSpecies script:
    Code:
     module PBSpecies
       BULBASAUR=1
       IVYSAUR=2
       #[...all defined pokemon...]
       MELOETTA=648
       GENESECT=649
       def PBSpecies.getName(id)
         return pbGetMessage(MessageTypes::Species,id)
       end
       def PBSpecies.getCount
         return 649
       end
       def PBSpecies.maxValue
         return 649
       end
     end
    Then I got another error saying that I was missing PBMoves
    Maruno said that this is automatically compiled, but I cant get it to work...
    Could someone that has working scripts post them here please...
    Thanks in advance
    😅
     
    Those modules are generated at run time. They don't actually exist in a form that tgey can be copied. you can regenerate them forcibly by pressing the green playtest button in RMXP and press and hold the CTRL key when the windo opens, and don't let it go until it's done.
     
    Back
    Top