Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: cloud_171 on November 07, 2002, 09:51 PM

Title: good place to start?
Post by: cloud_171 on November 07, 2002, 09:51 PM
I can't seem to understand how these packets work. Where would be a good place to start? I have read the documents on disclamer and have no clue what its talking about.
Title: Re: good place to start?
Post by: warz on November 16, 2002, 12:28 PM
Then that is obviously not a good place to start.  ;D
Title: Re: good place to start?
Post by: iago on November 20, 2002, 06:15 AM
The best place to start might be to find a visual basic ascii chat program which basically can send and recieve ascii messages from a specified ip using a TCP connection and figure out how that works.

Or get a packet logger and watch what happens whever you do something (send a text message, check a profile, whatever) and look for patterns!
Title: Re: good place to start?
Post by: Zakath on November 20, 2002, 10:01 AM
QuoteI can't seem to understand how these packets work. Where would be a good place to start? I have read the documents on disclamer and have no clue what its talking about.

A packet is just a series of bytes. The stuff at Spht's site explains how to break the packets up to obtain/insert useful information from/into them. It's not that difficult.

Are you familiar with standard data types?
A DWORD is a 32-bit unsigned integer, for example (in C that's an unsigned long). If you aren't, that'd be a good reason why it confuses you.