Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: KiyoshiLancer on June 21, 2007, 03:41:04 AM

Title: Hero is too slow
Post 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 :)

Title:
Post by: Meiscool-2 on June 21, 2007, 03:51:14 AM
Set the event to autostart. Then, right after you use the movement command to lower speed, use the command "erase event".
Title:
Post by: KiyoshiLancer on June 21, 2007, 03:56:25 AM
Thanks ever so much, it worked :D
Title:
Post by: Dragoon de Sol on June 21, 2007, 04:13:11 AM
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.
Title:
Post by: KiyoshiLancer on June 21, 2007, 04:17:22 AM
Brilliant, thanks guys. All sorted! :)

Title:
Post by: game_maniac on June 21, 2007, 09:12:39 AM
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.