Skip to content
Permalink
Browse files
Added support for 2015-11-04aRagEXE
* Added support for this client to replace the 2015-10-29aRagEXERE which had issues with unknown packets causing random disconnects.
Thanks to @icxbb-xx and @renniw!
  • Loading branch information
aleos89 committed Apr 8, 2016
1 parent 5766fc6 commit 5e58149bbc3c616f51349a0a8d7c6f1719491ea4
Showing with 37 additions and 3 deletions.
  1. +34 −1 db/packet_db.txt
  2. +2 −1 src/common/utils.c
  3. +1 −1 src/map/clif.h
@@ -2594,5 +2594,38 @@ packet_keys: 0x45B945B9,0x45B945B9,0x45B945B9 // [Dastgir]
0x0361,5,hommenu,2:4
0x0860,36,storagepassword,2:4:20

//2015-11-04aRagexe
packet_ver: 55
packet_keys: 0x4C17382A,0x7ED174C9,0x29961E4F // [Winnie]
0x0369,7,actionrequest,2:6
0x083C,10,useskilltoid,2:4:6
0x0363,5,walktoxy,2
0x0886,6,ticksend,2
0x0928,5,changedir,2:4
0x0964,6,takeitem,2
0x0437,6,dropitem,2:4
0x088B,8,movetokafra,2:4
0x0364,8,movefromkafra,2:4
0x0438,10,useskilltopos,2:4:6:8
0x0366,90,useskilltoposinfo,2:4:6:8:10
0x0887,6,getcharnamerequest,2
0x0368,6,solvecharname,2
0x0838,12,searchstoreinfolistitemclick,2:6:10
0x0835,2,searchstoreinfonextpage,0
0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15
0x0815,-1,reqtradebuyingstore,2:4:8:12
0x0436,6,reqclickbuyingstore,2
0x0817,2,reqclosebuyingstore,0
0x023B,-1,reqopenbuyingstore,2:4:8:9:89
0x0811,18,bookingregreq,2:4:6
//0x0939,8 CZ_JOIN_BATTLE_FIELD
0x093A,-1,itemlistwindowselected,2:4:8:12
0x0360,19,wanttoconnection,2:6:10:14:18
0x08A5,26,partyinvite2,2
//0x08A3,4 CZ_GANGSI_RANK
0x07EC,26,friendslistadd,2
0x088D,5,hommenu,2:4
0x0940,36,storagepassword,2:4:20

//Add new packets here
//packet_ver: 55
//packet_ver: 56
@@ -405,7 +405,8 @@ uint32 date2version(int date) {
else if(date < 20150513) return 51;
else if(date < 20150916) return 52;
else if(date < 20151001) return 53;
else if(date >= 20151001) return 54;
else if(date < 20151104) return 54;
else if(date >= 20151104) return 55;

else return 30; //default
}
@@ -35,7 +35,7 @@ struct party_booking_ad_info;
enum { // packet DB
MIN_PACKET_DB = 0x064,
MAX_PACKET_DB = 0xAFF,
MAX_PACKET_VER = 54,
MAX_PACKET_VER = 55,
MAX_PACKET_POS = 20,
};

5 comments on commit 5e58149

@renniw
Copy link

@renniw renniw commented on 5e58149 Apr 8, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you so much @aleos89

@idamonli
Copy link

@idamonli idamonli commented on 5e58149 Apr 8, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where to have 2015-11-04aRag.exe download?thx

@renniw
Copy link

@renniw renniw commented on 5e58149 Apr 9, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Darkelfen
Copy link

@Darkelfen Darkelfen commented on 5e58149 Apr 9, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is awesome

@reunite-ro
Copy link
Contributor

@reunite-ro reunite-ro commented on 5e58149 Apr 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aleos89 do u have any issue to delete character with this client ?

Please sign in to comment.