• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Marin's Enhanced Staircases

Resource Marin's Enhanced Staircases v1.0

I'm having an issue where only certain places on the staircases function properly. However, if I'm in debug mode, I can hold control and the event works as intended. But the top section of a staircase is impassible otherwise. I've tested on numerous different sizes of stairs and it always acts the same way. The top 1 or 2 tiles of the staircase are impassible from the top, and sometimes from the bottom too.
 
same here
I am also having this issue with the Following Pokemon Script. It seems that installing the Enhanced Stair Plugin, causes Following Pokemon to follow at a much reduced speed, causing them to almost be left behind.

Is there a solution to this bug, or are the two scripts incompatible now?
 
1703119926370.png


Does anyone know why it gives this error?
 
I am also having this issue with the Following Pokemon Script. It seems that installing the Enhanced Stair Plugin, causes Following Pokemon to follow at a much reduced speed, causing them to almost be left behind.

Is there a solution to this bug, or are the two scripts incompatible now?
# Prevent Enhanced Stairs from messing with FollowingPokemon
#-------------------------------------------------------------------------------
class Game_FollowerFactory
alias __followingpkmn__update update unless method_defined?(:__followingpkmn__update)
def update(*args)
__followingpkmn__update(*args)
followers = $PokemonGlobal.followers
return if followers.length == 0
leader = $game_player
followers.each_with_index do |follower, i|
event = @events
next if !@events
event.move_speed = leader.move_speed if follower.following_pkmn?
leader = event
end
end
end



place this in plugon followers ec/ script additions/compatiblity works for v20.1
 
Back
Top