Jump to content

Client crashes [40k - 28249 - Unknown packet header - levelup]


Recommended Posts

Dear community,

 

I have a problem with the binary 28249 of the 40250 test client.

If I do "/level <level>" my client closes and my syserr says this:

0321 21:19:06259 :: Unknown packet header: 101, last: 45 81

I didn't changed anything in the binary or at the packets of the game.

 

Who can help me?

 

Regards

Link to comment
Share on other sites

  • Replies 13
  • Created
  • Last Reply

Top Posters In This Topic

  • Premium

You should compile your own binary too, because without that we can't figure out the problem. After you did it open char.h on server-side and search for typedef struct character_point and for typedef struct packet_point_change. Now open Packet.h on client-side and compare the variables. If you find a difference then we find out the problem, but...I recommend you to use mainline for server and novaline for binary.

Link to comment
Share on other sites

  • 2 weeks later...

Sorry for double post, but, can the error could this be?

 

Packet.h SERVER SIDE:

typedef struct packet_points
{
	BYTE	header;
	INT		points[POINT_MAX_NUM]; //INT
} TPacketGCPoints;

Packet.h CLIENT SIDE:

typedef struct packet_points
{
    BYTE        header;
    long        points[POINT_MAX_NUM]; //LONG
} TPacketGCPoints;

if you look the points variable in server il declared int and client long, the error is this?

Regards.

Link to comment
Share on other sites

Sorry for double post, but, can the error could this be?

 

Packet.h SERVER SIDE:

typedef struct packet_points
{
	BYTE	header;
	INT		points[POINT_MAX_NUM]; //INT
} TPacketGCPoints;

Packet.h CLIENT SIDE:

typedef struct packet_points
{
    BYTE        header;
    long        points[POINT_MAX_NUM]; //LONG
} TPacketGCPoints;

if you look the points variable in server il declared int and client long, the error is this?

Regards.

 

[X] This is your problem

[  ] This is not your problem :D

 

But if you want change to long or long long you will need more changes.

Link to comment
Share on other sites

  • 8 months later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.