• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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]

16
Posts
7
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:
    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