@@ -6,11 +6,11 @@ WinSplitPlus is a window hooks to change the window class, window name and kill
66
77CMD usage:
88``` CMD
9- WinSplitPlus.exe -Player <Num> -WinClass -WinName -Mutex <"Mutex Name"> -Width <Num> -Height <Num> -Posx <Num> -Posy <Num> <"Game Path"> <Game arguments>
9+ WinSplitPlus.exe -Player <Num> -WinClass -FindWindow -Mutex <"Mutex Name"> -Width <Num> -Height <Num> -Posx <Num> -Posy <Num> <"Game Path"> <Game arguments>
1010```
1111Example:
1212``` CMD
13- WinSplitPlus.exe -Player 1 -A -WinClass -WinName -Mutex "GameMutex" -Width 1280 -Height 720 -Posx 100 -Posy 100 "C:\Games\Game.exe" -window
13+ WinSplitPlus.exe -Player 1 -WinClass -FindWindow -A -Std -Mutex "GameMutex" -Width 1280 -Height 720 -Posx 100 -Posy 100 "C:\Games\Game.exe" -window
1414```
1515
1616For Batch file example:
@@ -19,30 +19,32 @@ For Batch file example:
1919
2020WinSplitPlus.exe ^
2121-Player 1 ^
22- -A ^
2322-WinClass ^
24- -WinName ^
23+ -FindWIndow ^
24+ -A ^
25+ -Std ^
2526-Mutex "GameMutex" ^
2627-Width 960 ^
2728-Height 1080 ^
2829-Posx 0 ^
2930-Posy 0 ^
30- "C:\Game\ Game.exe" -window
31+ "Game.exe" -window
3132```
3233Options:
33- | Argument | Description |
34- | -----------------------------| -----------------------------------------------|
35- | ` -Player <Number> ` | Identifier for this game instance |
36- | ` -WinClass ` | Enable Window class hook |
37- | ` -WinName ` | Enable Window Name hook |
38- | ` -Mutex <BaseMutexName> ` | The base name for the game's mutex |
39- | ` -Width <Width> ` | The window width |
40- | ` -Height <Height> ` | The window height |
41- | ` -Posx <X> ` | The window X position |
42- | ` -Posy <Y> ` | The window Y position |
43- | ` -A ` | Enable ANSI hooks (Best for old games) |
44- | ` -W ` | Enable Unicode hooks (Best for modern games) |
45- | ` -Std ` | Enable Standard hooks |
46- | ` -Ex ` | Enable Extended hooks |
34+ | Argument | Description |
35+ | -----------------------------| -----------------------------------------------------------|
36+ | ` -Player <Number> ` | Identifier for this game instance |
37+ | ` -WinClass ` | Enable Window class hook |
38+ | ` -WinName ` | Enable Window Name hook |
39+ | ` -FindWindow ` | Enable FindWindow hook (It fixes the audio for some games)|
40+ | ` -Mutex <BaseMutexName> ` | The base name for the game's mutex |
41+ | ` -Width <Width> ` | The window width |
42+ | ` -Height <Height> ` | The window height |
43+ | ` -Posx <X> ` | The window X position |
44+ | ` -Posy <Y> ` | The window Y position |
45+ | ` -A ` | Enable ANSI hooks (for old games) |
46+ | ` -W ` | Enable Unicode hooks (for modern games) |
47+ | ` -Std ` | Enable Standard hooks (can be combined with ` -Ex ` ) |
48+ | ` -Ex ` | Enable Extended hooks (can be combined with ` -Std ` ) |
4749
4850Project imported from [ here] ( https://www.swbfgamers.com/index.php?topic=11251.msg112827#msg112827 ) by SleepKiller
0 commit comments