O TEMA DO FÓRUM ESTÁ EM MANUTENÇÃO. FEEDBACKS AQUI: ACESSAR

Erro no Script Battle Motion (MOG)

Iniciado por HammerStrike, 05/05/2017 às 14:22

05/05/2017 às 14:22 Última edição: 05/05/2017 às 15:55 por Revali
Estou com um problema no script do MOG de Battle Motion, toda vez  que o personagem (jogador) vai atacar ocorre o erro.

Eu utilizo juntamente com os scripts do MOG os Yanfly, Victor Engine e Galv's, se alguém puder dar uma dica de como resolver fico agradecido.

A linha 1510  do erro está em negrito destacada:
  #--------------------------------------------------------------------------
  # ● Set Bact Angle M
  #--------------------------------------------------------------------------     
  def set_bact_angle_m
      @battler_dir = [self.mirror,@battler.bact_sprite[0]] if @battler.bact_data[0] == 1 
      return if @battler.bact_data[6] and [2,4].include?(@battler.bact_sprite[5])
      if @battler.bact_data[7] >= 0 ; else
         self.angle = @battler.bact_data[0] == 2 ? 350 : 5
         self.mirror = true if @battler.is_a?(Game_Enemy) and MOG_BATTLER_MOTION::BATTLER_MIRROR_DIRECTION
         @battler.bact_sprite[0] = 4 unless [2,8].include?( @battler.bact_sprite[0])
      end
  end
Hammer Strike

05/05/2017 às 14:35 #1 Última edição: 05/05/2017 às 14:37 por Kyo Panda
Tente colocar antes da linha em negrito:

return if !@battler.bact_sprite || !@battler.bact_data



O Personagem agora atacou, mais na hora de voltar aconteceu outro erro na linha 1473.
#--------------------------------------------------------------------------
  # ● End Bact Move
  #--------------------------------------------------------------------------     
  def end_bact_move(np)   
      self.angle = 0 unless @battler.dead?
      @battler.screen_x = np[0] ; @battler.screen_y = np[1]
      if @battler.motion_damage[1] > 0
         @battler.motion_damage = [0,0] ; update_motion_damage               
      end 
      if @pre_set != nil
         @pre_set[0] = self.x ; @pre_set[1] = self.y
         end_action if @battler.bact_data[0] == 2
         self.angle = 0
      end   
      @move_wait_d = (@battler.bact_data[6] or @battler.bact_data[0] == 2) ? 10 : 1
      @battler.bact_sprite[3] = 0 if $imported[:mog_sprite_actor]
      if @battler.bact_data[0] == 1
         @battler.bact_action[0] = true
      elsif @battler.bact_data[0] == 2
         @battler.bact_action_clear
         self.mirror = @battler_dir[0]
         @battler.bact_sprite[0] = @battler_dir[1]
         @battler_dir = [false,4]
         @battler.bact_sprite_need_refresh = true if @battler.is_a?(Game_Actor)
      end         
  end
Hammer Strike

Troque a linha por:

@battler.bact_sprite[0] = @battler_dir[1] if @battler.bact_sprite

Agora o erro foi na linha 1475

@battler.bact_sprite_need_refresh = true if @battler.is_a?(Game_Actor)

O script em questão é esse:
Spoiler
#==============================================================================
# +++ MOG - Battler Motion (v3.6) +++
#==============================================================================
# By Moghunter
# https://atelierrgss.wordpress.com/
#==============================================================================
# Adiciona efeitos de animações nos sprites dos battlers.
# ● Animação inicial (entrada)de batalha.
# ● Animação de espera.
# ● Animação de ação.
# ● Animação de dano.
# ● Animação de colapso.
#==============================================================================

#==============================================================================
# ● Histórico (Version History)
#==============================================================================
# v3.6 - Melhoria na compatibilidade com MOG Battle Camera.
# v3.5 - Possibilidade de desabilitar o efeito "blinking"
#      - Melhoria no tempo de execução do efeito slice
# v3.4 - Adição da função SLICE.
#==============================================================================

$imported = {} if $imported.nil?
$imported[:mog_battler_motion] = true

