-
[TUT][1.5]Fix all GunZ Runnable Errors
Hello Everybody,
I'm going to start this because i see that much people have problems with set up a proper Gunz Source.
First of all you have to know that everything is almost in the Runnable(Gunz.exe). You have to put all your custom stuff in this.
1) Set up your runnable.
Code:
- Download the Gunz Source here:
http://forum.ragezone.com/f245/gunz-1-5-summer-2011-a-796257/
- Follow this TUT for cryptopp
http://forum.ragezone.com/f497/guide-build-gunz-source-code-796269/
After you're done with everything
- Start your GunZ Source ('/Gunz/Gunz.sln')
- Build GunZ in KOR_Release_Publish
http://img585.imageshack.us/img585/6336/lolxp.png
- Go to your client and then decompile system.mrs.
Then go to locale.xml
crtl + h USA to KOR
2) Remove .MEF
Code:
- Crtl + H += ".mef" to += ""
- Crtl + H xml.mef to xml
3) Fix the Netmarble Certification
Code:
- Crtl + F type Netmarble Certification
You see return false; under that, replace it with return true;
4) Remove XTrap
Code:
- Project -> Gunz Properties -> C/C++ -> Preprocessor -> Remove _XTRAP from that first line
5) Enable GunZ Login Labels
Code:
- Find
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
- Replace with:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
6) Delete korean text at loading screen
Code:
- Crtl + F sprintf( m_szNotice, "??½?°£?? °??? ??¿??÷ °?°?» ???¥ ¼? ??½?´?´?.");
You see:
if ( (rand() % 2) == 0)
sprintf( m_szNotice, "??½?°£?? °??? ??¿??÷ °?°?» ???¥ ¼? ??½?´?´?.");
else
sprintf( m_szNotice, "°?÷?¿? ??¿¡ ??½??? ??¿???µ???, °??? ??¿?¿¡µµ ?????? ??½??? ??¿? ??´?´?.");
Uncomment it:
/*
if ( (rand() % 2) == 0)
sprintf( m_szNotice, "??½?°£?? °??? ??¿??÷ °?°?» ???¥ ¼? ??½?´?´?.");
else
sprintf( m_szNotice, "°?÷?¿? ??¿¡ ??½??? ??¿???µ???, °??? ??¿?¿¡µµ ?????? ??½??? ??¿? ??´?´?.");
*/
--
Support will be given
PM me for contact.
I'm not supporting for a whole new source to create but only for small fixes.
Credits:
- iDelta(Writing this tutorial)
- Vusion(for teaching me stuff)
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Quick, Remove the Warez (2003 VC++)
Before you might receive an inferaction.
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Quote:
Originally Posted by
Gunblade
Quick, Remove the Warez (2003 VC++)
Before you might receive an inferaction.
Why o-o, isn't RaGEZONE offshore anyway?
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
hi sir delta i followed your tutorial but i got lots of errors and warnings i dont know to fix it. can you please help me? i cant fix it my self
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
step : 2-3-4-5-6 where is it ? located at? :l
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Me too have same question
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
I hate that... all the helper left the gunz forum... now anyone keep there thing.... seriously.
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
While this tutorial, but lacking for the quest and survival worked, are disabled when compiling.
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Hi, i got this error i tried to look for the directory i dont have that lib file. please help. "LINK : fatal error LNK1181: cannot open input file '\Documents and Settings\Administrator\Desktop\Gunz Source Project\Gunz\Stable\cml\lib\cmld.lib'"
i also got this problem sir
"MRsaEncrypt.cpp
c:\Documents and Settings\Administrator\Desktop\Gunz Source Project\Gunz\Stable\cml\source\MRsaEncrypt.cpp(6) : fatal error C1083: Cannot open include file: 'rsa.h': No such file or directory"
Help sir please. i tried to search the file on google. i didnt find it.
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
step : 2-3-4-5-6 where is it ? located at? :l ...
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
This is the files i needed to build cml,
#include "rsa.h"
#include "randpool.h"
#include "gzip.h"
#include "hex.h"
#include "files.h"
Can anyone answer on how to get that please
EDIT: OH I GOT IT I FORGOT TO PUT sdk folder inside Gunz and put the contents of Include from cryptopp.
I got another problem, and i guess this is the last problem,
"fatal error C1083: Cannot open compiler intermediate file: 'f:\cryptopp\source\release\cryptlib.pch': Permission denied
LINK : fatal error LNK1257: code generation failed"
Please help! :<
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Quote:
Originally Posted by
cdrking
This is the files i needed to build cml,
#include "rsa.h"
#include "randpool.h"
#include "gzip.h"
#include "hex.h"
#include "files.h"
Can anyone answer on how to get that please
EDIT: OH I GOT IT I FORGOT TO PUT sdk folder inside Gunz and put the contents of Include from cryptopp.
I got another problem, and i guess this is the last problem,
"fatal error C1083: Cannot open compiler intermediate file: 'f:\cryptopp\source\release\cryptlib.pch': Permission denied
LINK : fatal error LNK1257: code generation failed"
Please help! :<
You didn't done cryptopp good or you have to rebuild it.
Don't delete the cryptopp folder and let it be on the same directovery!
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
i will try to rebuild the crypto
i didnt delete any of the folders files. but okay i will try what you said.
Using vs2003 Pro is okay? or it really should be enterprise?
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Help-me
MLOG
Code:
GUNZ 1,0,0,290 launched. build (Jul 13 2012 14:00:46)
Log time (07/13/12 14:02:26)
CPU ID = GenuineIntel ( family = 262 , model = 7 , stepping = 10 ) @ 2599 MHz
Display Device = Intel(R) G33/G31 Express Chipset Family ( vendor=8086 device=29c2 subsys=2a78103c revision=10 )
Display Driver Version = 6.14.0010.5218
Windows = 5.1 Build 2600 , Service Pack 3 (2097151KB) : Windows xp..
Cannot open system/locale.xml file.
Error!! - StringTable Initalize Failed
Cannot open (null) file.
Invalid Locale
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Quote:
Originally Posted by
kaiqueolhy
Help-me
MLOG
Code:
GUNZ 1,0,0,290 launched. build (Jul 13 2012 14:00:46)
Log time (07/13/12 14:02:26)
CPU ID = GenuineIntel ( family = 262 , model = 7 , stepping = 10 ) @ 2599 MHz
Display Device = Intel(R) G33/G31 Express Chipset Family ( vendor=8086 device=29c2 subsys=2a78103c revision=10 )
Display Driver Version = 6.14.0010.5218
Windows = 5.1 Build 2600 , Service Pack 3 (2097151KB) : Windows xp..
Cannot open system/locale.xml file.
Error!! - StringTable Initalize Failed
Cannot open (null) file.
Invalid Locale
me too have the same error
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Did you guys disable .mef and changed up the locale.xml??
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
yes i did and changed the every usa locale to KOR
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Quote:
Originally Posted by
medotarek
yes i did and changed the every usa locale to KOR
Did you remove filelist?
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Quote:
Originally Posted by
Military
Did you remove filelist?
no i didn't
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
Code:
<?xml version="1.0" encoding="UTF-8"?>
<XML>
<LOCALE>
<COUNTRY>BRZ</COUNTRY>
<LANGUAGE>BRZ</LANGUAGE>
<MAXPLAYERS>10</MAXPLAYERS>
</LOCALE>
</XML>
iam building in BRZ_Release_Publish
how can i disable the file list??
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors
First of all build in KOR.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<XML>
<LOCALE>
<COUNTRY>KOR</COUNTRY>
<LANGUAGE>KOR</LANGUAGE>
<MAXPLAYERS>16</MAXPLAYERS>
</LOCALE>
</XML>
-
Re: [TUT][1.5]Fix all GunZ Runnable Errors