Good-day.
OK, so my game has run into a serious bug...
Basically, I set my player to move via set move route, say Up, Up, Up, Left, Up.
But my RMXP only does one command, in this case UP.
Can someone help me with this?
Maybe some script has messed up the character class? That's the only thing I can think of. Using any pixel movement scripts, or any other scripts?
You should be aware that you should put a wait command after the move command for the event to wait for the execution of the moving to finish. Since you have 5 commands there and probably using speed 4 (which means a time of 4 frames for one movement), you need to use 20 frames.
Or use the command "wait until moves completion" which can be found directly underneath the "set move route" command.
That command doesn't work properly in some of the RMXP versions, because of a bug in the scripts. I still suggest using the wait command instead.