#==============================================================================
# ● CONFIGURAÇÃO
#==============================================================================
# ■ Animação inicial de entrada ao começar a batalha.
#==============================================================================
# Coloque as seguintes Tags na caixa de notas dos inimigos ou personagens.
#
# <Motion Appear = X>
#
# X = 0
# Battler desliza horizontalmente.
#
# X = 1
# Battler desliza verticalmente.
#
# X = 2
# Battler rola (Cambalhota O_o) pela tela.
#
# X = 3
# Zoom IN
#
# X = 4
# Zoom Out
#
# X = 5
# Efeito de emergir do solo.
#
#==============================================================================
# ■ Animações dos battlers em modo espera.
#==============================================================================
# Coloque as seguintes Tags na caixa de notas dos inimigos ou personagens.
#
# <Motion Standby = X>
#
# X = 0
# Ativa o efeito do battler respirando.
#
# X = 1
# Ativa o efeito do battler levitando.
#
# X = 2
# Ativa o efeito do battler movimentando para os lados.
#
#==============================================================================
# ■ Animações dos battlers em modo de ação.
#==============================================================================
# Coloque as seguintes Tags na caixa de notas de itens ou habilidades.
#
# <Motion Action = X>
#
# X = 0
# Ativa o efeito de ação de zoom.
#
# X = 1
# Ativa o efeito de ação de pular.
#
# X = 2
# Ativa o efeito de girar para a esquerda.
#
# X = 3
# Ativa o efeito de girar para a direita.
#
# X = 4
# Ativa o efeito de tremer.
#
# X = 5
# Ativa o efeito de ação frontal.
#
# X = 6
# Ativa o efeito de dar um passo para esquerda.
#
# X = 7
# Ativa o efeito de de dar um passo para direita.
#
#==============================================================================
# ■ Animações dos battlers em Colapso.
#==============================================================================
# Coloque as seguintes Tags na caixa de notas dos inimigos ou personagens.
#
# <Motion Collapse = X>
#
# X = 0
# Ativa colapso na vertical.
#
# X = 1
# Ativa o colapso na horizontal.
#
# X = 2
# Ativa o colapso em Zoom OUT.
#
# X = 3
# Ativa o colapso em Zoom IN.
#
# X = 4
# Ativa o colapso em Zoom IN e Zoom OUT.
#
# X = 5
# Ativa o colapso em Modo Boss.
#
# X = 6
# Não ativa colapso.(Do nothing)
#
# X = 7
# Ativa o collapse em Slice.
#
#==============================================================================
# ■ Forçar o collapso Slice
#==============================================================================
# Coloque a Tag abaixo na caixa de notas da habilidade.
#
# <Slice>
#
#==============================================================================
# ■ Ativar animação de dano em condições maléficas.
#==============================================================================
# Coloque a seguinte Tag na caixa de notas de condições para ativar o efeito
# de dano.
#
# <Bad State>
#
#==============================================================================
# ■ Definir uma posição específica do battler inimigo
#==============================================================================
# Para definir uma posição do inimigo na tela use a Tag abaixo na caixa
# dos inimigos
#
# <Screen X Y = 150 - 400>
#
#==============================================================================
module MOG_BATTLER_MOTION

  #============================================================================
  #Ativar o efeito no aliados.
  #============================================================================
  ENABLE_ACTOR_MOTION = false
 
  #============================================================================
  #Ativar o efeito nos inimigos
  #============================================================================
  ENABLE_ENEMY_MOTION = true
 
  #============================================================================
  #Definição da velocidade do efeito de respirar.
  #============================================================================
  BREATH_EFFECT_SPEED = 1  #Default 1
 
  #============================================================================
  #Definição do limite de zoom do efeito de respirar.
  #============================================================================
  BREATH_EFFECT_RANGE = [0.92, 1.00] #Default [0.92, 1.00]
 
  #============================================================================
  # Ativar a função mirror dependendo do lado do oponente.
  #============================================================================
  BATTLER_MIRROR_DIRECTION = false
 
  #============================================================================
  # Ativar o efeito Blink ao receber dano.
  #============================================================================
  ENABLE_DAMAGE_BLINK_EFFECT = false
end

#==============================================================================
# ■ Game_Temp
#==============================================================================
class Game_Temp
 
  attr_accessor :battler_in_motion
  attr_accessor :bact_wait_d
  attr_accessor :bact_phase
 
  #--------------------------------------------------------------------------
  # ● Initialize
  #--------------------------------------------------------------------------       
  alias mog_battler_motion_initialize initialize
  def initialize
      @battler_in_motion = false ; @bact_wait_d = 0 ; @bact_phase = [0,0]
      mog_battler_motion_initialize
  end 
 
end

