A Vampyre Story at Desktop Resolution
Posted: 18 Jul 2009, 01:48
Here is a work in progress patch, that may lead to cool stuff for other games.
Basically this is an AutoHotkey script that takes a game running in a window and makes it fit the desktop and removes the border.
Install AutoHotkey from: http://www.autohotkey.com/
First make the game run in a window by opening the A Vampyre Storygameassetsscripts folder.
Open 14793.bin file using the Windows Notepad.
Go to: and replace True with False so it looks like:
Save the file.
Now after installing AutoHotkey, go to the A Vampyre Storygame folder. Right click and select New - AutoHotkey Script. Rename the file to full.ahk or something similar. Right click this file and select Edit Script. Replace all text with the code below.
To run the game, just double-click on the full.ahk file. You can also right-click and select Compile Script to convert the script into an EXE file that can be run on a computer without AutoHotkey installed.
You can also just download the script and compiled EXE file from here:
http://rapidshare.com/files/257029754/avs-full.zip
This is a WIP, when I get a chance I will try to make an option to keep the 4:3 aspect ratio. And also explain how to apply this to other games.
There does seem to be a 1 pixel glitch on the left/top edges that I will look into when I get a chance. The glitch may actually be part of the game that I could not see on my overscanned TV. Like I say, it's a WIP.
Basically this is an AutoHotkey script that takes a game running in a window and makes it fit the desktop and removes the border.
Install AutoHotkey from: http://www.autohotkey.com/
First make the game run in a window by opening the A Vampyre Storygameassetsscripts folder.
Open 14793.bin file using the Windows Notepad.
Go to: and replace True with False so it looks like:
Save the file.
Now after installing AutoHotkey, go to the A Vampyre Storygame folder. Right click and select New - AutoHotkey Script. Rename the file to full.ahk or something similar. Right click this file and select Edit Script. Replace all text with the code below.
Code: Select all
SetTitleMatchMode, 3
Run, main.exe
WinWaitActive, A Vampyre Story, , 60
WinSet, Style, -0xC00000, A Vampyre Story
WinMaximize, A Vampyre Story
To run the game, just double-click on the full.ahk file. You can also right-click and select Compile Script to convert the script into an EXE file that can be run on a computer without AutoHotkey installed.
You can also just download the script and compiled EXE file from here:
http://rapidshare.com/files/257029754/avs-full.zip
This is a WIP, when I get a chance I will try to make an option to keep the 4:3 aspect ratio. And also explain how to apply this to other games.
There does seem to be a 1 pixel glitch on the left/top edges that I will look into when I get a chance. The glitch may actually be part of the game that I could not see on my overscanned TV. Like I say, it's a WIP.

