Need help diffing client

^ what client you used? did you modify your mmo.h? your client date and mmo.h packet version must match.

for example:

if you  use 20130807 client 

edit your mmo.h

#ifndef PACKETVER #define PACKETVER 20130807 // <-- Match your client date here#endif // PACKETVER// Comment the following line if your client is NOT ragexeRE (required because of conflicting packets in ragexe vs ragexeRE).//#define PACKETVER_RE // add // to disable if you use ragexe
then recompile your server..

 
Yeah, it seems to be set right. 

EDIT: Well I just realized I forgot to recompile the server, thanks.

I was also wondering if you knew where I could get an english setup, and also all my text is in korean, and do you know where I could find a pre-renewal id2numdesctable.txt or whatever?

Capture.PNG

 
Last edited by a moderator:
how about this

//#define PACKETVER_RE
did you add comment on it? if no then please add // and recompile again your server.

 
You mean like this? I mean pre-renewal ones so that my armors don't have messed up defense, no way cotton shirts give 10 defense.

Capture.PNG

 
Yes.. add // at the beginning of define, like this.

//#define PACKETVER_RE
so to define pre-renewal server go to src/config/renewal.h

and add // to disable renwal features like this.

//#define RENEWAL//#define RENEWAL_CAST//#define RENEWAL_DROP//#define RENEWAL_EXP//#define RENEWAL_LVDMG//#define RENEWAL_EDP//#define RENEWAL_ASPD
then recompile your server.

 
Back
Top