#==============================================================================
# ■ Game_Battler
#==============================================================================
class Game_Battler < Game_BattlerBase
 
   attr_accessor :motion_start
   attr_accessor :motion_stand
   attr_accessor :motion_action
   attr_accessor :motion_damage
   attr_accessor :motion_collapse
   attr_accessor :motion_slice
   attr_accessor :motion_move
   attr_accessor :motion_org_pos
   attr_accessor :motion_bms
   attr_accessor :bact_action
   attr_accessor :bact_skill
   attr_accessor :primary_target
   
  #--------------------------------------------------------------------------
  # ● Initialize
  #--------------------------------------------------------------------------       
   alias mog_motion_animation_initialize initialize
   def initialize
       mog_motion_animation_initialize
       @motion_start = -1
       @motion_stand = [-1,0]
       @motion_action = [-1,0]
       @motion_collapse = [99,0]
       @motion_damage = [0,0]
       @motion_move = [false,0,0]
       @motion_org_pos = [0,0]
       @motion_bms = [0,false]
       @motion_slice = [false,0,0]
       bact_action_clear
   end     

  #--------------------------------------------------------------------------
  # ● Bact Action Clear
  #--------------------------------------------------------------------------     
  def bact_action_clear
      @bact_action = [false,0,0] ; @bact_skill = nil
  end   

  #--------------------------------------------------------------------------
  # ● Added New State
  #-------------------------------------------------------------------------- 
  alias mog_motion_animation_add_new_state add_new_state
  def add_new_state(state_id)
      mog_motion_animation_add_new_state(state_id)
      self.motion_damage[0] = 1 if $data_states[state_id].note =~ /<Bad State>/
  end   

  #--------------------------------------------------------------------------
  # ● Move To
  #-------------------------------------------------------------------------- 
  def move_to(x,y)
      return if self.dead?
      @motion_move = [true,x,y]
  end
 
  #--------------------------------------------------------------------------
  # ● Set Original Position
  #-------------------------------------------------------------------------- 
  def set_org_pos
      scx = self.screen_x rescue 0
      scy = self.screen_y rescue 0   
      @motion_opos = [scx,scy]
  end
 
  #--------------------------------------------------------------------------
  # ● Return Org
  #-------------------------------------------------------------------------- 
  def return_org
      return if self.dead?
      @motion_move = [true,@motion_opos[0],@motion_opos[1]]   
  end
   
  #--------------------------------------------------------------------------
  # ● Item Apply
  #-------------------------------------------------------------------------- 
  alias mog_bactmotion_item_apply item_apply
  def item_apply(user, item)
      return if self.motion_slice[0]
      mog_bactmotion_item_apply(user, item)
      unless self.is_a?(Game_Actor)
         self.motion_collapse[0] = 7 if self.dead? and item.note =~ /<Slice>/
      end
  end
 
end

#==============================================================================
# ■ Game_Enemy
#==============================================================================
class Game_Enemy < Game_Battler
   
  #--------------------------------------------------------------------------
  # ● Initialize
  #--------------------------------------------------------------------------
  alias mog_motion_animation_enemy_initialize initialize
  def initialize(index, enemy_id)
      mog_motion_animation_enemy_initialize(index, enemy_id)
      setup_motion_animation(enemy_id)
  end
 
  #--------------------------------------------------------------------------
  # ● Setup Motion Animation
  #-------------------------------------------------------------------------- 
  def setup_motion_animation(enemy_id)
      self.motion_stand[0] = $1.to_i if  enemy.note =~ /<Motion Standby = (\d+)>/i
      self.motion_collapse[0] = $1.to_i if  enemy.note =~ /<Motion Collapse = (\d+)>/i
      self.motion_start =  $1.to_i if  enemy.note =~ /<Motion Appear = (\d+)>/i
  end
end

#==============================================================================
# ■ Game Actor
#==============================================================================
class Game_Actor < Game_Battler

  #--------------------------------------------------------------------------
  # ● Setup
  #--------------------------------------------------------------------------
  alias mog_motion_animation_actor_setup setup
  def setup(actor_id)
      mog_motion_animation_actor_setup(actor_id)
      self.motion_stand[0] = $1.to_i if  actor.note =~ /<Motion Standby = (\d+)>/i
      self.motion_collapse[0] = $1.to_i if  actor.note =~ /<Motion Collapse = (\d+)>/i       
      self.motion_start =  $1.to_i if  actor.note =~ /<Motion Appear = (\d+)>/i 
  end

end

#==============================================================================
# ■ Game_Battler
#==============================================================================
class Game_Battler < Game_BattlerBase
 
  #--------------------------------------------------------------------------
  # ● Execute Damage
  #-------------------------------------------------------------------------- 
  alias mog_battler_motion_execute_damage execute_damage
  def execute_damage(user)
      mog_battler_motion_execute_damage(user)
      self.motion_damage[0] = 1 if @result.hp_damage > 0
  end
 
end

#==============================================================================
# ■ Spriteset Battle
#==============================================================================
class Spriteset_Battle
 
  #--------------------------------------------------------------------------
  # * Update
  #--------------------------------------------------------------------------
  alias mog_battler_motion_update update
  def update
      $game_temp.battler_in_motion = false
      mog_battler_motion_update
  end
 
  #--------------------------------------------------------------------------
  # * Animation?
  #--------------------------------------------------------------------------
  alias mog_battler_motion_animation? animation?
  def animation?
      return true if $game_temp.battler_in_motion
      mog_battler_motion_animation?
  end
  #--------------------------------------------------------------------------
  # * Effect?
  #--------------------------------------------------------------------------
  alias mog_battler_motion_effect? effect?
  def effect?
      return true if $game_temp.battler_in_motion
      mog_battler_motion_effect?
  end
 
end


#==============================================================================
#==============================================================================
# ● INITIAL ●
#==============================================================================
#==============================================================================

