I've been looking at the default script Game_Follower to see if it was obvious where the speed of gathering was defined, because I want them to be gathered at a slightly slower speed than default. However, there isn't anything that a scripting idiot like me can home in on, as line #43 just refers to real_move_speed
I have a snippet from @Trihan which adjusts real_move_speed to reduce the speed of dash,
and I'm wondering if there might be something similar for gathering followers.
Any help would be appreciated.
Thanks.
I have a snippet from @Trihan which adjusts real_move_speed to reduce the speed of dash,
Code:
Game_CharacterBase.class_eval do
def real_move_speed
@move_speed + (dash? ? 0.8 : 0)
end
end
Any help would be appreciated.
Thanks.
