Jump to content
  • 0

Unknown packet 2017-01-25aRagexeRE


shadecaius

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  12/21/13
  • Last Seen:  

mmo.h

20170125

packet_db

packet_db_ver: 57
//packet_db_ver: default
//packet_keys_use: default

.
.
.

// 2017-01-25aRagexe
packet_keys: 0x066E04FE ,0x3004224A ,0x04FF0458
packet_ver: 57
0x0438,7,actionrequest,2:6
0x0879,10,useskilltoid,2:4:6
0x0930,5,walktoxy,2
0x0943,6,ticksend,2
0x0881,5,changedir,2:4
0x087B,6,takeitem,2
0x0877,6,dropitem,2:4
0x091C,8,movetokafra,2:4
0x095C,8,movefromkafra,2:4
0x092B,10,useskilltopos,2:4:6:8
0x089B,90,useskilltoposinfo,2:4:6:8:10
0x0965,6,getcharnamerequest,2
0x0898,6,solvecharname,2
0x0929,12,searchstoreinfolistitemclick,2:6:10
0x0968,2,searchstoreinfonextpage,0
0x093C,-1,searchstoreinfo,2:4:5:9:13:14:15
0x087D,-1,reqtradebuyingstore,2:4:8:12
0x091B,6,reqclickbuyingstore,2
0x091D,2,reqclosebuyingstore,0
0x08A5,-1,reqopenbuyingstore,2:4:8:9:89
0x0944,18,bookingregreq,2:4:6
//0x0884,8 CZ_JOIN_BATTLE_FIELD
0x0895,-1,itemlistwindowselected,2:4:8:12
0x0811,19,wanttoconnection,2:6:10:14:18
0x086E,26,partyinvite2,2
//0x0894,4 CZ_GANGSI_RANK
0x0920,26,friendslistadd,2
0x0876,5,hommenu,2:4
0x0893,36,storagepassword,2:4:20

//Add new packets here
//packet_ver: 58


 

src\char\char_clif.c ,line 307

#if false && PACKETVER >= 20151001 >>> #if true && PACKETVER >= 20151001

src\common\utils.c , line 409

else if(date >= 20151104) return 55;

v

v

v

else if(date < 20160203) return 55;

else if(date >= 20160203) return 57;

src\map\clif.h ,  line 39 change MAX_PACKET_VER to 58

and ZC_ACCEPT_ENTER code block. #elif PACKETVER == 20170125

18175985_1935562286673906_1755040323_o (1).png

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  182
  • Reputation:   32
  • Joined:  10/26/12
  • Last Seen:  

    else if(date < 20160203) return 55;
    else if(date < 20161228) return 56;
    else if(date < 20170125) return 57;
    else if(date >= 20170125) return 58;

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  399
  • Reputation:   69
  • Joined:  12/26/15
  • Last Seen:  

15 minutes ago, shadecaius said:

mmo.h

20170125

packet_db

packet_db_ver: 57
//packet_db_ver: default
//packet_keys_use: default

.

// 2017-01-25aRagexe
packet_keys: 0x066E04FE ,0x3004224A ,0x04FF0458
packet_ver: 57
0x0438,7,actionrequest,2:6
0x0879,10,useskilltoid,2:4:6
0x0930,5,walktoxy,2
0x0943,6,ticksend,2
0x0881,5,changedir,2:4
0x087B,6,takeitem,2
0x0877,6,dropitem,2:4
0x091C,8,movetokafra,2:4
0x095C,8,movefromkafra,2:4
0x092B,10,useskilltopos,2:4:6:8
0x089B,90,useskilltoposinfo,2:4:6:8:10
0x0965,6,getcharnamerequest,2
0x0898,6,solvecharname,2
0x0929,12,searchstoreinfolistitemclick,2:6:10
0x0968,2,searchstoreinfonextpage,0
0x093C,-1,searchstoreinfo,2:4:5:9:13:14:15
0x087D,-1,reqtradebuyingstore,2:4:8:12
0x091B,6,reqclickbuyingstore,2
0x091D,2,reqclosebuyingstore,0
0x08A5,-1,reqopenbuyingstore,2:4:8:9:89
0x0944,18,bookingregreq,2:4:6
//0x0884,8 CZ_JOIN_BATTLE_FIELD
0x0895,-1,itemlistwindowselected,2:4:8:12
0x0811,19,wanttoconnection,2:6:10:14:18
0x086E,26,partyinvite2,2
//0x0894,4 CZ_GANGSI_RANK
0x0920,26,friendslistadd,2
0x0876,5,hommenu,2:4
0x0893,36,storagepassword,2:4:20

