Modern Algebra Hover Alerts - Sprite Disposal

ZirconStorms

Veteran
Veteran
Joined
Dec 22, 2014
Messages
359
Reaction score
111
First Language
English
Primarily Uses
RMVXA
Hover Alerts script page: http://rmrk.net/index.php?topic=46911.0
Original script:
Once you exit the alert's proximity range (ex: 4 tiles), the alert sprite gets immediately disposed of/hidden.
I'm having a hard time figuring out what part of the script tackles this; trying to modify Sprite_Character inside of the script, maha_finish_effect, and so on hasn't proven to be successful. The goal would be to add a better transition (some sort of fade or flash effect) at the end, rather than having the alert immediately dissapearing.
 

Roninator2

Gamer
Veteran
Joined
May 22, 2016
Messages
2,661
Reaction score
563
First Language
English
Primarily Uses
RMVXA
Under line 650 are the settings for the effects.
If you want it to fade, you just need to specify : fade in the \ Hover_alert comment for effect =
You could also change the values if you feel that 48 frames is too short to fade.
 

ZirconStorms

Veteran
Veteran
Joined
Dec 22, 2014
Messages
359
Reaction score
111
First Language
English
Primarily Uses
RMVXA
Under line 650 are the settings for the effects.
If you want it to fade, you just need to specify : fade in the \ Hover_alert comment for effect =
You could also change the values if you feel that 48 frames is too short to fade.
I'm not talking about the fade in effect that can be specified in the event comment. Once you're out of the hover alert's range, it immediately dissapears. I'd like to find what section of code I need to edit to add a fade out effect before the hover alert vanishes.
 

KK20

Just some XP Scripter
Veteran
Joined
Oct 11, 2018
Messages
281
Reaction score
106
First Language
English
Primarily Uses
RMXP
Looks like line 493, where the visibility is set based on your character's proximity. You'd probably then make an else-case for the next condition directly below it for when it is not visible, then put your "special effect" code there, making sure you only run it once.
 

Roninator2

Gamer
Veteran
Joined
May 22, 2016
Messages
2,661
Reaction score
563
First Language
English
Primarily Uses
RMVXA
Ya, I figured that out after realizing what the problem was when testing.
Haven't been able to get it working yet. Time for bed.
I have this so far.
Code:
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  # * Fade HoverAlert Effect
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  def maha_fade_effect
    if @hover_alert.proximity > 0
      x = @character.distance_x_from($game_player.x).abs
      y = @character.distance_y_from($game_player.y).abs
    end
    if Math.hypot(x, y) <= @hover_alert.proximity
    else
      while @effect_time > 0
        self.opacity = 12*@effect_time if @effect_time < 16
        @effect_time -= 1
      end
      maha_finish_effect
    end
  end
and on line 684 I changed it to else maha_fade_effect # Close

But this still doesn't work.
 

ZirconStorms

Veteran
Veteran
Joined
Dec 22, 2014
Messages
359
Reaction score
111
First Language
English
Primarily Uses
RMVXA
Looks like line 493, where the visibility is set based on your character's proximity. You'd probably then make an else-case for the next condition directly below it for when it is not visible, then put your "special effect" code there, making sure you only run it once.
Seems to work smoothly, thank you.

Ya, I figured that out after realizing what the problem was when testing.
Haven't been able to get it working yet. Time for bed.
I have this so far.
Code:
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  # * Fade HoverAlert Effect
  #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  def maha_fade_effect
    if @hover_alert.proximity > 0
      x = @character.distance_x_from($game_player.x).abs
      y = @character.distance_y_from($game_player.y).abs
    end
    if Math.hypot(x, y) <= @hover_alert.proximity
    else
      while @effect_time > 0
        self.opacity = 12*@effect_time if @effect_time < 16
        @effect_time -= 1
      end
      maha_finish_effect
    end
  end
and on line 684 I changed it to else maha_fade_effect # Close

But this still doesn't work.
I got it to work thanks to KK20's reply, but I appreciate you trying to help.
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Are we allowed to post about non-RPG Maker games?
I should realize that error was produced by a outdated version of MZ so that's why it pop up like that
Ami
i can't wait to drink some ice after struggling with my illness in 9 days. 9 days is really bad for me,i can't focus with my shop and even can't do something with my project
How many hours have you got in mz so far?

A bit of a "sparkle" update to the lower portion of the world map. :LZSexcite:

Forum statistics

Threads
105,884
Messages
1,017,238
Members
137,608
Latest member
Arm9
Top