[Request]Any one have any idea...

06/17/2009 13:43 BlooD-BoY#1
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
06/18/2009 00:56 CIRASH#2
im honestly not sure
06/18/2009 01:00 Zanzibar#3
Quote:
Originally Posted by CIRASH View Post
im honestly not sure
Then why post. :facepalm:
06/18/2009 01:40 damianpesta#4
Quote:
Originally Posted by BlooD-BoY View Post
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
Its a packet.
06/18/2009 02:23 CIRASH#5
because when i posted that i actually went to the source to go see if i could fine out...
06/18/2009 03:10 Zanzibar#6
HALPZOR COMMENTING ONLAI.
06/18/2009 04:59 _tao4229#7
It's a status flag. lol.
06/18/2009 12:29 _Emme_#8
something like:
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;
}
But ofc you use CoEmu so you'll have to rewrite that packet (Y)
06/18/2009 14:35 BlooD-BoY#9
Quote:
Originally Posted by EmmeTheCoder View Post
something like:


But ofc you use CoEmu so you'll have to rewrite that packet (Y)
hehe, thx but i already finished it O.O now i just need to add the xp circle thingy and i'm done XDD thx anyways.