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

[Essentials Tutorial] Speedup the default vanilla battles [EBS not compatible]

  • 17
    Posts
    8
    Years
    Important: This edit doesn't work with EBS, and is compatible with essentials 16+(i don't know if in previous versións will work)

    Tired of the extremely slow battles? Don't worry, this little script modification will help you.
    Find 'PokeBattle_Battle' script. Now, replace 'def pbStartBattle(canlose=false)' to:
    Code:
      def pbStartBattle(canlose=false)
        Graphics.frame_rate = 80
        PBDebug.log("")
        PBDebug.log("******************************************")
        begin
          pbStartBattleCore(canlose)
        rescue BattleAbortedException
          @decision=0
          @scene.pbEndBattle(@decision)
        end
        Graphics.frame_rate = 40
        return @decision
      end

    It should look something like this:
    [PokeCommunity.com] Speedup the default vanilla battles [EBS not compatible]


    Close the script editor and check it works, now you have more fast battles.

    Is a little edit and posibbly there are better ways to do it, but this form is more easy and effective.

    Sorry if there is something wrong explained, English is not my native language.
     
    Back
    Top