This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| set activeprofile=Default | |
| for /f "tokens=2 delims=()" %%z IN ('inifile "%~dp0\..\MO2\ModOrganizer.ini" [General] selected_profile' ) do set activeprofile=%%z | |
| cd ..\MO2\explorer++ | |
| start "" "Explorer++.exe" "%__CD__%\..\..\..\GAME\data" "%__CD__%\..\..\..\GAME" "%__CD__%\..\..\..\MO2\overwrite" "%__CD__%\..\..\..\MO2\profiles\%activeprofile%" "%__CD__%\..\..\..\MO2\mods" "%__CD__%\..\..\..\..\SHARED" | |
| exit /b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires Autohotkey v2 | |
| outputtext := InputBox("put somethin here", "messageboxtitle",,A_Args[1]).value | |
| stdout := FileOpen("*", 0x1) | |
| stdout.Write(outputtext) | |
| stdout.Close() | |
| ExitApp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Stream Health HUD (Overlay Text Source Updater) | |
| -- Targets Text (GDI+) sources (id = text_gdiplus_v3) | |
| -- Updates a Text source with: | |
| -- • Stream/Record time | |
| -- • Dropped frames | |
| -- • CPU % | |
| -- • FPS | |
| -- • Bitrate (kbps, if available) | |
| local obs = obslua |