• 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!
  • 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!
  • The site will be down for planned maintenance beginning shortly. We apologize for any inconvenience this causes!
  • 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.

Pokemon Essentials trainers PBS file change?

  • 3
    Posts
    5
    Years
    • Seen Oct 21, 2020
    I am working on my fan game using RPG Maker and Pokemon Essentials. While I was working on adding the trainers to the PBS file, the wiki page about it changed so that the method of entry is different than before. Does this mean the old method does not work, or is this just a different way to get the same results?
     
    The old entry method still works, these are the two again just for clarity:
    Spoiler:
     
    The old entry method still works, these are the two again just for clarity:
    Spoiler:

    The awkward and annoying thing is that if you are updating 17.2 project to 18, you will have to find the specific trainer battles and copy the LoseText and delete the last parts.
     
    As far as I know changing the trainer events is completely optional.The trainer battle methods still support the old variant:
    Code:
    def pbTrainerBattle(trainerID, trainerName, endSpeech=nil,
                        doubleBattle=false, trainerPartyID=0, canLose=false, outcomeVar=1)
    Code:
    pbTrainerBattle(PBTrainers::CAMPER,"Carl",_I("Rude..."),false,0,false,0)
    Still works.
     
    Back
    Top