Results 1 to 3 of 3
  1. #1
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10

    [Guide] Oversimplified Packets Understanding

    Small guide for people who really knows nothing about packets. If you have experience in networking and you already know what packets are, please skip this guide.


    Written by NPC

    I don't really know how packets work but i think my knowledge is sufficient to help lessen the confusion of people who know totally nothing.

    Packets?

    Basically, every time you do something in MapleStory that affect your surroundings or your character, you localhost will TELL the server what you have done.

    For example, if you pressed LEFT on your keyboard, your character moves to the left.
    Since your position on the map has changed, your localhost will TELL the server your new position.
    Then, the server will TELL other localhost to adjust your character's position on their users' screen.

    But how does the localhost talk to the server and vice-versa? They do it by sending PACKETS to one another.

    A packet is just a bunch of bytes. Here's how one looks like after being processed by a packet sniffer

    30 00 BE 98 06 00 01 00

    Every byte is separated by a space. The blue part is the packet header, and takes up two bytes. Why is it called the header? Because the bytes are at the front.

    What's the packet header for?

    As mentioned before, every time you do something to affect your character and your surroundings, you'll send a packet. Likewise, when other players do something to affect you, they'll send a packet to the server, and the server sends a packet to you.

    Here's a list of things you do which will trigger your localhost to send a packet to the server:
    Speak in general chat.
    Add a buddy.
    Kill a monster.
    And a lot more...

    Since there are so many things, to prevent the server from confusing itself, the events which triggered the packets are distinguished by the packet header.

    Look at your recvops. 'recv' because the server 'received' the packet from your localhost.
    You'll see the packet headers. You can't see anything like "30 00", but you'll see something like "0x30".
    Basically, it's just another way of defining the packet header. You just "flip" it around.

    Right before of the packet header, you'll see its name. E.g. TAKE_DAMAGE = 0x27
    It's just a name given by the source creator, so he won't confuse himself when there are so many events.

    Then what about the rest of the bytes behind the header?

    That's the content. Most packets are useless without it.

    Note: A bunch of bytes can represent nearly anything. It can be a number, a character (e.g A or B or C), or many characters (a STRING such as "Hello i am fine."), or a combination of numbers and characters and useless bytes. A number can be called a double, short, long or whatever.
    You only need to know SHORT and INT for now.
    A short can go up to 32767, while an int can have a maximum value of 2,147,483,647.
    Since an int is larger, it can hog 4 bytes, while a short can only take 2 bytes.
    A STRING can take up a random number of bytes, depending on how many characters it contains.

    For example, if you whacked a monster using your sword, you'll send a packet. While using a sniffer, you'll detect a packet to the server.
    You may think "whacking a monster sends a packet...maybe the content contains the damage I dialed to it, so the server can reduce it's hp?".

    Assume the packet is 30 00 BE 98 06 00 01 00.

    The content takes up six bytes. Let's remove the header and only look at the content.

    BE 98 06 00 01 00

    Can you think of the number of combination of numbers and characters and useless bytes this bunch of bytes can represent? I can't actually, but let's just list a few.

    Legend: SHORT is red, INT is blue, BYTE is pink

    BE 98 06 00 01 00
    BE 98 06 00 01 00
    BE 98 06 00 01 00

    AND ALOT MORE!!!

    Each combination is actually a PACKET STRUCTURE. Only one is valid though.

    (If you have some sense, you'll know there are only three possible valid packet structures, following my way of thought.)

    Whack the monster again, so we can compare the packets! When the damage changes, the bytes change too! Then we can do PACKET STRUCTURE GUESSING.

    Assume the second packet you sniffed is 30 00 BE 10 74 01 06 00.
    You have two packets from the same event, so spot the difference in content.
    BE 98 06 00 01 00
    BE 10 74 01 06 00
    Oh 4 bytes changed when the damage changed! It's a change in INT!
    So now you have the packet structure for "dealing damage to a monster".

    Its "HEADER then BYTE(useless) then INT(damage dealed to monster) then BYTE(useless)".

    You can then put it in your recvops with a name you like E.g HIT_MONSTER = 0x30, and code a mechanism which reduces the hp of the mob upon receiving the packet.

    But seriously, do we need to do this? No if it's already coded by nice people (assuming it's correct).
    So just take the header and plonk it into your recvops. Find a name which suit the event best and replace the header with yours.
    CLOSE_RANGE_ATTACK looks good.

    However, when the game version change, existing packet structures may change, and new packets are introduced to cater to new events (e.g. vicious hammer from v62 to v75) so you may need to do it yourself.

    If you think packet guessing is simple since the above example looks so, check out the number of packets you'll send and receive after whacking a monster and the number of bytes they contain. CLOSE_RANGE_ATTACK packet does not contain only 1 damage.
    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  2. #2
    jc2013
    jc2013 is offline
    New member
    Join Date
    2013 Mar
    Posts
    7
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Thanks admin for a good insights about packet.

  3. #3
    DatSik
    DatSik is offline
    New member DatSik's Avatar
    Join Date
    2012 Sep
    Location
    Oklahoma
    Posts
    24
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    9
    Thanked in
    1 Post
    Rep Power
    0
    Thank you so much, this is a great read

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •