[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! :<