- Joined
- Jun 11, 2014
- Messages
- 20
- Reaction score
- 35
- First Language
- Portuguese
- Primarily Uses
- RMVXA
Frame Stop (Bug Fix) by FelipeFalcon
Introduction
Certainly a lot of people must have noticed and not given much importance. (With small chars not make much difference, but it occurs)
This "little mistake" always occurs when you are walking, and collides with something. Not quite a mistake, but even stopped the char continues brightening until you reach the original frame (not busy).
With this script you can take it, I do not know if've probably somewhere or made sure to look but solve.
Sorry for my English. I am using a translator.
no-script:
script:
How to use:
Place above "Main".
Demo:
Not required.
Script:
Introduction
Certainly a lot of people must have noticed and not given much importance. (With small chars not make much difference, but it occurs)
This "little mistake" always occurs when you are walking, and collides with something. Not quite a mistake, but even stopped the char continues brightening until you reach the original frame (not busy).
With this script you can take it, I do not know if've probably somewhere or made sure to look but solve.
Sorry for my English. I am using a translator.
no-script:
How to use:
Place above "Main".
Demo:
Not required.
Script:
Code:
#______________________________________________________________________________#
#_ *Bug fix _ Frame Stop v1.3 _ by FelipeFalcon _______________________________#
#______________________________________________________________________________#
class Game_CharacterBase
alias update_stop_fix update_stop
def update_stop
update_stop_fix
if !passable?(@x, @y, @direction)
@pattern = @original_pattern if @step_anime == false and !moving? unless @move_route_forcing
end
end
end
Last edited by a moderator:


