1 items

File information

Last updated

Original upload

Created by

marvis999

Uploaded by

marvis999

Virus scan

Safe to use

Tags for this mod

10 comments

  1. VidSupra
    VidSupra
    • premium
    • 0 kudos
    For those who's want to run this with MO2. You just need to compile the StarfieldSFSE into .exe with AutoHotKey Dash.
  2. FloydFire42
    FloydFire42
    • premium
    • 21 kudos
    I wonder if it's possible to have the script launch the game through steam since i've set steam to launch sfse and i get sfse + steam ingame overlay. would it be possible to have the script send the command "steam://rungameid/1716740" instead of launching the exe? that way i think it doesn't really need to be in the same folders as the exe maybe? I'm really not experienced in autohotkey but it would be really cool to have a tool that i can use to change resolution when launching games :)

    Edit: i think i did it :) i only had to change the run command from:
    Run(gameExePath)to:
    Run("path\to\steam\ steam://rungameid/1716740")
    1. marvis999
      marvis999
      • member
      • 0 kudos
      Thanks! I did look into it but didn't think of that!

      I'll leave it as is for now since Gamepass/Windows Store players should be able to use it as well with the current setup. :)
    2. FloydFire42
      FloydFire42
      • premium
      • 21 kudos
      i suppose you can always make the code to check what version of the game is installed based on where is installed and have it change the gameexepath variable before running maybe? but yeah the way is coded right now works fine and i think the steam overlay doesn't work only if you have also reshade
  3. Raleford
    Raleford
    • member
    • 0 kudos
    How does this interact with a multi-monitor setup? Is there a way to choose which monitor this affects? Especially monitors with different native resolutions.
    1. Raleford
      Raleford
      • member
      • 0 kudos
      For anyone else with multi-monitor using this: I just looked the nircmd docs and the setdisplay command does have a monitor selection parameter that'd be relatively easy to add in if you need.
    2. Raleford
      Raleford
      • member
      • 0 kudos
      OP: if you wanted to add in the options, something like this I think should work, though I've not done much AHK or any nircmd before. Thanks for sharing your script!

      ; CONFIG
      multiMonitor := false
      desiredMonitor := ""
      desiredWidth := 2560
      desiredHeight := 1080
      resolutionRestoreDelay := 1000 ; Time in milliseconds to wait before restoring the original resolution
      gameExeName := "Starfield.exe"

      ; Change resolution to the desired resolution
      if multiMonitor {
          Run(A_ScriptDir "\nircmd.exe setdisplay monitor:" desiredMonitor " " desiredWidth " " desiredHeight " 32")
          Sleep(1000)
      }
      else {
      Run(A_ScriptDir "\nircmd.exe setdisplay " desiredWidth " " desiredHeight " 32")
      Sleep(1000)
      }
  4. VidSupra
    VidSupra
    • premium
    • 0 kudos
    Thank you. Now I dont have to keep changing the resolution all the time.
  5. aceman67
    aceman67
    • premium
    • 0 kudos
    If you have an AMD card, this isn't necessary, as AMD Adrenaline Software will do this automatically with Radeon Super Resolution (which is different than FSR).

    First, Open the game, set it to Borderless Window and your Native Resolution, close the game open AMD Software, select Starfield's profile, Enable Radeon Super Resolution - Borderless Fullscreen.

    Set it to quality (one resolution Step down from your native resolution, IE 1920x180p in my case for my 1440p monitor), and set the image quality to 75 (change this if you have to, but I found this was a sweet spot for me for performance vs quality).

    With this enabled, I was able to get 80 FPS average on Ultra (w/ motion blur turned off) on my RX 6600 @ 1440p, where I would only get 30-40fps with it turned off.

  6. XGLX
    XGLX
    • supporter
    • 0 kudos
    I've been using this program for years and is much easier to setup and use then Autohotkey
    https://funk.eu/hrc/ - HRC - Hotkey Resolutiuon Changer V2.1