Community

SCI Programming => Mega Tokyo SCI Archive => Topic started by: Mr.Money on April 06, 2003, 04:44:54 PM

Title: Disable user input
Post by: Mr.Money on April 06, 2003, 04:44:54 PM
Hi,
I cant seem to find how to disable user input in the help file. Can anyone tell me how to do this, or what is a better way to go about having cut scenes?
Thanks
$$$
Title: Re:Disable user input
Post by: Chris Cromer on April 06, 2003, 05:14:04 PM
Use this to make it so the user can't type or move the ego:

Code: [Select]
ProgramControl()Use this to give him back the ability to type and move:

Code: [Select]
PlayerControl()
Title: Re:Disable user input
Post by: Mr.Money on April 06, 2003, 07:49:05 PM
Thanks,
I actually tried using ProgramControl(), but I must have done something wrong. Ill try it again though, thanks alot.
$$$