• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

v20.1 Follower Run Sprites 2023-01-16

This resource pertains to version 20.1 of Pokémon Essentials.
Pokémon Essentials Version
v20.1 ➖
Name the run sprite the regular name + "_run".
So Follower trainer_POKEMONTRAINER_Leaf has a run sprite of trainer_POKEMONTRAINER_Leaf_run

Ruby:
class Game_Follower
  alias _runfollowers_initialize initialize
  def initialize(event_data)
    _runfollowers_initialize(event_data)
    @default_character_name = event_data.character_name
  end
 
  def update_move
    was_jumping = jumping?
    if !@moved_last_frame || @stopped_last_frame
      faster = $game_player.can_run?
      if faster && pbResolveBitmap("Graphics/Characters/" + @default_character_name + "_run" )
        self.character_name = sprintf("%s_run", @default_character_name)
      else
        self.character_name = @default_character_name
      end
    end
    super
    if was_jumping && !jumping?
      spriteset = $scene.spriteset(map_id)
      spriteset&.addUserAnimation(Settings::DUST_ANIMATION_ID, self.x, self.y, true, 1)
    end
  end
 
  def update_stop
    if @stopped_last_frame
      self.character_name = @default_character_name
    end
    super
  end
end
Credits
Vendily
Author
Vendily
Views
2,103
First release
Last update
Rating
5.00 star(s) 1 ratings

More resources from Vendily

Back
Top