Gj mate, nice tut!
This is a discussion on [TUT][1.5]Fix all GunZ Runnable Errors within the GunZ Tutorials forums, part of the Gunz Online category; Hello Everybody, I'm going to start this because i see that much people have problems with set up a proper ...
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.
2) Remove .MEFCode:- 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- Go to your client and then decompile system.mrs. Then go to locale.xml crtl + h USA to KOR
3) Fix the Netmarble CertificationCode:- Crtl + H += ".mef" to += "" - Crtl + H xml.mef to xml
4) Remove XTrapCode:- Crtl + F type Netmarble Certification You see return false; under that, replace it with return true;
5) Enable GunZ Login LabelsCode:- Project -> Gunz Properties -> C/C++ -> Preprocessor -> Remove _XTRAP from that first line
6) Delete korean text at loading screenCode:- 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);
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)
Last edited by iDelta123; 16-06-12 at 05:52 PM.
Gj mate, nice tut!
Quick, Remove the Warez (2003 VC++)
Before you might receive an inferaction.
Great job.
Goodjob :)
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
step : 2-3-4-5-6 where is it ? located at? :l
Me too have same question
I hate that... all the helper left the gunz forum... now anyone keep there thing.... seriously.
While this tutorial, but lacking for the quest and survival worked, are disabled when compiling.
Good tutorial.
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.
step : 2-3-4-5-6 where is it ? located at? :l ...
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! :<
Last edited by cdrking; 25-06-12 at 03:30 AM. Reason: Updates