RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Stepping Animation Script

0 Members and 1 Guest are viewing this topic.

****
Rep:
Level 69
Does anyone know where I can find a script that specifies which actors stay in stepping animation(for Ace)? I made an event system for it but the lag is getting kind of annoying.
http://rmrk.net/index.php/topic,45862.msg520689.html#msg520689

*
*crack*
Rep:
Level 64
2012 Best Newbie2012 Most Unsung MemberFor frequently finding and reporting spam and spam bots
I'm not exactly sure on what you want, but if you want your followers not to do a stepping animation when you are.

Paste a new script with this

Code: [Select]
class Game_Follower < Game_Character
  #--------------------------------------------------------------------------
  # * Frame Update
  #--------------------------------------------------------------------------
  alias fllwr_no_stpping_anim update
  def update
    @move_speed     = $game_player.real_move_speed
    @transparent    = $game_player.transparent
    @walk_anime     = $game_player.walk_anime
    @step_anime     = nil
    @direction_fix  = $game_player.direction_fix
    @opacity        = $game_player.opacity
    @blend_type     = $game_player.blend_type
    super
  end
end

Although I don't think that is what you're asking, so please clarify :-\
All of my scripts are totally free to use for commercial use. You don't need to ask me for permission. I'm too lazy to update every single script post I ever made with this addendum. So ignore whatever "rule" I posted there. :)

All scripts can be found at: https://pastebin.com/u/diamondandplatinum3

****
Rep:
Level 69
Sorry, what I meant is that specific characters would stay in stepping animation when you walk around the map with them. I don't use followers, just one character on the map at a time.

For example: All the humans stand still if they aren't walking but when the bat is the character I'm walking around with, if I stand still, it will flap(stay in stepping animation).

« Last Edit: April 26, 2012, 04:34:57 PM by Scalinger2 »

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Best Member2012 Best RPG Maker User (Scripting)2012 Favorite Staff Member2012 Most Mature MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Veteran2011 Favourite Staff Member2011 Most Mature Member2011 Best RPG Maker User (Scripting)2011 Best Use of Avatar and Signature Space2010 Most Mature Member2010 Favourite Staff Member
I will write that. Give me a few minutes.

****
Rep:
Level 69

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Best Member2012 Best RPG Maker User (Scripting)2012 Favorite Staff Member2012 Most Mature MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Veteran2011 Favourite Staff Member2011 Most Mature Member2011 Best RPG Maker User (Scripting)2011 Best Use of Avatar and Signature Space2010 Most Mature Member2010 Favourite Staff Member
Stopped Actor Stepping Animation


Let me know if you have any problems with it.
« Last Edit: April 26, 2012, 07:05:49 PM by modern algebra »