What i can do with packets

12/21/2012 20:25 biboa#1
Hello

guys i wanna know what i can do with send packets ??

i can make bot or taxi timer ..etc ?

or thing other that

----------------------------

sry for bad english :)

wait ur post ;)
12/22/2012 13:37 ermvrs#2
Server is sending packets to client and client take it and prepare an answer to send server. And server receives it then replay all of them million times. You can make bot,emulator etc.etc. with packets. but you need to know programming language and socket programming to make a bot,emulator. i prefer c#
12/22/2012 21:10 biboa#3
Quote:
Originally Posted by ermvrs View Post
Server is sending packets to client and client take it and prepare an answer to send server. And server receives it then replay all of them million times. You can make bot,emulator etc.etc. with packets. but you need to know programming language and socket programming to make a bot,emulator. i prefer c#
what about autoit it good or c# better ??

what u prefer for beginners ?
12/23/2012 12:07 lesderid#4
Sending packets is the way that the server communicates with the clients.

When you perform an action ingame like leveling up a skill, attacking a monster or even just targeting a monster, your client will send a packet to the server. When the server receives your packet, it validates the information (for example, it checks if you have enough skill points to level the skill) and then sends a response, which is also a packet. When the client receives the response, it will show you that the action was completed.

Example:

Code:
C->S: Level Up Skill to level 3
if (player has enough skillpoints to level up)
   S->C: Level Up Accepted
else
   S->C: Level Up Denied
02/24/2013 18:21 [GM]Obvlision#5
Wish I could help dude