Ancient76 Posted February 11, 2018 Share Posted February 11, 2018 Hi, I work on a quest where i need to find some missing people. Later in the quest these people will be dead. So i found their bodies, check them, and this should trigger a cut scene in which a vampire will be showed for a couple of seconds. Anyone tried something similar? Link to comment Share on other sites More sharing options...
Di0nysys Posted February 12, 2018 Share Posted February 12, 2018 You can prerecord a video clip and then convert it to the Bink format. Game can play cutscenes with the PlayBink - Game function. There's ways to do it in game (setting player alpha then manipulating their position), but seeing as how finicky the scripting engine gets (and how laggy it gets), it's very likely something goes wrong and you can't time it properly. Link to comment Share on other sites More sharing options...
Deleted38846565User Posted February 12, 2018 Share Posted February 12, 2018 This gem of a mod framework is a bit hard to figure out but works well https://www.nexusmods.com/skyrim/mods/73550/The cam works well too, here's it in my own mod(minus the many debug notifications) https://www.youtube.com/watch?v=Vq6EPT-00QY Link to comment Share on other sites More sharing options...
Ancient76 Posted February 12, 2018 Author Share Posted February 12, 2018 Thx guys. But i have been thinking about this, and if i make this cut scene during a day but someone decides to do this quest during the night, well it's gonna look ridiculous to see day light cut scene. Maybe better solution would be to make an actor trigger/spawn for vampire. The idea behind this is just to see this vampire for a short time, after player finds bodies that is. For example i find the bodies, then this triggers and spawn a vampire behind a player, etc. I could even make a force-greet package but without conversation, and then he will run somewhere into the woods. Then again we would meet and fight, but this will be much later in the quest. Link to comment Share on other sites More sharing options...
simtam Posted February 14, 2018 Share Posted February 14, 2018 Sounds great. Usually when we talk cut-scenes, I think: scripted camera positioning, like this ObjectReference playerRef = Game.GetPlayer() returnPositionMarker.MoveTo(playerRef) Game.GetPlayer().MoveTo(cameraPositionMarker) Game.ForceFirstPerson() Game.DisablePlayerControls(true, true, true) ; do stuff Utility.wait(...) player.moveTo(returnPositionMarker) Game.EnablePlayerControls()but if you want the cut-scene to feature the player character as well, it's not enough. Link to comment Share on other sites More sharing options...
Ancient76 Posted February 16, 2018 Author Share Posted February 16, 2018 Sounds great. Usually when we talk cut-scenes, I think: scripted camera positioning, like this ObjectReference playerRef = Game.GetPlayer() returnPositionMarker.MoveTo(playerRef) Game.GetPlayer().MoveTo(cameraPositionMarker) Game.ForceFirstPerson() Game.DisablePlayerControls(true, true, true) ; do stuff Utility.wait(...) player.moveTo(returnPositionMarker) Game.EnablePlayerControls()but if you want the cut-scene to feature the player character as well, it's not enough. Thx. Actually i want to create trigger volume which will spawn an actor when player enters it. You have script for this? Link to comment Share on other sites More sharing options...
Ancient76 Posted February 17, 2018 Author Share Posted February 17, 2018 Something like this, but this is for F3. Anyone tried something similar? Link to comment Share on other sites More sharing options...
Ancient76 Posted March 15, 2018 Author Share Posted March 15, 2018 This is what i was looking for: Link to comment Share on other sites More sharing options...
Recommended Posts