Jackcib 0 Posted June 12, 2020 supportmovement.mp4 So right now, I'm working on a sidescroller RPG game, and I'm trying to make it so you can have multiple followers while exploring the map. When trying to execute the jump command, the follower goes through blocks and floats. How do I fix this? A bit of useful information is that I used the jump event to make the main player jump (Surprising, I know!), and I've tried using some follower scripts but had no success using them. Please help. Thanks in advance. Share this post Link to post Share on other sites
roninator2 257 Posted June 13, 2020 Try this snippet from Galv class Game_Player < Game_Character def jump(x_plus, y_plus) super @followers.each { |f| f.jump(@x - f.x, @y - f.y) } end end Share this post Link to post Share on other sites