Howdy. My programming skills are rather poor so I decided to do the smart thing and ask more knowledgeable people for help.
My goal is to add a grappling hook to my game (using RPG Maker XP, btw), thus allowing the player to climb otherwise unclimbable cliffs (My nostalgia of Rygar on the NES must be kicking in). My problem, however, is figuring out how to have a (hopefully) single sprite repeat upwards until the hook itself stops moving. The second part would be, naturally, to have the rope sprites remove (or at least hide) themselves as the player passes over their area on the grid.
What I have so far is an event at the base below a rock sprite atop the cliff, acting as a tell-tale sign of a grapple location (and something to latch onto). Here's the code for the event in question. I included it in case someone can suggest a better programming method.
<>Conditional Branch: [Grappling Hook] posessed
<>Common Event: Grappling Animation
<>Proceed with Movement
<>Move Event: This Event
<>Graphic: 'Grappling - Adam'. 0,4,0
<>Phasing Mode ON
<>Move Up
<>Move Up
<>Move Up
<>Proceed with Movement
<>Move Event: Player
<>Wait: 5 frames
<>Phasing Mode ON
<>Move Up
<>Move Up
<>Move Up
<>Move Up
<>Move Up
<>Phasing Mode OFF
<>Proceed with Movement
<>Move Event: This Event
<>Graphic: 'Grappling - Adam'. 0,4,0
<>Phasing Mode ON
<>Move Down
<>Move Down
<>Move Down
<>
End
If you can come up with any ideas I would be greatly appreciative. Thank you.