//Add new packets here
//packet_ver: 58


 

src\char\char_clif.c ,line 307

#if false && PACKETVER >= 20151001 >>> #if true && PACKETVER >= 20151001

src\common\utils.c , line 409


else if(date >= 20151104) return 55;

v

v

v

else if(date < 20160203) return 55;

else if(date >= 20160203) return 57;

what is the packet ver 56 in ur db/packet_db.txt? if no client for packet ver 56, just rename packet 57 to 56

// 2017-01-25aRagexe
packet_keys: 0x066E04FE ,0x3004224A ,0x04FF0458
packet_ver: 56

 

and in src\common\utils.c it should be like this

else if(date < 20170125) return 55;

else if(date >= 20170125) return 56;

 

then recompile back

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  12/21/13
  • Last Seen:  

15 hours ago, hazimjauhari90 said:

what is the packet ver 56 in ur db/packet_db.txt? if no client for packet ver 56, just rename packet 57 to 56

// 2017-01-25aRagexe
packet_keys: 0x066E04FE ,0x3004224A ,0x04FF0458
packet_ver: 56

 

and in src\common\utils.c it should be like this

else if(date < 20170125) return 55;

else if(date >= 20170125) return 56;

 

then recompile back

still got same error

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  399
  • Reputation:   69
  • Joined:  12/26/15
  • Last Seen:  

3 hours ago, shadecaius said:

still got same error

do u disable packet encryption during patch the client with nemo patcher?

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  12/21/13
  • Last Seen:  

On 4/28/2017 at 11:59 PM, hazimjauhari90 said:

do u disable packet encryption during patch the client with nemo patcher?

at that time i can said yes , but now im completely start and play with 20170125a client now. thanks a lot.

but have some problem about korean language in the picture. how can i fix this?

screenrAthena002.jpg

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  399
  • Reputation:   69
  • Joined:  12/26/15
  • Last Seen:  

Perhaps this could help u to fix above..

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  5
  • Reputation:   1
  • Joined:  05/28/17
  • Last Seen:  

Works for me thanks! :D

I can now play with client 2017-01-25aRagexeRE

Although I do not completely understand you last line:

Quote

and ZC_ACCEPT_ENTER code block. #elif PACKETVER == 20170125

Can you please clarify this? and will these changes become part of the new rAthena branch?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  399
  • Reputation:   69
  • Joined:  12/26/15
  • Last Seen:  

2 hours ago, wouter2004 said:

Works for me thanks! :D

I can now play with client 2017-01-25aRagexeRE

Although I do not completely understand you last line:

Can you please clarify this? and will these changes become part of the new rAthena branch?

No need to do so anymore as this has been merged on rAthena master branch..

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  5
  • Reputation:   1
  • Joined:  05/28/17
  • Last Seen:  

Perhaps I am looking at the wrong GIT / branch, but I believe these modifications are not there yet.

Yesterday I had the familiar "Rejected by Server (3)" problem when I tried to logon to the map server and this was solved after applying these changes and updating the packet_version to 57.

 

 

Capture.JPG

Capture2.JPG

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  399
  • Reputation:   69
  • Joined:  12/26/15
  • Last Seen:  

On 5/29/2017 at 5:50 PM, wouter2004 said:

Perhaps I am looking at the wrong GIT / branch, but I believe these modifications are not there yet.

Yesterday I had the familiar "Rejected by Server (3)" problem when I tried to logon to the map server and this was solved after applying these changes and updating the packet_version to 57.

if u current rathena already have these commits, u shouldn't have encountered rejected by server.

https://github.com/rathena/rathena/commit/9716233c842f731df3fed5281370e324b5f5f024

https://github.com/rathena/rathena/commit/39dbb9abd309eca84fda6914881680f4e835e3c4

just u need changes those following below:
db/packet_db.txt - add packet for 2017-01-25 client
src/char/char_clif.c - enable RE client
src/common/mmo.h - define packetver 20170125
src/common/utils.c - add client packetver condition to respective packet 
src/map/clif.h - define max packet to 57

Link to comment
Share on other sites

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.

×
×
  • Create New...