• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Tutorials] Enable Check RAM System. in Client ( Work in WarZTHSrc2 )

Newbie Spellweaver
Joined
Oct 30, 2014
Messages
8
Reaction score
4
In FrontEndWarZ.cpp

Now Find This.

Code:
if (statex.ullTotalPhys/1024/1024 < 4000)

and now Delete this RED .


Code:
  [COLOR=#ff0000]/*[/COLOR]if (statex.ullTotalPhys/1024/1024 < 4000)        {
        vars1[1].SetBoolean(true);
        vars1[2].SetString("");
        vars1[0].SetString("You have less than 4GB of required system memory (RAM) to run this game. Please ensure to run the game on low quality settings.");
        gfxMovie.Invoke("_root.api.showInfoMsg", vars1, 3);  
        }[COLOR=#ff0000]*/    [/COLOR]


and change this MESSAGE.

Code:
vars1[0].SetString("You have less than 4GB of required system memory (RAM) to run this game. Please ensure to run the game on low quality settings.");

EXSAMPLE

Code:
vars1[0].SetString("BRA BRA BRA ENJOY THIS GAME.");


now you Build and Enjoy. xD
 
Last edited by a moderator:
Master Summoner
Joined
Mar 30, 2013
Messages
543
Reaction score
72
Are you mentally ill? Why would you remove a warning that tells you that you have less than the required amount of memory to run the game?
 
f793
Joined
May 5, 2013
Messages
827
Reaction score
160
Are you mentally ill? Why would you remove a warning that tells you that you have less than the required amount of memory to run the game?
Because they think by removing this it will fix that "not enough ram" error.

P.S I'm back.
 
Master Summoner
Joined
Mar 30, 2013
Messages
543
Reaction score
72
Because they think by removing this it will fix that "not enough ram" error.

P.S I'm back.

Also, Hammerpoint/OP Productions are a bunch of asses.
The default pattern for bits and bytes is that the number must be a power of 2 (idk how to explain this poop), but, instead of checking if the client's memory is less than 4000, they should check if it's less than 4096.
 
f793
Joined
May 5, 2013
Messages
827
Reaction score
160
Also, Hammerpoint/OP Productions are a bunch of asses.
The default pattern for bits and bytes is that the number must be a power of 2 (idk how to explain this poop), but, instead of checking if the client's memory is less than 4000, they should check if it's less than 4096.
1GB=1024MB.

Exactly [emoji4]
 
Back
Top