Charas-Project
Game Creation => Requests => RPG Maker Programming => Topic started by: KiyoshiLancer on June 21, 2007, 03:41:04 AM
-
Hello, I set up a common event on RM2K3 to decelerate my hero's movement as he was walking way to fast on an overworld map.
I used a move event, decreased move speed and set it to parallel process, but once I tried it out...He walked way too slow.
Is there any way to slow down the hero to a specific speed?
Thanks :)
-
Set the event to autostart. Then, right after you use the movement command to lower speed, use the command "erase event".
-
Thanks ever so much, it worked :D
-
It'll decrease again once he reenters the map.
After decreasing the speed, turn on a switch, then create a second page and make the precondition that switch without putting an event in the commands.
-
Brilliant, thanks guys. All sorted! :)
-
In you case you didn't understand, the problem was that the way you were using the event, it was repeating itself (that's what parallel processes do).
Erase event erases that event from the map, which is to say it stops working, but when you re-enter the map it's back, so your hero's speed would decrease again. By using the switch solution, you can make sure that event never does anything again, unless you want it.