Almost like a movie

lildude2022002 How can I get the player to stop controlling his character at a certain time and then let other things  happen almost like a movie???

Any Help would be...helpfull.
Thx
AGI1122 Use the command program.control(); this should stop the user from moving the ego.
ACiDiC74 You'll probably also need some kind of counter variable, so everything doesn't happen at once.

for example:

v90 = 0;
Joel You may also want to call prevent.input() so that the player can't type in any commands while the scene is running. Just don't forget to call accept.input() and player.control() when the scene is done.
AGI1122 You might also want to use the command

reset(menu_enabled);

unless you want them to use the menu during the movie.