#==============================================================================
# ■ Sprite Battler
#==============================================================================
class Sprite_Battler < Sprite_Base

  #--------------------------------------------------------------------------
  # ● Update Bitmap
  #--------------------------------------------------------------------------   
  alias mog_bactmotion_update_bitmap update_bitmap
  def update_bitmap
      return if @battler.motion_slice[0]
      mog_bactmotion_update_bitmap
  end   
     
  #--------------------------------------------------------------------------
  # ● Can Update Motion?
  #--------------------------------------------------------------------------   
  def can_update_motion?
      return true
  end   
 
  #--------------------------------------------------------------------------
  # ● Update Position
  #-------------------------------------------------------------------------- 
  alias mog_motion_animation_update_position update_position
  def update_position
      active_battler_motion     
      if @battler_motion_active
         update_motion_animation
         self.z = @battler.screen_z rescue nil
         self.z += 20 if @battler.bact_data[1] != nil and !@battler.bact_data[6]
         return
      end     
      mog_motion_animation_update_position
      self.z += 20 if @battler.bact_data[1] != nil and !@battler.bact_data[6]
  end 
 
  #--------------------------------------------------------------------------
  # ● Active Battler Motion
  #--------------------------------------------------------------------------   
  def active_battler_motion
      return if @motion_initial_base != nil or bitmap == nil
      return if @battler == nil
      return if !@battler.exist?
      @motion_initial_base = true
      @battler_motion_active = true if can_update_battler_motion?
  end 
 
  #--------------------------------------------------------------------------
  # ● Can Update Battler Motion
  #--------------------------------------------------------------------------     
  def can_update_battler_motion?
      return false if @battler.is_a?(Game_Actor)
      return false if @battler == nil
      return false if @battler.dead?
      return false if !@battler.use_sprite?
      return false if @battler.screen_x == nil
      return false if @battler.is_a?(Game_Actor) and !MOG_BATTLER_MOTION::ENABLE_ACTOR_MOTION
      return false if @battler.is_a?(Game_Enemy) and !MOG_BATTLER_MOTION::ENABLE_ENEMY_MOTION
      return false if $imported[:mog_sprite_actor] and @battler.is_a?(Game_Actor)
      return true
  end
   
  #--------------------------------------------------------------------------
  # ● Update Motion Animation
  #--------------------------------------------------------------------------   
  def update_motion_animation
      setup_initial_motion
      execute_start_animation
      return if @wait_motion_start
      if can_execute_collapse?
         execute_motion_collapse
      else
         if can_update_motion?
            execute_motion_move_to if can_update_move_to?
            execute_motion_damage
            execute_motion_idle if can_update_idle?
            execute_motion_action if can_update_action?
         end
      end
  end
 
  #--------------------------------------------------------------------------
  # ● Setup Initial Motion
  #--------------------------------------------------------------------------     
  def setup_initial_motion
      return if @motion_initial != nil
      @motion_initial = true
      @collapse_done = false
      @motion_speed = 0
      @start_speed = [0,0]     
      @battler.motion_collapse[1] = 0
      self.x = @battler.screen_x rescue 0
      self.y = @battler.screen_y rescue 0
      self.z = @battler.screen_z rescue 100
      @battler.motion_bms = [0,false]
      @battler.set_org_pos     
      setup_motion_stand
      @original_set = [self.x, self.y, self.zoom_x,self.zoom_y,self.mirror,self.angle,255]
      setup_motion_start
      setup_motion_damage           
      setup_motion_action
  end 

  #--------------------------------------------------------------------------
  # ● Return Set
  #--------------------------------------------------------------------------         
  def return_set(value)
      self.x = value[0]
      self.y = value[1]
      self.zoom_x = value[2]
      self.zoom_y = value[3]
      self.mirror = value[4]
      self.angle = value[5]
      self.opacity = value[6]     
  end 

  #--------------------------------------------------------------------------
  # ● setup_motion_start
  #--------------------------------------------------------------------------           
  def setup_motion_start
      @wait_motion_start = true
      @scr_rect_speed = 1     
      case @battler.motion_start
         when 0 
            self.x = 0 - (self.bitmap.width + rand(100))
         when 1
            self.y = 0 - (self.bitmap.height + rand(100))
         when 2   
            self.angle = 360
            self.x = 0 - self.bitmap.width
         when 3   
            self.zoom_x = 1.5 + (rand(10) / 100.0)
            self.zoom_y = self.zoom_x
            self.opacity = 0
         when 4
            self.zoom_x = 0.2 + (rand(10) / 100.0)
            self.zoom_y = self.zoom_x
            self.opacity = 0
         when 5   
            self.src_rect.y = -self.bitmap.height
            @scr_rect_speed = self.bitmap.height / 40
            @scr_rect_speed = 1 if @scr_rect_speed <= 0
         else   
           @wait_motion_start = false
      end   
  end 
 
  #--------------------------------------------------------------------------
  # ● Execute Start Animation
  #--------------------------------------------------------------------------         
  def execute_start_animation
      return if !@wait_motion_start
      $game_temp.battler_in_motion = true
      s_x = 1 + ((self.x - @original_set[0]).abs / (20 + @start_speed[0]))
      s_y = 1 + ((self.y - @original_set[1]).abs / (20 + @start_speed[1]))     
      if self.x < @original_set[0]
         self.x += s_x
         self.x = @original_set[0] if self.x >= @original_set[0]
      elsif self.x > @original_set[0]
         self.x -= s_x
         self.x = @original_set[0] if self.x <= @original_set[0]
      end
      if self.y < @original_set[1]
         self.y += s_y
         self.y = @original_set[1] if self.y > @original_set[1]
      elsif self.y > @original_set[1]
         self.y -= s_y
         self.y = @original_set[1] if self.y < @original_set[1]
      end
      if self.zoom_x != @original_set[2]
         if self.zoom_x > @original_set[2]
            self.zoom_x -= 0.01
            self.zoom_x = @original_set[2] if self.zoom_x < @original_set[2]
         elsif self.zoom_x < @original_set[2]
            self.zoom_x += 0.01
            self.zoom_x = @original_set[2] if self.zoom_x > @original_set[2]
         end         
      end 
      if self.zoom_y != @original_set[3]
         if self.zoom_y > @original_set[3]
            self.zoom_y -= 0.01
            self.zoom_y = @original_set[3] if self.zoom_y < @original_set[3]
         elsif self.zoom_y < @original_set[3]
            self.zoom_y += 0.01
            self.zoom_y = @original_set[3] if self.zoom_y > @original_set[3]
         end         
      end       
      self.opacity += 10
      if self.angle > 0
         self.angle -= 5
         self.angle = @original_set[5] if self.angle < @original_set[5]
      end
      if self.src_rect.y != 0
         self.src_rect.y += @scr_rect_speed
         self.src_rect.y = 0 if self.src_rect.y > 0
      end
      if sprite_original_set? 
         @wait_motion_start = false
         @battler.motion_bms[1] = true
         self.src_rect.y = 0
      end   
  end 
 
  #--------------------------------------------------------------------------
  # ● Sprite original Set?
  #--------------------------------------------------------------------------         
  def sprite_original_set?
      return false if self.x != @original_set[0]
      return false if self.y != @original_set[1]   
      return false if self.zoom_x != @original_set[2]
      return false if self.zoom_y != @original_set[3]       
      return false if self.mirror != @original_set[4]
      return false if self.angle != @original_set[5]
      return false if self.opacity != @original_set[6]     
      return false if self.src_rect.y != 0     
      return true
  end 
   
