Darth Balor Posted August 14, 2007 Share Posted August 14, 2007 are the scripts for playing movies - in-modules,between modules and queue movies- the same in tsl as K1? Link to comment Share on other sites More sharing options...
Mindtwistah Posted August 14, 2007 Share Posted August 14, 2007 Copied from Darth333: s guide: You can use either the StartNewModule function (if you want an inter-module movie, or the PlayMovie/QueueMovie functions (for intra-module movies) To play movies during a transition between two modules: void main() { // Send you to the caves on Dantoine after // playing a video showing the Leviathan // the movie's name is "05r" StartNewModule("danm14ae","", "05r"); } To simply play a movie inside your current module, use: // usage: PlayMovie( string sMovie ); // example: PlayMovie("05r"); You can also use the Queue movie script: //replace FALSE by TRUE if you want it to be skipable when hitting esc. // usage: QueueMovie( string sMovie, FALSE); //example: QueueMovie("05r",FALSE); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.