Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

[REQ] OverDrive to Replace Attack when full

Status
Not open for further replies.
Hello,
I am using KGC Overdrive v2 with my game, and was wonder if anyone had a script that would replace Attack command with Overdrive when the bar was full sorta like FF7, or atleat anything close to this.

Also am looking for a script that will work with the RTAB That you can choose 1 OD from a list you have learned and it will use by default FF7 ish
 

Juuhou

Sponsor

If you could study the soul rage script and see how that worked or asked some of the better scripters to try and take a crack at it...you may be able to get the results you need.
 
Dammit... I feel like I almost had it with this one:

Code:
class Scene_Battle
  OD_GAUGE_MAX = 1000
  #include KGC_Game_Actor
  #alias sasukesfirstalias phase3_setup_command_window
  alias sasukeupdate update_phase3_basic_command
  def update_phase3_basic_command
    # Go through the Actors
    $game_party.actors.each { |actor|
      # Only perform if the actor exists
      #next unless actor.exist?
    #sasukesfirstalias
    sasukeupdate
    if Input.trigger?(Input::C)
      #@party = false
      # It diverges at cursor position of the actor command window
      case @actor_command_window.index
      when 0  # Attack
        if $othercommands == 1
          $Skillgroup = 29
          $game_system.se_play($data_system.decision_se)
          # Starting the selection of skill
          start_skill_select
        else
      if actor.overdrive == 0
        actor.overdrive_ring = false
      elsif actor.overdrive == OD_GAUGE_MAX  #[actor_id]
        # Performing decision SE
        actor.overdrive_ring = true
        $Skillgroup = 18
        $game_system.se_play($data_system.decision_se)
        start_skill_select
      else
        # Performing decision SE
        $game_system.se_play($data_system.decision_se)
        # Starting the selection of the enemy
        start_enemy_select
      end
    end
  end
end
}
end
end

The error only comes after you select your Attack....
 
We are getting closer though, I been looking through that SOul Rage thing and I really can not understand it lol. I am used to tearing apart Menus. But i will continue trying, I like the fact and when you press RIght it shows the SOul Rage thing wanna try and do that with the OverDrive. WOuld make it work nice.
 
Please don't necropost. This thread is more than two months old. It's not even your topic. If you want to request something, please make your own topic. This topic is closed. If the original creator want me to reopen this thread he/she can send me a PM.
 
Status
Not open for further replies.

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top