end

#==============================================================================
#==============================================================================
# ● MOVE TO ●
#==============================================================================
#==============================================================================

#==============================================================================
# ■ Sprite Battler
#==============================================================================
class Sprite_Battler < Sprite_Base
 
  #--------------------------------------------------------------------------
  # ● Can Update Move_to
  #--------------------------------------------------------------------------   
  def can_update_move_to?
      return false if !@battler.motion_move[0]
      return true
  end 
 
  #--------------------------------------------------------------------------
  # ● Execute Motion Move_to
  #--------------------------------------------------------------------------       
  def execute_motion_move_to     
      $game_temp.battler_in_motion = true
      execute_motion_mv(0,self.x,@battler.motion_move[1])
      execute_motion_mv(1,self.y,@battler.motion_move[2])
      mv_clear
  end
   
  #--------------------------------------------------------------------------
  # ● MV Clear
  #--------------------------------------------------------------------------     
  def mv_clear
      return if self.x != @battler.motion_move[1]
      return if self.y != @battler.motion_move[2]
      @battler.motion_move[0] = false
  end
     
  #--------------------------------------------------------------------------
  # ● Execute Motion Mv
  #--------------------------------------------------------------------------     
  def execute_motion_mv(type,cp,np)
      sp = 2 + ((cp - np).abs / 20)
      if cp > np
         cp -= sp
         cp = np if cp < np
      elsif cp < np
         cp += sp
         cp = np if cp > np
      end     
      self.x = cp if type == 0
      self.y = cp if type == 1
  end   
 
end

#==============================================================================
#==============================================================================
# ● DAMAGE ●
#==============================================================================
#==============================================================================

