Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Script compatibility help
#4
aHA!

Okay, the Update Phase3 routine needed an extra touch for ParaDog's system.

To be specific, the Eladia system accounted for the basic windows that were open, the command window, the item and skill windows, and the 'right window' used for the equipment swapping. HOWEVER, the ParaDog system only set delays for the item, skill and command window alone and had no right window whereby the AT bar delay was to go. Ergo, you had no delay option present.... until now:

Code:
#==============================================================================
# ** Scene_Battle
#------------------------------------------------------------------------------
#  This class performs battle screen processing.
#==============================================================================

class Scene_Battle
  #--------------------------------------------------------------------------
  # * Frame Update (actor command phase)
  #--------------------------------------------------------------------------
  def update_phase3
    # Allow for RTAB system
    if $r_detected
      if victory? and @command_a
      command_delete
      @command.push(@active_actor)
      return
      end
    end
    # If enemy arrow is enabled
    if @enemy_arrow != nil
      @countup = PARA_CTB::SELECT_WAIT ? false : true      
      update_phase3_enemy_select
    # If actor arrow is enabled
    elsif @actor_arrow != nil
      @countup = PARA_CTB::SELECT_WAIT ? false : true      
      update_phase3_actor_select
    # If skill window is enabled
    elsif @skill_window != nil
      @countup = PARA_CTB::SELECT_WAIT ? false : true      
      update_phase3_skill_select
    # If item window is enabled
    elsif @item_window != nil
      @countup = PARA_CTB::SELECT_WAIT ? false : true      
      update_phase3_item_select
    # If equip window is enabled
    elsif @right_window != nil
      @countup = PARA_CTB::SELECT_WAIT ? false : true      
       update_phase3_equip_select
    # If actor command window is enabled
    elsif @actor_command_window.active
      @countup = PARA_CTB::COMMAND_WAIT ? false : true      
      update_phase3_basic_command
    end
  end
end

Place this little bit of code below Eladia. It is a copy of the update_phase3 method from the ParaDog system, but now includes the countup commands for every window 'including' the Equipment Right' window which is the issue. It now turns on/off by the same SELECT WAIT option as Item and Skill windows.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }


Messages In This Thread
Script compatibility help - by Lord Vectra - 07-25-2021, 10:03 PM
RE: Script compatibility help - by DerVVulfman - 07-25-2021, 11:07 PM
RE: Script compatibility help - by Lord Vectra - 07-25-2021, 11:26 PM
RE: Script compatibility help - by DerVVulfman - 07-25-2021, 11:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Adding face script on Cogwheel's RTAB Battle Status rekkatsu 15 12,767 08-25-2020, 03:09 AM
Last Post: DerVVulfman
   "Wait" in the script Whisper 13 13,617 04-28-2020, 04:06 PM
Last Post: Whisper
   Skill Cooldown script Fenriswolf 11 14,007 12-10-2019, 11:10 AM
Last Post: Fenriswolf
   Help iwth script (RGSS Player crash) Whisper 3 6,494 06-17-2017, 05:03 PM
Last Post: Whisper
   Help modifying a script Keeroh 7 8,889 06-11-2017, 04:43 PM
Last Post: DerVVulfman
Question  Mog Menu script: help me stop the crazy picture movement during transitions Zachariad 4 8,567 05-31-2017, 05:10 AM
Last Post: Zachariad
   Actor names in Quest Script jreagan406 5 7,557 03-07-2017, 08:06 AM
Last Post: JayRay
   Bizarre issue with Lanzer counter script. Steel Beast 6Beets 2 6,582 10-04-2016, 11:46 AM
Last Post: Steel Beast 6Beets
   Moonpearl script Animated Battlers help!! x(( Starmage 11 13,765 05-21-2016, 05:34 AM
Last Post: Starmage
   Visual PaperDoll Equipment Script JayRay 0 3,891 02-16-2016, 03:44 AM
Last Post: JayRay



Users browsing this thread: