what is the packet for XpTimer and/or XpSkills (for example when xp timer gets to 100 it will send show you your xp skills...thats what i mean) ? >.<
thx
thx
But ofc you use CoEmu so you'll have to rewrite that packet (Y)Quote:
SendXPList(uint CharUID)
{
ushort PacketType = 1017;
byte[] Packet = new byte[28];
fixed (byte* p = Packet)
{
*((ushort*)p) = (ushort)Packet.Length;
*((ushort*)(p + 2)) = (ushort)PacketType;
*((uint*)(p + 4)) = (uint)CharUID
*(p + 8) = 1;
*((uint*)(p + 12)) = 26;
* ((uint*)(p + 16)) = 16;
}
return Packet;
}