-
Notifications
You must be signed in to change notification settings - Fork 21
Overlay
Traderain edited this page Nov 30, 2016
·
9 revisions
This is used mainly when you are grinding a segment for a segmented speedrun.
- Load a demo into VolvoWrench (you can also just drag&drop)
- Change the hotkey settings/the overlay settings (not necessary but make sure to check the key to close it)
- Launch the overlay
- If your game is in fullscreen mode the program can't draw the overlay so please switch it to windowed or borderless.
Try launching it with this:
-game hl2 -console -novid -window -noborder -w 1920 -h 1080
or change it in the game settings. For old engine you can use this ahk script to make your game borderless:
WinWait, ahk_class Valve001
IfWinExist
{
WinSet, Style, -0xC00000 ; remove the titlebar and border(s)
WinMove, , , 0, 0, 1920, 1080 ; move the window to 0,0 and reize it to 1024x900
}
else
{
ExitApp
}
For everything else contact me or make an Issue here.