#==============================================================================
# ■ Sprite Battler
#==============================================================================
class Sprite_Battler < Sprite_Base

  #--------------------------------------------------------------------------
  # ● Can Update Damage
  #--------------------------------------------------------------------------   
  def can_update_damage?
      return false if @battler.motion_damage[1] == 0
      return false if @battler.motion_move[0]
      return false if $imported[:mog_battle_camera] and $game_temp.bc_wait_cp[0] > 0
      return true
  end   
 
  #--------------------------------------------------------------------------
  # ● Setup Initial Motion
  #--------------------------------------------------------------------------       
  def execute_motion_damage
      damage_refresh
      update_motion_damage if can_update_damage?
  end

  #--------------------------------------------------------------------------
  # ● Setup Motion Damage
  #--------------------------------------------------------------------------       
  def setup_motion_damage     
      @battler.motion_damage = [0,0]
      @damage_pre_set = [self.x, self.y, self.zoom_x,self.zoom_y,self.mirror,self.angle,self.opacity]
  end 
 
  #--------------------------------------------------------------------------
  # ● Damage Refresh
  #--------------------------------------------------------------------------         
  def damage_refresh
      return if @battler.motion_damage[0] == 0
      if @battler.motion_damage[1] == 0
         @damage_pre_set = [self.x, self.y, self.zoom_x,self.zoom_y,self.mirror,self.angle,self.opacity]
      end
      @battler.motion_damage[0] = 0
      @battler.motion_damage[1] = 45
  end
 
  #--------------------------------------------------------------------------
  # ● Update Motion Damage
  #--------------------------------------------------------------------------           
  def update_motion_damage
      return if @damage_pre_set.nil?
      self.x = @damage_pre_set[0] + rand(@battler.motion_damage[1])
      @battler.motion_damage[1] -= 1
      if @battler.motion_damage[1] == 0
         if $imported[:mog_battle_hud_ex] != nil and @battler.is_a?(Game_Actor)
            return_set(@original_set)
         else 
            return_set(@damage_pre_set)
         end   
      end 
  end
   
end

#==============================================================================
#==============================================================================
# ● IDLE ●
#==============================================================================
#==============================================================================


#==============================================================================
# ■ Sprite Battler
#==============================================================================
class Sprite_Battler < Sprite_Base
 
  #--------------------------------------------------------------------------
  # ● Can Update idle
  #--------------------------------------------------------------------------   
  def can_update_idle?
      return false if @old_motion_action != -1
      return false if @battler.motion_damage[1] > 0
      return false if @battler.motion_move[0]
      return false if $imported[:mog_battle_camera] and $game_temp.bc_wait_cp[0] > 0
      return true
  end     

  #--------------------------------------------------------------------------
  # ● Setup Motion Stand
  #--------------------------------------------------------------------------       
  def setup_motion_stand
      @breath_range = [MOG_BATTLER_MOTION::BREATH_EFFECT_RANGE[0],
                       MOG_BATTLER_MOTION::BREATH_EFFECT_RANGE[1],0,
                       MOG_BATTLER_MOTION::BREATH_EFFECT_SPEED]
      @float_range = [@battler.screen_y - 10, @battler.screen_y + 10]
      @side_range = [@battler.screen_x - 10, @battler.screen_x + 10]
      @battler.motion_stand[1] = 0
      case @battler.motion_stand[0]
         when 0
             self.zoom_y = @breath_range[0] + (rand(10) / 100.0)
             @battler.motion_stand[1] = rand(2)
         when 1
             self.y += 10 - rand(20)
             @battler.motion_stand[1] = rand(2)
         when 2
             self.x += 10 - rand(20)
             @battler.motion_stand[1] = rand(2)             
      end
  end
   
  #--------------------------------------------------------------------------
  # ● Execute Motion Animation
  #--------------------------------------------------------------------------       
  def execute_motion_idle
      case @battler.motion_stand[0]
         when 0
             update_motion_breath
         when 1 
             update_motion_float
         when 2
             update_motion_side
      end       
  end 
 
  #--------------------------------------------------------------------------
  # ● Update Motion Breath
  #--------------------------------------------------------------------------         
  def update_motion_breath 
      @breath_range[2] += 1
      return if @breath_range[2] < @breath_range[3]
      @breath_range[2] = 0
      case @battler.motion_stand[1]
         when 0
           self.zoom_y -= 0.002
           if self.zoom_y <= @breath_range[0]
              @battler.motion_stand[1] = 1
              self.zoom_y = @breath_range[0]
           end   
         when 1 
           self.zoom_y += 0.002
           if self.zoom_y >= @breath_range[1]
              @battler.motion_stand[1] = 0
              self.zoom_y = @breath_range[1]
           end   
      end
  end 
 
  #--------------------------------------------------------------------------
  # ● Update Motion Float
  #--------------------------------------------------------------------------         
  def update_motion_float
      @motion_speed += 1
      return if @motion_speed < 5
      @motion_speed = 0
      case @battler.motion_stand[1]
           when 0
                self.y -= 1
                @battler.motion_bms[0] -= 1
                if self.y < @float_range[0]
                   self.y = @float_range[0]
                   @battler.motion_bms[0] += 1
                   @battler.motion_stand[1] = 1
                end   
           when 1 
                self.y += 1
                @battler.motion_bms[0] += 1
                if self.y > @float_range[1]
                   self.y = @float_range[1]
                   @battler.motion_bms[0] -= 1
                   @battler.motion_stand[1] = 0
                end                 
      end
  end   
 
  #--------------------------------------------------------------------------
  # ● Update Motion Side
  #--------------------------------------------------------------------------         
  def update_motion_side
      @motion_speed += 1
      return if @motion_speed < 5
      @motion_speed = 0
      case @battler.motion_stand[1]
           when 0
                self.x -= 1
                if self.x < @side_range[0]
                   self.x = @side_range[0]
                   @battler.motion_stand[1] = 1
                end   
           when 1 
                self.x += 1
                if self.x > @side_range[1]
                   self.x = @side_range[1]
                   @battler.motion_stand[1] = 0
                end                 
      end
  end     
 
