|
|
#16 |
|
Banned
Join Date: Feb 2010
Reputation: 7
Posts: 184
|
I have Windows 7 x64 and I can't get the game started. I have tried setting the memory to 2048MB and I have also tried using compatibility modes and admin.
|
|
|
|
|
|
#17 |
|
Banned
Join Date: Feb 2010
Reputation: 7
Posts: 184
|
any fixes yet?
|
|
|
|
|
|
#18 |
|
Banned
Join Date: Dec 2009
Reputation: 690
Posts: 1,387
|
lowering ram and rebooting when I just want to play a game?
Let us count the ways that this is just wrong and sucks. The game programmers and the publishers should add a warning to the sales page. I feel really cheated now. Thanks for the solution. +1 for your reputation. |
|
|
|
|
|
#19 |
|
Join Date: Jan 2011
Reputation: 0
Posts: 5
|
Sorry to bump an old thread, but it seems to be the only one. The fix works for me on all my other computers, but with my new one it still refuses to work. I think the problem is that my graphics card memory is too much for it. I can't lower my RAM anymore and still get the computer to function properly.
Is there a way to set your usable graphics memory using something like Windows compatibility kit? |
|
|
|
|
|
#20 | |
![]() Join Date: Mar 2009
Reputation: 341
Posts: 914
|
Quote:
|
|
|
|
|
|
|
#21 |
![]() Join Date: Apr 2009
Reputation: 1
Posts: 83
|
I tested this on Windows 7 ultimate 64bit and i still cannot get it to work, same issue as Alkpaz2 I have an nVidia Geforce GTX480 and my video RAM is just too high I presume. (shame, i loved this game back in the old days)
|
|
|
|
|
|
#22 |
![]() Join Date: Dec 2010
Reputation: 212
Posts: 880
|
I just installed Act of War: Direct Action on my computer.
I have Windows 7 64 bits, 12 GB of RAM and a GTX 580 with 1.5 GB of VRAM. The ONLY thing I had to do is to reduce the total memory under 3 GB, and it includes the 1.5 GB of my video card. So I had to go in msconfig and set the maximum RAM to 1.5 GB. 1.5 GB RAM + 1.5 GB VRAM = 3 GB which is the max Act of War can take. A little reboot and the game works perfectly. I even added antialiasing, anisotropic filtering and vsync with the Nvidia Control Panel. Note that you DON'T need to run Act of War in WinXP mode or with admin privilege or deactivate the Data Execution Protection. The only thing to do is to reduce memory. Hope that helps. |
|
|
|
|
|
#23 | |
|
Join Date: Jan 2011
Reputation: 0
Posts: 5
|
Quote:
|
|
|
|
|
|
|
#24 |
|
Join Date: Jan 2011
Reputation: 0
Posts: 5
|
Is anyone out there, I'm still having problems trying to get this game to work on my comp, I know it's likely a lost cause, but I really want to play this.
My computer specs are as follows: Win 7 x64 6 GB RAM - Limited to 1.5 GB when attempting to start AoW. ATI Radeon HD 6900 - 2 GB GDDR5 ****EDIT: I dual-booted xp just to play this game, and it still fails. I installed Windows XP Pro x32. Started the game up and it gave me this error: http://img813.imageshack.us/img813/1700/image001x.png Additional Pics: http://img607.imageshack.us/img607/8395/image004m.png http://img832.imageshack.us/img832/2580/image002ii.png As you can see, not only did I go to XP 32bit, but I'm also only running on 1GB RAM atm, nothing will work. I still get the negative memory error. Last edited by AtraicMine: 07-11-2011 at 11:07 PM. |
|
|
|
|
|
#25 |
|
Join Date: Jan 2012
Reputation: 0
Posts: 1
|
I have Windows 7 Home Premium 64 bit and I tried changing my RAM to 2048 MB from the BOOT tab to run AoW:HT. The error goes away, but I get a different one now that says "Negative Video Memory - Critical Failure". It then goes on to say about ten things that all have "DirectX9Init" at the beginning. Does anyone have any ideas what that means?
|
|
|
|
|
|
#26 |
|
Join Date: Jan 2012
Reputation: 0
Posts: 2
|
this doesnt work for me either when i leave my 8gb on it comes up with a message saying unlock act of war high treason then crashes with the error 217 and does the whole crit failure thing but trys to say i only got 51mb of ram, so i done the whole turning my ram down to 1024 coz i got 2gb on g card and then it comes up sayin the samething about unlockin aow HT then goes into a crit failure statin i only got 1804 of ram if it doesnt get sorted soon im gonna b askin steam for a refund or the ability to exchange this piece of ♥♥♥♥ for sumthin at same price
|
|
|
|
|
|
#27 |
|
Join Date: Apr 2010
Reputation: 0
Posts: 6
|
If you have a 64-bit OS, you need the 64-bit OS Tages driver for this game to run.
Link: http://www.tagesprotection.com/5.5/TagesSetup_x64.exe You may also need to run the game in Compatibility Mode. It runs for me now, with 8GB of RAM. No changes to msconfig to reduce my system memory. |
|
|
|
|
|
#28 | |
|
Join Date: Jan 2012
Reputation: 0
Posts: 2
|
Quote:
|
|
|
|
|
|
|
#29 |
|
Join Date: Nov 2011
Reputation: 0
Posts: 4
|
Even if you lower your system RAM (which fixes one issue) the game will still fail with a negative memory error if your video card has too much RAM. Unfortunately no-one seems to have found a workaround for the second problem.
Epic amount of wasted time
|
|
|
|
|
|
#30 |
|
Join Date: May 2012
Reputation: 0
Posts: 1
|
Act of War ask for video memory by calling DirectX function GetAvailableTextureMem. We just need limit value returned by this function to avoid crash caused by video memory amount. I found this article on web http://www.codeguru.com/cpp/g-m/dire...-Proxy-DLL.htm
There is also sources of simple dllproxy for directx (do nothing, simple call original directx functions). Changing this code in file myIDirect3DDevice9.cpp UINT myIDirect3DDevice9::GetAvailableTextureMem(void) { return(m_pIDirect3DDevice9->GetAvailableTextureMem()); } to this (never say to application values greater then 1Gb of video memory) UINT myIDirect3DDevice9::GetAvailableTextureMem(void) { const UINT TextureMemoryLimit = 1024 * 1024 * 1024; UINT AvailableTextureMem = m_pIDirect3DDevice9->GetAvailableTextureMem(); if(AvailableTextureMem > TextureMemoryLimit) return TextureMemoryLimit; else return AvailableTextureMem; } and compile we get proxy which can fix negative memory error in Act of War. Proxy dll must be placed in Act of War folder (same folder where game exe file located), not in windows system folder (this break directx functionality) There is a proxy with a memory reporting fix http://cns-spb.ru/d3d9.zip or anyone can compile it using Microsoft Visual Studio Express and Microsoft DirectX SDK (these can be downloaded from Microsoft site for free). |
|
|
|
![]() |
|
||||||
| Thread Tools | |
| Display Modes | |
|
|