Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: Me5kuTis on August 16, 2005, 07:35:34 PM

Title: Tiny question about cutscenes.
Post by: Me5kuTis on August 16, 2005, 07:35:34 PM
Now here's a dumb question :D. I've been working with rm2k for 3 years but this is the first time I'm stuck with this problem :D. How in the HELL do you prevent the player from moving the hero while in a cutscene?!
Title:
Post by: FFL2and3rocks on August 16, 2005, 08:08:31 PM
Use Auto Start events for the cutscene instead of Parallel Process.
Title:
Post by: maxine on August 16, 2005, 08:39:07 PM
AND every time you make custom movement during an aout start event you have too put

<>Proceed with movement

before each time someone is gonna move too a new direction
Title:
Post by: Me5kuTis on August 17, 2005, 05:49:53 AM
FFL2and3rocks :
Thanks Didn't realise what was the difference between auto start and parallel process.

maxine :
It's move all in my maker and I use wait commands. But your suggestion is a LOT better thanks.
Title:
Post by: maxine on August 17, 2005, 12:24:02 PM
Auto start stops everything else than the actuall event that is auto started.. Parallel process makes it happen at the same time as everything else.