Chaos Project

RPG Maker => General Discussion => Topic started by: SleepingSirenx on November 01, 2011, 02:18:55 am

Title: Bug in my RMXP
Post by: SleepingSirenx on November 01, 2011, 02:18:55 am
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?
Title: Re: Bug in my RMXP
Post by: Fantasist on November 01, 2011, 03:16:49 am
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?
Title: Re: Bug in my RMXP
Post by: Blizzard on November 01, 2011, 04:19:09 am
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.
Title: Re: Bug in my RMXP
Post by: Holyrapid on November 02, 2011, 12:47:51 am
Or use the command "wait until moves completion" which can be found directly underneath the "set move route" command.
Title: Re: Bug in my RMXP
Post by: Blizzard on November 02, 2011, 02:12:57 am
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.