Zorkaz Posted March 23, 2020 Share Posted March 23, 2020 Does anyone know a line for making screenshots?I know it from SKSE but not for Vanilla Fallout 4 Link to comment Share on other sites More sharing options...
scrivener07 Posted March 23, 2020 Share Posted March 23, 2020 In fallout 4 I think its just a console command called `Screenshot`. You might be able to invoke the command in a convoluted way.ScriptName Derp Extends Quest int Home = 36 const ; the home key string EmptyState = "" const string ExecuteState = "Execute" const string ConsoleMenu = "Console" const Event OnQuestInit() RegisterForKey(Home) EndEvent Event OnKeyDown(int keyCode) GotoState(ExecuteState) EndEvent State Execute Event OnBeginState(string oldState) RegisterForMenuOpenCloseEvent(ConsoleMenu) UI.OpenMenu(ConsoleMenu) EndEvent Event OnMenuOpenCloseEvent(string menuName, bool opening) If (opening) var[] arguments = new var[1] arguments[0] = "Screenshot" ; the console command to send UI.Invoke(ConsoleMenu, "root1.AnimHolder_mc.Menu_mc.executeCommand") GotoState(EmptyState) EndIf EndEvent Event OnEndState(string newState) UnregisterForMenuOpenCloseEvent(ConsoleMenu) UI.CloseMenu(ConsoleMenu) EndEvent EndState Link to comment Share on other sites More sharing options...
Recommended Posts