If the game shuts down, shut down OBS too

Ask gaming related questions
Datrik
Posts: 6
Joined: 28 Jan 2024, 15:25

If the game shuts down, shut down OBS too

Post by Datrik » 29 Apr 2024, 11:46

I can't make a macro that also stops OBS when a game is closed, can anyone help Please?

Rohwedder
Posts: 7705
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: If the game shuts down, shut down OBS too

Post by Rohwedder » 04 May 2024, 01:51

Hallo,
start Wordpad, Notepad and this script:

Code: Select all

#Requires AutoHotkey v2.0
Persistent
Timer := () => !WinExist("ahk_exe wordpad.exe")
	And WinExist("ahk_exe notepad.exe")?WinClose():""
SetTimer Timer, 1000 ; every second
If you exit Wordpad, the script also exits Notepad.
Replace Wordpad with your game and Notepad with OBS

Post Reply

Return to “Gaming”