I am making a platform game in RPG Maker 2003 and I have found a way to make my character jump to key, the only problem is, that if the character stands next to the block they want to jump over the character freezes and when I press a directional button nothing happens. The character is fine jumping over a space to get over a hole in the ground, but when it comes to jumping up onto blocks, it just doesnt work. The code I used to do this is below, just in case that would help you resolve my problem.
<>Key Input Proc: [0001:Jumping]
<>Branch if Hero Right Facing
<>Move Event: Here. Begin Jump, Move Up, Move Up, Move Right, Move Right, Move Down, Move Down, End Jump.
<>
: Else Handler
<>
: End
<>Branch if Hero Left Facing
<>Move Event: Here. Begin Jump, Move Up, Move Up, Move Left, Move Left, Move Down, Move Down, End Jump.
<>
: Else Handler
<>
: End
<>
P.S. I have tried phasing mode on/off and that does not work for me. I have also tried checking the box "ignore impossible moves", but that hasn't worked either.