end

#==============================================================================
#==============================================================================
# ● ACTION ●
#==============================================================================
#==============================================================================

#==============================================================================
# ■ Game Action
#==============================================================================
class Game_Action
 
  #--------------------------------------------------------------------------
  # ● Prepare
  #--------------------------------------------------------------------------                 
  alias mog_motion_action_prepare prepare
  def prepare
      mog_motion_action_prepare   
      set_motion_action
  end
   
  #--------------------------------------------------------------------------
  # ● Set Motion Action
  #--------------------------------------------------------------------------                   
  def set_motion_action
      return if @item.object == nil or subject == nil
      subject.motion_action[0] = $1.to_i if @item.object.note =~ /<Motion Action = (\d+)>/i
  end
 
end

#==============================================================================
# ■ Sprite Battler
#==============================================================================
class Sprite_Battler < Sprite_Base
 
  #--------------------------------------------------------------------------
  # ● Can Update Action
  #--------------------------------------------------------------------------   
  def can_update_action?
      return false if @battler.motion_damage[1] > 0
      return false if @battler.motion_move[0]
      return false if $imported[:mog_battle_camera] and $game_temp.bc_wait_cp[0] > 0
      return true
  end       
 
  #--------------------------------------------------------------------------
  # ● Setup Motion Action
  #--------------------------------------------------------------------------       
  def setup_motion_action
      @battler.motion_action = [-1,0]
      @old_motion_action = @battler.motion_action[0]
      @pre_set = [self.x, self.y, self.zoom_x,self.zoom_y,self.mirror,self.angle,self.opacity]
  end

  #--------------------------------------------------------------------------
  # ● Refresh Action
  #--------------------------------------------------------------------------         
  def refresh_action
      return if @old_motion_action == @battler.motion_action[0]
      if @old_motion_action == -1
         @pre_set = [self.x, self.y, self.zoom_x,self.zoom_y,self.mirror,self.angle,self.opacity]
      end
      @battler.motion_action[1] = 0 
      return_set(@pre_set)
      @old_motion_action = @battler.motion_action[0]
      self.src_rect.y =  0
  end 
 
  #--------------------------------------------------------------------------
  # ● Execute Motion Action
  #--------------------------------------------------------------------------           
  def execute_motion_action
      refresh_action
      update_motion_action
  end 
 
  #--------------------------------------------------------------------------
  # ● Update Motion Action
  #--------------------------------------------------------------------------             
  def update_motion_action
      return if @battler.motion_action[0] == -1
      $game_temp.battler_in_motion = true
      @battler.motion_action[1] += 1
      case @battler.motion_action[0]
           when -2
              end_action
           when 0
              update_motion_zoom
           when 1
              update_motion_jump
           when 2 
              update_motion_round_right
           when 3
              update_motion_round_left
           when 4
              update_motion_shake
           when 5
              update_motion_front
           when 6   
              update_motion_step_left
           when 7
              update_motion_step_right             
      end
  end
 
  #--------------------------------------------------------------------------
  # ● Update Motion Step Left
  #--------------------------------------------------------------------------                 
  def update_motion_step_left
      case @battler.motion_action[1]
           when 1..20
                self.x -= 2
           when 21..40 
                self.x += 2           
           else
           end_action
      end   
   
  end 
 
  #--------------------------------------------------------------------------
  # ● Update Motion Step Right
  #--------------------------------------------------------------------------                 
  def update_motion_step_right
      case @battler.motion_action[1]
           when 1..20
                self.x += 2
           when 21..40 
                self.x -= 2           
           else
        end_action   
      end   
  end   
 
  #--------------------------------------------------------------------------
  # ● Update Motion Shake
  #--------------------------------------------------------------------------               
  def update_motion_shake     
      self.x = @pre_set[0] + rand(@battler.motion_action[1]) if can_update_motion_shake?
      end_action if @battler.motion_action[1] > 40
  end   
 
  #--------------------------------------------------------------------------
  # ● Can Update Motion Shake?
  #--------------------------------------------------------------------------                 
  def can_update_motion_shake?
      if $imported[:mog_battle_hud_ex] !=nil
         return false if @battler.is_a?(Game_Actor)
      end
      return true 
  end 
 
  #--------------------------------------------------------------------------
  # ● Update Motion Zoom
  #--------------------------------------------------------------------------               
  def update_motion_zoom
      case @battler.motion_action[1]
        when 1..20
           self.zoom_x += 0.01
           self.zoom_y += 0.01
        when 21..40
           self.zoom_x -= 0.01
           self.zoom_y -= 0.01         
        else 
        end_action   
      end
  end
 
  #--------------------------------------------------------------------------
  # ● Update Motion Jump
  #--------------------------------------------------------------------------                 
  def update_motion_jump
      case @battler.motion_action[1]
        when 1..20
            self.y -= 9
            self.zoom_x += 0.01
            self.zoom_y += 0.01
            self.mirror = true
            self.angle += 9
        when 21..40
            self.y += 9
            self.zoom_x -= 0.01
            self.zoom_y -= 0.01           
            self.mirror = false
            self.angle += 9
        else 
        self.angle = 0
        end_action   
      end       
  end
 
  #--------------------------------------------------------------------------
  # ● Update Motion Front
  #--------------------------------------------------------------------------                 
  def update_motion_front
      case @battler.motion_action[1]
        when 1..20
            self.y += 3
            self.zoom_x += 0.02
            self.zoom_y += 0.02
        when 21..40
            self.y -= 3
            self.zoom_x -= 0.02
            self.zoom_y -= 0.02           
        else 
        end_action   
      end       
  end
 
  #--------------------------------------------------------------------------
  # ● Update Motion Round Left
  #--------------------------------------------------------------------------                   
  def update_motion_round_left
      case @battler.motion_action[1]
        when 1..15
            self.y += 3
            self.x -= 3
            self.mirror = false
        when 16..30
            self.x += 6
            self.mirror = true
        when 31..45
            self.y -= 3
            self.x -= 3
            self.mirror = false
        else 
        end_action 
      end       
  end
 
  #--------------------------------------------------------------------------
  # ● Update Motion Round Right
  #--------------------------------------------------------------------------                   
  def update_motion_round_right
      case @battler.motion_action[1]
        when 1..15
            self.y += 3
            self.x += 3
            self.mirror = true
        when 16..30
            self.x -= 6
             self.mirror = false
        when 31..45
            self.y -= 3
            self.x += 3
            self.mirror = true
        else 
        end_action   
      end   
  end 
 
  #--------------------------------------------------------------------------
  # ● End Action
  #--------------------------------------------------------------------------                     
  def end_action
      if $imported[:mog_battle_hud_ex] != nil and @battler.is_a?(Game_Actor)
         return_set(@original_set)
      else 
         return_set(@pre_set) 
      end
      @battler.motion_action = [-1,0]
  end 
 
