Jump to content
  • 0

Packet Unsupported hexed 2014


HD Scripts

Question


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  183
  • Reputation:   15
  • Joined:  06/10/12
  • Last Seen:  

Guys, we have a problem '-'

The rathena emulator does not accept hexed 2014?

I did not find the packet_db, and I do not know where the settings are besides packets.h

packets.h:

#define PACKETVER 20140305
//#define PACKET_OBFUSCATION
//#define PACKET_OBFUSCATION_WARN
//#define PACKET_OBFUSCATION_KEY1 <key1>
//#define PACKET_OBFUSCATION_KEY2 <key2>
//#define PACKET_OBFUSCATION_KEY3 <key3>

clientinfo.xml

		<version>46</version>
		<langtype>12</langtype>		

Please guide me where should i change to work this hexed? I use it in another older emulator, and in the newer one, it should work perfectly.

thanks!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  55
  • Topics Per Day:  0.01
  • Content Count:  1191
  • Reputation:   161
  • Joined:  06/12/12
  • Last Seen:  

Go to src\config\packet.h

#ifndef PACKETVER
	#define PACKETVER 20140305
#endif

#ifndef PACKETVER_RE
	/// From this point on only kRO RE clients are supported
	#if PACKETVER > 20151104
		#define PACKETVER_RE
	#endif
#endif

#if PACKETVER >= 20110817
	/// Comment to disable the official packet obfuscation support.
	/// This requires PACKETVER 2011-08-17 or newer.
	#ifndef PACKET_OBFUSCATION
		//#define PACKET_OBFUSCATION

		// Define these inside src/custom/defines_pre.h or src/custom/defines_post.h
		//#define PACKET_OBFUSCATION_KEY1 <key1>
		//#define PACKET_OBFUSCATION_KEY2 <key2>
		//#define PACKET_OBFUSCATION_KEY3 <key3>

		/// Comment this to disable warnings for missing client side encryption
		//#define PACKET_OBFUSCATION_WARN
	#endif

using new rathena, it's doesn't use version at clientinfo.xml, so just skip it

for packet, rathena already support for 2014 client

you can found it at src\map\clif_packetdb.h of src\map\clif_shuffle.h

Edited by hendra814
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  183
  • Reputation:   15
  • Joined:  06/10/12
  • Last Seen:  

So, i just remove line <version> from clientinfo.xml?

5996f5157f379_Semttulo.jpg.ef8afd73cd406ccf31049b01a1cc6ffd.jpg

 

My clif_packetdb.h:

// 2014-10-22bRagexe
#if PACKETVER >= 20141022
	packet(0x006d,149);
	packet(0x08e3,149);
	// New Packet
	packet(0x0A18,14); // ZC_ACCEPT_ENTER3
	packet(0x0A27,8);
	packet(0x0A28,3); // ZC_ACK_OPENSTORE2
	packet(0x09FD,-1); // ZC_NOTIFY_MOVEENTRY11
	packet(0x09FE,-1); // ZC_NOTIFY_NEWENTRY11
	packet(0x09FF,-1); // ZC_NOTIFY_STANDENTRY11
	//packet(0x09F8,-1); // ZC_ALL_QUEST_LIST3
#endif

// 2015-02-25aRagexeRE
#if PACKETVER >= 20150225
	packet(0x0A09,45); // ZC_ADD_EXCHANGE_ITEM3
	packet(0x0A0A,47); // ZC_ADD_ITEM_TO_STORE3
	packet(0x0A0B,47); // ZC_ADD_ITEM_TO_CART3
	packet(0x0A0C,56); // ZC_ITEM_PICKUP_ACK_V6
	packet(0x0A0D,-1); // ZC_INVENTORY_ITEMLIST_EQUIP_V6
	packet(0x0A0F,-1); // ZC_CART_ITEMLIST_EQUIP_V6
	packet(0x0A10,-1); // ZC_STORE_ITEMLIST_EQUIP_V6
	packet(0x0A2D,-1); // ZC_EQUIPWIN_MICROSCOPE_V6
#endif

Should not be 20140305 soon after 20141022?

Edited by HD Scripts
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...