The Method is quite old and simoe but actualy I got the idea to retry it for conan by reading this Thread in the official AoC Forum. After this I found another one in which a batchfile was generated wich calls a patcher and then starts conan. By the reason to compile the FPS Boost tool for myself I added a launchfunction for AoC. Because I want to share it with others I set it online for download and this little Article to explain what it does.



In the Batchfile from the forum they also delete the Shadercache on each aoc launch. I dont like this because conan launcher itself checks the integrity of the shadercache each time so it only should be deleted if it is damaged or you have actual problems. Ok, to the point. What doies this tool actualy do to get this FPS Improvement ? As I said, the Method is old. Everybody who was in contact with Counterstrike and CS Servers probably know the way how to get some more FPS and better Tickrates out of the Server by opening the Windows Mediaplayer and let it active in Background. What the Mediaplayer does is to set a flag in the Windows Ressouce system to modify the way how CPU cycle distribution is handled. The actual Event was intended for realtime play applications like Highres videos synced with hq sound. You will notice the most FPS increase on single CPU or high load systems.  To open the Mediaplayer in background waste a uneccesary high amount of system ressources, so the actual thing the tool does is just calling the WMP dll and trigger this function. The function for this looks like:
[source]
#include
int main(void)
{
	timeBeginPeriod(1);
	printf("Press any key to restore normal timer frequency.\n");
	getchar();
	timeEndPeriod(1);
	return 0;
}
[/source]
For everybody who cant get anything out of this codepart: At Programm start I call the timeBeginPeriod function and after Im done with playing I end it again.So you start the tool with the conan Path as commandline argument then it starts the conan launcher for you, after you are done playing you hit enter and the tool will restore the timerand exit.
 

DOWNLOAD

AoC FPS Boost
[download]
(1997 Downloads)


How to use this tool ?

Very simple you just need to call it with your conan path as command line argument: AoCFPSBoostLauncher.exe "C:\GAMES\Age of Conan" You get the best usability if you copy it to your AoC Directory and create a shortcut. Then edit the preferences of the Shortcut and set the Conan path behind the actual tool exe. 

✉ MG// CEST

Follow Icon
Don’t miss out and subscribe by email:
Don't worry! NO Spam and FREE; Receive a summarizing email for new posts, easy to unsubscribe at any time.
← Other Blog Posts