end

#==============================================================================
#==============================================================================
# ● COLLAPSE ●
#==============================================================================
#==============================================================================

#==============================================================================
# ■ Sprite Battler
#==============================================================================
class Sprite_Battler < Sprite_Base

  #--------------------------------------------------------------------------
  # ● Dispose
  #--------------------------------------------------------------------------   
  alias mog_bact_motion_dispose dispose
  def dispose   
      @pre_image.dispose rescue nil if !@pre_image.nil?
      mog_bact_motion_dispose
  end   
 
  #--------------------------------------------------------------------------
  # ● Can Update Action
  #--------------------------------------------------------------------------   
  def can_update_collapse?
      return true
  end       
 
  #--------------------------------------------------------------------------
  # ● Update Blink
  #--------------------------------------------------------------------------     
  alias mog_motion_animation_update_blink update_blink
  def update_blink
      return if @battler.dead? or !MOG_BATTLER_MOTION::ENABLE_DAMAGE_BLINK_EFFECT
      mog_motion_animation_update_blink
  end
 
  #--------------------------------------------------------------------------
  # ● Update Collapse
  #--------------------------------------------------------------------------
  def update_collapse
  end
 
  #--------------------------------------------------------------------------
  # ● Execute Motion Collapse
  #--------------------------------------------------------------------------   
  def execute_motion_collapse
      collapse_end if self.opacity == 0
      @battler.motion_collapse[1] += 1     
      case @battler.motion_collapse[0]
           when 0;     update_collapse_vertical
           when 1;     update_collapse_horizontal
           when 2;     update_collapse_zoom_out
           when 3;     update_collapse_zoom_in
           when 4;     update_collapse_zoom_in_out
           when 5;     update_collapse_boss_2
           when 6;     update_collpase_do_nothing
           when 7;     update_collpase_slice
           else ;      update_collapse_normal
      en
[close]
Hammer Strike

Eu precisaria saber qual a mensagem de erro dada. E o script em spoiler não está completo. :sera:

A imagem do erro atual


Outro erro que está acontecendo (depois que mudei a linha de codigo) é que o personagem não anda até o inimigo para bater, ele aparece direto ao lado do monstro. Vou deixar aqui um link com os 3 scripts relacionados, BattleMotion, Battle Camera e Yanfly Visual Battle que é o script de batalha que uso.
Spoiler
Hammer Strike

Eu tentei acertar os pontos nos scripts, mas não há jeito:  eles sobrescrevem as mesmas funções para realizar coisas diferentes. O jeito é se ater a um autor e ver o que ele tem de scripts de batalha, já que é comum programar de forma que não haja conflitos entre seus próprios códigos.