Call of Duty : Play Cinematic ingame

From COD Modding & Mapping Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Short tutorial on how to play cinematics in COD series
  • Precache the cinematic shader after load:
precacheshader("cinematic");
  • Now play your movie - store the bik in cod/main/video (default is the one we are using here)
movie = newHudElem();
movie setShader( "cinematic", 800, 600 );
CinematicInGame( "default" );
  • After playing it should close automatically.

This works in COD4 and WAW. (Probably also in Black Ops!)

By Techno2SL

Sources