how come u use strcmp? a packet doesnt has to be a string. use memcmp instead
Same error... I'm Using Wireshark to analize what's in the packet Data and for example:
Packet data with Wireshark= d7
Content of buf = 126FA51E0B (Using printf ("DATA: %X\n",buf); )
Why is that?
Same error... I'm Using Wireshark to analize what's in the packet Data and for example:
Packet data with Wireshark= d7
Content of buf = 126FA51E0B (Using printf ("DATA: %X\n",buf); )
Why is that?
You're printing the pointer instead of what it points to. If you want to print out the buffer content instead you need to iterate over it.
Code:
int i;
printf("DATA: ");
for (i = 0; i < len; ++i)
printf("%02X ", buf[i]);
printf("\n\n");
Archlord Data Editor 10/31/2013 - Archlord - 51 Replies Many people ask me how to decrypt the .DAT Files ... so i make my Editor public. Saving the .dat files is not finished but extracting images and other files work. I hope it will help some of you.
Screenshot:
http://img706.imageshack.us/img706/7783/sshot1rtd .png
History:
- 26.06.2011 V1.0 initial release
Download:
Uploaded.to
Packet sending c# to an opend socket? 09/15/2010 - .NET Languages - 0 Replies Hey guys,
I got programs to send packets to a game using its socket. I tried to send packets like this:
int port = 29200;
Socket tcpsocket;
tcpsocket = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.IP);
IPEndPoint remoteServerEndPoint = new IPEndPoint(IPAddress.Parse("128.241.92.43&quo t;), port );
tcpsocket.Connect(remoteServerEndPoint);
Shaiya EP4 Data.saf editor 01/20/2010 - Shaiya - 0 Replies need help with this program.. u can open everything but u can't save.. anyone know how to save? thx
Download Here:
http://sep5.p8.hu/5.00.rar
[Question] Packet data , packet editing ?? 10/13/2009 - 9Dragons - 2 Replies I would like to know :
What is packet data?
How do i get the address for hacking a item in game?
How to use it ??
[help] Max HP/VE packet data 09/03/2009 - 9Dragons - 11 Replies I've been trying for 2 days trying to find the maximum HP/VE in the socket data to no avail. Getting the current HP/VE is no problem. Just trying to find the your current max hp/ve is being tricky. Anyone else figured this out?
I'm beginning to think it is calculated within the client.