Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 That nasty SP bar
#16
Well, you have a problem with MP Shield Status Effect by Xelias... Line 66 reads:
Code:
if $game_system.MP_SHIELD_STATUS && MP_SHIELD_IDS.any? {|i| @states.include?(i)}
There is no $game_system.MP_SHIELD_STATUS method. And even if there was, no one capitalilzes a method. The script breaks when the effect is supposed to be placed on the combatants.

BUT......
Code:
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# DerVV's Enemy/Actor HP / SP Bars Fix for HoT/DoT v 1.0
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# By:  DerVVulfman (a fix for Shdwlink1993's script v 1.04)
# Written May 15, 2016
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#  Put below his script and the Bar Stats script and slip damage should work.
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


#==============================================================================
# ** Game_Battler
#------------------------------------------------------------------------------
#  This class deals with battlers. It's used as a superclass for the Game_Actor
#  and Game_Enemy classes.
#==============================================================================

class Game_Battler
  #--------------------------------------------------------------------------
  # * Alias Listings
  #--------------------------------------------------------------------------
  alias hotdot_hpsp_fix slip_damage_effect
  #--------------------------------------------------------------------------
  # * Application of Slip Damage Effects
  #--------------------------------------------------------------------------
  def slip_damage_effect
    old_sp = self.sp
    hotdot_hpsp_fix
    new_sp = self.sp
    return if old_sp == new_sp
    return unless $game_temp.in_battle
    @sp_used = old_sp - new_sp
    # And set magic casting flag to true
    @magic_casting = true    
  end
end
This plugin fixes sp slip damage for battle. Took all of 5 minutes. Winking
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
That nasty SP bar - by Melana - 05-03-2016, 11:35 AM
RE: That nasty SP bar - by DerVVulfman - 05-11-2016, 04:38 AM
RE: That nasty SP bar - by Melana - 05-11-2016, 11:17 AM
RE: That nasty SP bar - by DerVVulfman - 05-12-2016, 03:22 AM
RE: That nasty SP bar - by Melana - 05-12-2016, 03:33 AM
RE: That nasty SP bar - by DerVVulfman - 05-12-2016, 03:44 AM
RE: That nasty SP bar - by Melana - 05-12-2016, 03:52 AM
RE: That nasty SP bar - by DerVVulfman - 05-12-2016, 03:59 AM
RE: That nasty SP bar - by Melana - 05-12-2016, 04:06 AM
RE: That nasty SP bar - by DerVVulfman - 05-12-2016, 04:47 AM
RE: That nasty SP bar - by Melana - 05-12-2016, 01:07 PM
RE: That nasty SP bar - by DerVVulfman - 05-13-2016, 03:38 AM
RE: That nasty SP bar - by Melana - 05-13-2016, 03:17 PM
RE: That nasty SP bar - by DerVVulfman - 05-14-2016, 02:53 AM
RE: That nasty SP bar - by Melana - 05-14-2016, 03:47 AM
RE: That nasty SP bar - by DerVVulfman - 05-15-2016, 06:30 PM
RE: That nasty SP bar - by Melana - 05-21-2016, 03:06 AM



Users browsing this thread: