Why I'm getting this error?

post your mmo.h in pastebin or some paste site and post here please

 
[Error]: Packet Error: packet 0x7036 is greater than the maximum allowed (0xf00), skipping...

anyone knows?
7036 = 28726

f00 = 3840

the maximum packet limit is 0xF00 , but the packet received is 0x7036(much larger than the limit)

 
post your mmo.h in pastebin or some paste site and post here please

[Error]: Packet Error: packet 0x7036 is greater than the maximum allowed (0xf00), skipping...

anyone knows?
7036 = 28726

f00 = 3840

the maximum packet limit is 0xF00 , but the packet received is 0x7036(much larger than the limit)

@evilpuncker here it is @evilpuncker here it is http://pastebin.com/3PTK3HTR

@Dast i dont understand what the cause.

 
post your mmo.h in pastebin or some paste site and post here please

> 

[Error]: Packet Error: packet 0x7036 is greater than the maximum allowed (0xf00), skipping...

anyone knows?
7036 = 28726

f00 = 3840

the maximum packet limit is 0xF00 , but the packet received is 0x7036(much larger than the limit)

@evilpuncker here it is @evilpuncker here it is http://pastebin.com/3PTK3HTR

@Dast i dont understand what the cause.

I know what is your error..

in this part.

  1. //Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).
  2. //#define ENABLE_PACKETVER_RE
  3. //#ifdef ENABLE_PACKETVER_RE
  4. //      #define PACKETVER_RE
  5. //      #undef ENABLE_PACKETVER_RE
  6. //#endif // DISABLE_PACKETVER_RE

 
remove the "//" from #ifdef upto #endif
 
post your mmo.h in pastebin or some paste site and post here please

>> 

[Error]: Packet Error: packet 0x7036 is greater than the maximum allowed (0xf00), skipping...

anyone knows?
7036 = 28726

f00 = 3840

the maximum packet limit is 0xF00 , but the packet received is 0x7036(much larger than the limit)

@evilpuncker here it is @evilpuncker here it is http://pastebin.com/3PTK3HTR

@Dast i dont understand what the cause.

I know what is your error..

in this part.

  1. //Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).
  2. //#define ENABLE_PACKETVER_RE
  3. //#ifdef ENABLE_PACKETVER_RE
  4. //      #define PACKETVER_RE
  5. //      #undef ENABLE_PACKETVER_RE
  6. //#endif // DISABLE_PACKETVER_RE

 
remove the "//" from #ifdef upto #endif
I uncomment number 3 to 6 and still the same packet error.
default_sad.png


 
it should look like this:

Code:
//Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).//#define ENABLE_PACKETVER_RE#ifdef ENABLE_PACKETVER_RE	#define PACKETVER_RE	#undef ENABLE_PACKETVER_RE#endif // DISABLE_PACKETVER_RE 
 
it should look like this:



//Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).//#define ENABLE_PACKETVER_RE#ifdef ENABLE_PACKETVER_RE #define PACKETVER_RE #undef ENABLE_PACKETVER_RE#endif // DISABLE_PACKETVER_RE 
it should look like this:



//Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).//#define ENABLE_PACKETVER_RE#ifdef ENABLE_PACKETVER_RE #define PACKETVER_RE #undef ENABLE_PACKETVER_RE#endif // DISABLE_PACKETVER_RE 
It look exactly like that. I recompile and run the server twice still got the error. Can you explain why im getting that error? I tried to revert back to 20140115 client and i got the same error.. what error should I expect or security issue if i dont fix the issue?

 
did you enable the packet_obfuscation?

 
yes and the game is running properly with crashing or errors.. 

packet_obfuscation = 2

This happens after this line

[info]: Connecting to the Map DB Server....
[status]: connect success! (Map Server Connection)
[info]:
Code:
: Connecting to the Log Database trincli0173 At 10.0.1.2...
[status]: [sql]: Successfully 'connected' to Database '*******'.
[status]: Loading maps (using db/re/map_cache.dat as map cache)...
[info]: Successfully loaded '888' maps.
[status]: Done reading '62' command aliases in 'conf/atcommand.conf'.
[Error]: Packet Error: packet 0x7036 is greater than the maximum allowed (0xf00), skipping...
[status]: Done reading '4' channels in 'conf/channels.conf'.
[status]: Done reading '8310' entries in 're/item_db.conf'.
[status]: Done reading '1718' entries in 'item_db2.conf'.
[status]: Done reading '201' entries in 'item_combo_db'.
[status]: Done reading '53' entries in 'db/re/item_group.conf'.
 
Last edited by a moderator:
Back
Top