Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: on Mon 08/12/2003 21:00:46

Title: Video Sequence
Post by: on Mon 08/12/2003 21:00:46
Is it possible to upload a video sequence, (.flc or .avi file) into your game, and have it played when the player does a certain thing, with no scripting involved?
Thanks
Title: Re:Video Sequence
Post by: scotch on Mon 08/12/2003 21:16:56
You have to use scripting I think, it's no trouble though.  Just put the avi in your compiled folder and when you want it to play (like in an object interaction for example) choose to run a script and put in it

PlayVideo("video.avi",0,1);

That's all there is to it.

It won't be put into the game exe, you have to put it into the compiled game folder, FLC is done differently, look in the multimedia functions section of the help file.