Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[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