Jump to content
  • 0

2011-11-16 CHARACTER_INFO size error.


Question

Posted (edited)

HI,

I'm using the client 2011-11-16 downloaded from ftp://ragnarok.nowcd...r:20021/Patch/.

I diffed it as always i do and also selection the "Avoid Header Obfuscation".

In my packet_db.txt I selected the version 28.

In the mmo.h

#ifndef PACKETVER
#define PACKETVER 20111116
//#define PACKETVER	20100730
#endif

I use the correct lub files for 2011-11-16

I tried to move back to version 10-25 but I'm still having packet size errors.

I'm using the last rAthena revision.

Attached a screenshot of the error. I really do not know what more do, I tried with 4 different clients and nothing, with all I'm having errors.

Anyone can help me?

Vali~

post-1100-0-77054300-1332007419_thumb.jpg

Edited by Vali

8 answers to this question

Recommended Posts

Posted (edited)

try this:

#ifndef PACKETVER
#define PACKETVER 20111116
//#define PACKETVER	20100730
#endif

// backward compatible PACKETVER 8 and 9
#if PACKETVER == 8
#undef PACKETVER
#define PACKETVER 20111116
#endif

#if PACKETVER == 9
#undef PACKETVER
#define PACKETVER 20111116
#endif

It helped me.

Edited by tr0n
Posted

try this:

#ifndef PACKETVER
#define PACKETVER 20111116
//#define PACKETVER	20100730
#endif

// backward compatible PACKETVER 8 and 9
#if PACKETVER == 8
#undef PACKETVER
#define PACKETVER 20111116
#endif

#if PACKETVER == 9
#undef PACKETVER
#define PACKETVER 20111116
#endif

It helped me.

Same error.

Anyone?

Maybe something wrong with this update? http://sourceforge.net/apps/trac/rathena/changeset/15675/

I don't know :S

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...