skyline777123123123 Posted July 28, 2020 Share Posted July 28, 2020 I need a script to have a video I made to play at the point after you talk to Angeir after you return to Tamriel from Sovengarde. I just need the script in .txt format. Thanks in advance! Link to comment Share on other sites More sharing options...
maxarturo Posted July 29, 2020 Share Posted July 29, 2020 (edited) First of all you need your video to be in a "BINK" format, otherwise the game will not recognize it and play it.Bink format converter:http://www.radgametools.com/bnkdown.htm * Try to use an uncompressed source video for better quality result. * There is a maximum video size limit (size in length / mb and in screen / aspect ratio) that the game can support, otherwise it will cause CTDs, but i do not remember them right now, if i do remember i'll come back to this later.But you can also experiment yourself with it or research it. Now you need something and event in your mod that will fire the script to play your video:Script example: Event OnActivate(ObjectReference akActionRef) If ( akActionRef == Game.getPlayer() ) Game.PlayBink("MyCoolVideo.bik") ; Be sure that you have the CORRET and EXACT video's NAME and it's extension at the end EndIf EndEvent Function PlayBink(string asFileName, bool abInterruptible = false, bool abMuteAudio = true, bool abMuteMusic = true, \bool abLetterbox = true) native globalhttps://www.creationkit.com/index.php?title=PlayBink_-_Game * Your video file must be placed in data / video.* The file name inside the script must have also it's extension. * Be sure that the video will play on a secure for the player situation, otherwise if you fire it when the player is in combat this will not pause the game and the fight will go on without the player been able to see anything. Have a happy modding. Edited July 29, 2020 by maxarturo Link to comment Share on other sites More sharing options...
Recommended Posts